NCViewerImageZoom.swift 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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. protocol NCViewerImageZoomDelegate {
  25. func willAppearImageZoom(viewerImageZoom: NCViewerImageZoom, metadata: tableMetadata)
  26. func didAppearImageZoom(viewerImageZoom: NCViewerImageZoom, metadata: tableMetadata)
  27. func dismiss()
  28. }
  29. class NCViewerImageZoom: UIViewController {
  30. @IBOutlet weak var imageViewBottomConstraint: NSLayoutConstraint!
  31. @IBOutlet weak var imageViewLeadingConstraint: NSLayoutConstraint!
  32. @IBOutlet weak var imageViewTopConstraint: NSLayoutConstraint!
  33. @IBOutlet weak var imageViewTrailingConstraint: NSLayoutConstraint!
  34. @IBOutlet weak var detailViewTopConstraint: NSLayoutConstraint!
  35. @IBOutlet weak var detailViewHeightConstraint: NSLayoutConstraint!
  36. @IBOutlet weak var scrollView: UIScrollView!
  37. @IBOutlet weak var imageView: UIImageView!
  38. @IBOutlet weak var statusViewImage: UIImageView!
  39. @IBOutlet weak var statusLabel: UILabel!
  40. @IBOutlet weak var detailView: NCViewerImageDetailView!
  41. var delegate: NCViewerImageZoomDelegate?
  42. var image: UIImage?
  43. var metadata: tableMetadata = tableMetadata()
  44. var index: Int = 0
  45. var minScale: CGFloat = 0
  46. var doubleTapGestureRecognizer: UITapGestureRecognizer = UITapGestureRecognizer()
  47. private var startImageViewTopConstraint: CGFloat = 0
  48. private var startImageViewBottomConstraint: CGFloat = 0
  49. required init?(coder aDecoder: NSCoder) {
  50. super.init(coder: aDecoder)
  51. doubleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didDoubleTapWith(gestureRecognizer:)))
  52. doubleTapGestureRecognizer.numberOfTapsRequired = 2
  53. }
  54. override func viewDidLoad() {
  55. super.viewDidLoad()
  56. scrollView.delegate = self
  57. scrollView.contentInsetAdjustmentBehavior = .never
  58. view.addGestureRecognizer(doubleTapGestureRecognizer)
  59. if image == nil {
  60. image = CCGraphics.changeThemingColorImage(UIImage.init(named: "noPreview"), width: view.frame.width, height: view.frame.width, color: .gray)
  61. }
  62. if let image = image {
  63. imageView.image = image
  64. imageView.frame = CGRect(x: imageView.frame.origin.x, y: imageView.frame.origin.y, width: image.size.width, height: image.size.height)
  65. }
  66. if NCManageDatabase.sharedInstance.isLivePhoto(metadata: metadata) != nil {
  67. statusViewImage.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "livePhoto"), width: 100, height: 100, color: .gray)
  68. statusLabel.text = "LIVE"
  69. } else {
  70. statusViewImage.image = nil
  71. statusLabel.text = ""
  72. }
  73. }
  74. override func viewWillAppear(_ animated: Bool) {
  75. super.viewWillAppear(animated)
  76. updateZoomScale()
  77. updateConstraints()
  78. detailView.updateExifLocal(metadata: metadata)
  79. detailViewHeightConstraint.constant = view.bounds.width
  80. detailViewTopConstraint.constant = 0
  81. detailView.hide()
  82. delegate?.willAppearImageZoom(viewerImageZoom: self, metadata: metadata)
  83. }
  84. override func viewDidAppear(_ animated: Bool) {
  85. super.viewDidAppear(animated)
  86. delegate?.didAppearImageZoom(viewerImageZoom: self, metadata: metadata)
  87. }
  88. override func viewDidLayoutSubviews() {
  89. super.viewDidLayoutSubviews()
  90. updateZoomScale()
  91. updateConstraints()
  92. }
  93. //MARK: - Gesture
  94. @objc func didDoubleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  95. if detailView.isShow() { return }
  96. let pointInView = gestureRecognizer.location(in: imageView)
  97. var newZoomScale = scrollView.maximumZoomScale
  98. if scrollView.zoomScale >= newZoomScale || abs(scrollView.zoomScale - newZoomScale) <= 0.01 {
  99. newZoomScale = scrollView.minimumZoomScale
  100. }
  101. if newZoomScale > scrollView.maximumZoomScale {
  102. return
  103. }
  104. let width = scrollView.bounds.width / newZoomScale
  105. let height = scrollView.bounds.height / newZoomScale
  106. let originX = pointInView.x - (width / 2.0)
  107. let originY = pointInView.y - (height / 2.0)
  108. let rectToZoomTo = CGRect(x: originX, y: originY, width: width, height: height)
  109. scrollView.zoom(to: rectToZoomTo, animated: true)
  110. }
  111. @objc func didPanWith(gestureRecognizer: UIPanGestureRecognizer) {
  112. if !detailView.hasData() { return }
  113. let currentLocation = gestureRecognizer.translation(in: self.view)
  114. switch gestureRecognizer.state {
  115. case .began:
  116. scrollView.isScrollEnabled = false
  117. // save start
  118. startImageViewTopConstraint = imageViewTopConstraint.constant
  119. startImageViewBottomConstraint = imageViewBottomConstraint.constant
  120. case .ended:
  121. if !detailView.isShow() {
  122. updateConstraints()
  123. scrollView.isScrollEnabled = true
  124. }
  125. case .changed:
  126. imageViewTopConstraint.constant = startImageViewTopConstraint + currentLocation.y
  127. imageViewBottomConstraint.constant = startImageViewBottomConstraint - currentLocation.y
  128. detailViewTopConstraint.constant = -imageViewBottomConstraint.constant
  129. // DISMISS
  130. if imageView.center.y > view.center.y + 150 {
  131. delegate?.dismiss()
  132. }
  133. // OPEN DETAIL
  134. if imageView.center.y < view.center.y - 50 {
  135. detailView.show()
  136. }
  137. // CLOSE DETAIL
  138. if imageView.center.y > view.center.y + 50 {
  139. detailView.hide()
  140. }
  141. default:
  142. break
  143. }
  144. }
  145. //MARK: - Function
  146. func updateZoomScale() {
  147. let size = view.bounds.size
  148. let widthScale = size.width / imageView.bounds.width
  149. let heightScale = size.height / imageView.bounds.height
  150. minScale = min(widthScale, heightScale)
  151. scrollView.minimumZoomScale = minScale
  152. scrollView.zoomScale = minScale
  153. scrollView.maximumZoomScale = 1
  154. }
  155. func updateConstraints() {
  156. let size = view.bounds.size
  157. let yOffset = max(0, (size.height - imageView.frame.height) / 2)
  158. imageViewTopConstraint.constant = yOffset
  159. imageViewBottomConstraint.constant = yOffset
  160. let xOffset = max(0, (size.width - imageView.frame.width) / 2)
  161. imageViewLeadingConstraint.constant = xOffset
  162. imageViewTrailingConstraint.constant = xOffset
  163. // reset detail
  164. detailViewTopConstraint.constant = 0
  165. detailView.hide()
  166. view.layoutIfNeeded()
  167. let contentHeight = yOffset * 2 + imageView.frame.height
  168. scrollView.contentSize = CGSize(width: scrollView.contentSize.width, height: contentHeight)
  169. }
  170. }
  171. extension NCViewerImageZoom: UIScrollViewDelegate {
  172. func viewForZooming(in scrollView: UIScrollView) -> UIView? {
  173. return imageView
  174. }
  175. func scrollViewDidZoom(_ scrollView: UIScrollView) {
  176. updateConstraints()
  177. }
  178. func scrollViewDidScroll(_ scrollView: UIScrollView) {
  179. }
  180. }