Created
August 28, 2018 07:16
-
-
Save AmirDaliri/ba82bd9c42b035888b462cd7fe5ea8bf to your computer and use it in GitHub Desktop.
MediaZoom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// MediaZoom.swift | |
// | |
// | |
// Created by Amir Daliri on 6/5/1397 AP. | |
// Copyright © 1397 Adl. All rights reserved. | |
// | |
import UIKit | |
public class MediaZoom: UIView, UIScrollViewDelegate { | |
public lazy var imageView: UIImageView = { | |
let image = UIImageView(frame: self.mediaFrame()) | |
image.clipsToBounds = true | |
image.autoresizingMask = [.flexibleWidth, .flexibleHeight] | |
image.contentMode = .scaleAspectFill | |
return image | |
}() | |
public var maxAlpha: CGFloat = 1 | |
public var hideHandler: (() -> ())? | |
public var useBlurEffect = false | |
public var animationTime: Double | |
public var originalImageView: UIImageView | |
public var backgroundView: UIView | |
public lazy var contentView: UIScrollView = { | |
let contentView = UIScrollView(frame: MediaZoom.currentFrame()) | |
contentView.contentSize = self.mediaFrame().size | |
contentView.backgroundColor = .clear | |
contentView.maximumZoomScale = 1.5 | |
return contentView | |
}() | |
public init(with image: UIImageView, animationTime: Double, useBlur: Bool = false) { | |
let frame = MediaZoom.currentFrame() | |
self.animationTime = animationTime | |
useBlurEffect = useBlur | |
originalImageView = image | |
backgroundView = MediaZoom.backgroundView(with: frame, useBlur: useBlur) | |
super.init(frame: frame) | |
// NotificationCenter.default.addObserver( | |
// self, | |
// selector: #selector(deviceOrientationDidChange(notification:)), | |
// name: .UIDevice.orientationDidChangeNotification, | |
// object: nil | |
// ) | |
imageView.image = image.image | |
addGestureRecognizer( | |
UITapGestureRecognizer( | |
target: self, | |
action: #selector(handleSingleTap(sender:)) | |
) | |
) | |
contentView.addSubview(imageView) | |
contentView.delegate = self | |
addSubview(backgroundView) | |
addSubview(contentView) | |
} | |
required public init?(coder aDecoder: NSCoder) { | |
fatalError("init(coder:) has not been implemented") | |
} | |
public func show(onHide callback: (() -> ())? = nil) { | |
let frame = MediaZoom.currentFrame() | |
self.frame = frame | |
backgroundView.frame = frame | |
imageView.frame = mediaFrame() | |
hideHandler = callback | |
UIView.animate( | |
withDuration: animationTime, | |
animations: { [weak self] in | |
guard let `self` = self else { return } | |
self.imageView.frame = self.imageFrame() | |
self.backgroundView.alpha = self.maxAlpha | |
}, | |
completion: { [weak self] finished in | |
if finished { | |
self?.showAnimationDidFinish() | |
} | |
} | |
) | |
} | |
private static func backgroundView(with frame: CGRect, useBlur: Bool) -> UIView { | |
if useBlur { | |
let blurView = UIVisualEffectView(frame: frame) | |
blurView.effect = UIBlurEffect(style: .dark) | |
blurView.autoresizingMask = [.flexibleHeight, .flexibleWidth] | |
blurView.alpha = 0 | |
return blurView | |
} else { | |
let bgView = UIView(frame: frame) | |
bgView.backgroundColor = .black | |
bgView.alpha = 0 | |
return bgView | |
} | |
} | |
private static func currentFrame() -> CGRect { | |
let screenSize = UIScreen.main.bounds | |
return CGRect( | |
x: CGFloat(0), | |
y: CGFloat(0), | |
width: screenSize.width, | |
height: screenSize.height | |
) | |
} | |
private func imageFrame() -> CGRect { | |
let size = bounds | |
guard let imageSize = imageView.image?.size else { return CGRect.zero } | |
let ratio = min(size.height / imageSize.height, size.width / imageSize.width) | |
let imageWidth = imageSize.width * ratio | |
let imageHeight = imageSize.height * ratio | |
let imageX = (frame.size.width - imageWidth) * 0.5 | |
let imageY = (frame.size.height - imageHeight) * 0.5 | |
return CGRect(x: imageX, y: imageY, width: imageWidth, height: imageHeight) | |
} | |
private func mediaFrame() -> CGRect { | |
return originalImageView.frame | |
} | |
@objc func deviceOrientationDidChange(notification: NSNotification) { | |
let orientation = UIDevice.current.orientation | |
switch orientation { | |
case .landscapeLeft, .landscapeRight, .portrait: | |
let newFrame = MediaZoom.currentFrame() | |
frame = newFrame | |
backgroundView.frame = newFrame | |
imageView.frame = imageFrame() | |
default: | |
break | |
} | |
} | |
@objc public func handleSingleTap(sender: UITapGestureRecognizer) { | |
willHandleSingleTap() | |
UIView.animate( | |
withDuration: animationTime, | |
animations: { [weak self] in | |
guard let `self` = self else { return } | |
self.contentView.zoomScale = 1 | |
self.imageView.frame = self.mediaFrame() | |
self.backgroundView.alpha = 0 | |
}, | |
completion: { [weak self] finished in | |
if finished { | |
self?.removeFromSuperview() | |
self?.contentView.zoomScale = 1 | |
self?.hideHandler?() | |
} | |
} | |
) | |
} | |
public func viewForZooming(in scrollView: UIScrollView) -> UIView? { | |
let yOffset = (scrollView.frame.height - imageView.frame.height) / 2.0 | |
let xOffset = (scrollView.frame.width - imageView.frame.width) / 2.0 | |
let x = xOffset > 0 ? xOffset : scrollView.frame.origin.x | |
let y = yOffset > 0 ? yOffset : scrollView.frame.origin.y | |
UIView.animate(withDuration: 0.3) { [weak self] in | |
self?.imageView.frame.origin = CGPoint(x: x, y: y) | |
} | |
return imageView | |
} | |
open func willHandleSingleTap() { | |
} | |
open func showAnimationDidFinish() { | |
} | |
deinit { | |
NotificationCenter.default.removeObserver(self) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment