NCViewerImageZoom.swift 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. //
  2. // NCViewerImageZoom.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/10/2020.
  6. // Copyright © 2020 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. import NCCommunication
  25. protocol NCViewerImageZoomDelegate {
  26. func photoPageViewController(_ viewerImageZoom: NCViewerImageZoom, scrollViewDidScroll scrollView: UIScrollView)
  27. func didAppearImageZoom(viewerImageZoom: NCViewerImageZoom, metadata: tableMetadata)
  28. func willAppearImageZoom(viewerImageZoom: NCViewerImageZoom, metadata: tableMetadata)
  29. func dismissImageZoom()
  30. }
  31. class NCViewerImageZoom: UIViewController {
  32. @IBOutlet weak var detailViewConstraint: NSLayoutConstraint!
  33. @IBOutlet weak var imageViewTopConstraint: NSLayoutConstraint!
  34. @IBOutlet weak var imageViewBottomConstraint: NSLayoutConstraint!
  35. @IBOutlet weak var scrollView: UIScrollView!
  36. @IBOutlet weak var imageView: UIImageView!
  37. @IBOutlet weak var statusViewImage: UIImageView!
  38. @IBOutlet weak var statusLabel: UILabel!
  39. @IBOutlet weak var detailView: NCViewerImageDetailView!
  40. @IBOutlet weak var videoToolBar: NCViewerVideoToolBar!
  41. var delegate: NCViewerImageZoomDelegate?
  42. var viewerImage: NCViewerImage?
  43. var image: UIImage?
  44. var metadata: tableMetadata = tableMetadata()
  45. var index: Int = 0
  46. var minScale: CGFloat = 0
  47. var noPreview: Bool = false
  48. var doubleTapGestureRecognizer: UITapGestureRecognizer = UITapGestureRecognizer()
  49. var saveImageViewConstraint: CGFloat = 0
  50. // MARK: - View Life Cycle
  51. required init?(coder aDecoder: NSCoder) {
  52. super.init(coder: aDecoder)
  53. doubleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didDoubleTapWith(gestureRecognizer:)))
  54. doubleTapGestureRecognizer.numberOfTapsRequired = 2
  55. }
  56. override func viewDidLoad() {
  57. super.viewDidLoad()
  58. scrollView.delegate = self
  59. scrollView.maximumZoomScale = 4
  60. scrollView.minimumZoomScale = 1
  61. view.addGestureRecognizer(doubleTapGestureRecognizer)
  62. if image == nil {
  63. var named = "noPreview"
  64. if metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue { named = "noPreviewAudio" }
  65. if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue { named = "noPreviewVideo" }
  66. image = UIImage.init(named: named)!.image(color: .gray, size: view.frame.width)
  67. self.noPreview = true
  68. }
  69. if let image = image {
  70. imageView.image = image
  71. imageView.frame = CGRect(x: imageView.frame.origin.x, y: imageView.frame.origin.y, width: image.size.width, height: image.size.height)
  72. }
  73. if NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata) != nil {
  74. statusViewImage.image = NCUtility.shared.loadImage(named: "livephoto", color: .gray)
  75. statusLabel.text = "LIVE"
  76. } else {
  77. statusViewImage.image = nil
  78. statusLabel.text = ""
  79. }
  80. var heightMap = (view.bounds.height / 3)
  81. if view.bounds.width < view.bounds.height {
  82. heightMap = (view.bounds.width / 3)
  83. }
  84. detailViewConstraint.constant = 0
  85. detailView.update(metadata: metadata, image: image, heightMap: heightMap)
  86. detailView.hide()
  87. }
  88. override func viewWillAppear(_ animated: Bool) {
  89. super.viewWillAppear(animated)
  90. delegate?.willAppearImageZoom(viewerImageZoom: self, metadata: metadata)
  91. }
  92. override func viewDidAppear(_ animated: Bool) {
  93. super.viewDidAppear(animated)
  94. delegate?.didAppearImageZoom(viewerImageZoom: self, metadata: metadata)
  95. }
  96. override func viewDidDisappear(_ animated: Bool) {
  97. super.viewDidDisappear(animated)
  98. }
  99. override func viewDidLayoutSubviews() {
  100. super.viewDidLayoutSubviews()
  101. }
  102. //MARK: - Gesture
  103. @objc func didDoubleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  104. if detailView.isShow() { return }
  105. // NO ZOOM for Audio / Video
  106. if (metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue) && !videoToolBar.isHidden {
  107. return
  108. }
  109. let pointInView = gestureRecognizer.location(in: self.imageView)
  110. var newZoomScale = self.scrollView.maximumZoomScale
  111. if self.scrollView.zoomScale >= newZoomScale || abs(self.scrollView.zoomScale - newZoomScale) <= 0.01 {
  112. newZoomScale = self.scrollView.minimumZoomScale
  113. }
  114. let width = self.scrollView.bounds.width / newZoomScale
  115. let height = self.scrollView.bounds.height / newZoomScale
  116. let originX = pointInView.x - (width / 2.0)
  117. let originY = pointInView.y - (height / 2.0)
  118. let rectToZoomTo = CGRect(x: originX, y: originY, width: width, height: height)
  119. self.scrollView.zoom(to: rectToZoomTo, animated: true)
  120. }
  121. @objc func didPanWith(gestureRecognizer: UIPanGestureRecognizer) {
  122. let currentLocation = gestureRecognizer.translation(in: self.view)
  123. let imageViewCenterY = imageView.center.y
  124. let viewCenterY = view.center.y
  125. var constraintHeight: CGFloat = 0
  126. if let image = imageView.image {
  127. let ratioW = imageView.frame.width / image.size.width
  128. let ratioH = imageView.frame.height / image.size.height
  129. let ratio = ratioW < ratioH ? ratioW : ratioH
  130. let imageHeight = image.size.height * ratio
  131. constraintHeight = self.detailView.frame.height - ((self.view.frame.height - imageHeight) / 2)
  132. }
  133. switch gestureRecognizer.state {
  134. case .began:
  135. print("began")
  136. case .ended:
  137. print("end")
  138. if detailView.isShow() {
  139. self.imageViewTopConstraint.constant = -saveImageViewConstraint
  140. self.imageViewBottomConstraint.constant = saveImageViewConstraint
  141. }
  142. case .changed:
  143. imageViewTopConstraint.constant = currentLocation.y - saveImageViewConstraint
  144. imageViewBottomConstraint.constant = -(currentLocation.y - saveImageViewConstraint)
  145. //detailViewConstraint.constant = currentLocation.y
  146. // DISMISS
  147. if detailView.isHidden && (imageViewCenterY > viewCenterY + 10) {
  148. delegate?.dismissImageZoom()
  149. }
  150. // CLOSE DETAIL
  151. if !detailView.isHidden && (imageViewCenterY > viewCenterY + 5) {
  152. print("close detail")
  153. /*
  154. self.detailView.hide()
  155. gestureRecognizer.state = .ended
  156. UIView.animate(withDuration: 0.3) {
  157. self.imageViewTopConstraint.constant = 0
  158. self.imageViewBottomConstraint.constant = 0
  159. self.detailViewConstraint.constant = 0
  160. self.view.layoutIfNeeded()
  161. } completion: { (_) in
  162. }
  163. */
  164. }
  165. // OPEN DETAIL
  166. if detailView.isHidden && (imageViewCenterY < viewCenterY - 20) {
  167. self.detailView.show(textColor: self.viewerImage?.textColor)
  168. gestureRecognizer.state = .ended
  169. saveImageViewConstraint = constraintHeight
  170. UIView.animate(withDuration: 0.3) {
  171. self.imageViewTopConstraint.constant = -constraintHeight
  172. self.imageViewBottomConstraint.constant = constraintHeight
  173. self.detailViewConstraint.constant = self.detailView.frame.height
  174. self.view.layoutIfNeeded()
  175. } completion: { (_) in
  176. }
  177. }
  178. print("currentLocation: \(currentLocation), imageViewCenterY: \(imageViewCenterY), viewCenterY: \(viewCenterY), TopConstraint: \(imageViewTopConstraint.constant), BottomConstraint: \(imageViewBottomConstraint.constant)")
  179. default:
  180. break
  181. }
  182. }
  183. }
  184. extension NCViewerImageZoom: UIScrollViewDelegate {
  185. func viewForZooming(in scrollView: UIScrollView) -> UIView? {
  186. return imageView
  187. }
  188. func scrollViewDidZoom(_ scrollView: UIScrollView) {
  189. if scrollView.zoomScale > 1 {
  190. if let image = imageView.image {
  191. let ratioW = imageView.frame.width / image.size.width
  192. let ratioH = imageView.frame.height / image.size.height
  193. let ratio = ratioW < ratioH ? ratioW : ratioH
  194. let newWidth = image.size.width * ratio
  195. let newHeight = image.size.height * ratio
  196. let conditionLeft = newWidth*scrollView.zoomScale > imageView.frame.width
  197. let left = 0.5 * (conditionLeft ? newWidth - imageView.frame.width : (scrollView.frame.width - scrollView.contentSize.width))
  198. let conditioTop = newHeight*scrollView.zoomScale > imageView.frame.height
  199. let top = 0.5 * (conditioTop ? newHeight - imageView.frame.height : (scrollView.frame.height - scrollView.contentSize.height))
  200. scrollView.contentInset = UIEdgeInsets(top: top, left: left, bottom: top, right: left)
  201. }
  202. } else {
  203. scrollView.contentInset = .zero
  204. }
  205. }
  206. func scrollViewDidScroll(_ scrollView: UIScrollView) {
  207. self.delegate?.photoPageViewController(self, scrollViewDidScroll: scrollView)
  208. }
  209. }