148 lines
7.2 KiB
Swift
148 lines
7.2 KiB
Swift
//
|
|
// MediaPreviewImageViewController.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-4-28.
|
|
//
|
|
|
|
import os.log
|
|
import UIKit
|
|
import Combine
|
|
|
|
protocol MediaPreviewImageViewControllerDelegate: AnyObject {
|
|
func mediaPreviewImageViewController(_ viewController: MediaPreviewImageViewController, tapGestureRecognizerDidTrigger tapGestureRecognizer: UITapGestureRecognizer)
|
|
func mediaPreviewImageViewController(_ viewController: MediaPreviewImageViewController, longPressGestureRecognizerDidTrigger longPressGestureRecognizer: UILongPressGestureRecognizer)
|
|
func mediaPreviewImageViewController(_ viewController: MediaPreviewImageViewController, contextMenuActionPerform action: MediaPreviewImageViewController.ContextMenuAction)
|
|
}
|
|
|
|
final class MediaPreviewImageViewController: UIViewController {
|
|
|
|
var disposeBag = Set<AnyCancellable>()
|
|
var observations = Set<NSKeyValueObservation>()
|
|
|
|
var viewModel: MediaPreviewImageViewModel!
|
|
weak var delegate: MediaPreviewImageViewControllerDelegate?
|
|
|
|
// let progressBarView = ProgressBarView()
|
|
let previewImageView = MediaPreviewImageView()
|
|
|
|
let tapGestureRecognizer = UITapGestureRecognizer.singleTapGestureRecognizer
|
|
let longPressGestureRecognizer = UILongPressGestureRecognizer()
|
|
|
|
deinit {
|
|
os_log("%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
|
previewImageView.imageView.af.cancelImageRequest()
|
|
}
|
|
}
|
|
|
|
extension MediaPreviewImageViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// progressBarView.tintColor = .white
|
|
// progressBarView.translatesAutoresizingMaskIntoConstraints = false
|
|
// view.addSubview(progressBarView)
|
|
// NSLayoutConstraint.activate([
|
|
// progressBarView.centerXAnchor.constraint(equalTo: view.centerXAnchor),
|
|
// progressBarView.centerYAnchor.constraint(equalTo: view.centerYAnchor),
|
|
// progressBarView.widthAnchor.constraint(equalToConstant: 120),
|
|
// progressBarView.heightAnchor.constraint(equalToConstant: 44),
|
|
// ])
|
|
|
|
previewImageView.translatesAutoresizingMaskIntoConstraints = false
|
|
view.addSubview(previewImageView)
|
|
NSLayoutConstraint.activate([
|
|
previewImageView.frameLayoutGuide.topAnchor.constraint(equalTo: view.topAnchor),
|
|
previewImageView.frameLayoutGuide.leadingAnchor.constraint(equalTo: view.leadingAnchor),
|
|
previewImageView.frameLayoutGuide.trailingAnchor.constraint(equalTo: view.trailingAnchor),
|
|
previewImageView.frameLayoutGuide.bottomAnchor.constraint(equalTo: view.bottomAnchor),
|
|
])
|
|
|
|
tapGestureRecognizer.addTarget(self, action: #selector(MediaPreviewImageViewController.tapGestureRecognizerHandler(_:)))
|
|
longPressGestureRecognizer.addTarget(self, action: #selector(MediaPreviewImageViewController.longPressGestureRecognizerHandler(_:)))
|
|
tapGestureRecognizer.require(toFail: previewImageView.doubleTapGestureRecognizer)
|
|
tapGestureRecognizer.require(toFail: longPressGestureRecognizer)
|
|
previewImageView.addGestureRecognizer(tapGestureRecognizer)
|
|
previewImageView.addGestureRecognizer(longPressGestureRecognizer)
|
|
|
|
let previewImageViewContextMenuInteraction = UIContextMenuInteraction(delegate: self)
|
|
previewImageView.addInteraction(previewImageViewContextMenuInteraction)
|
|
|
|
viewModel.image
|
|
.receive(on: RunLoop.main) // use RunLoop prevent set image during zooming (TODO: handle transitioning state)
|
|
.sink { [weak self] image in
|
|
guard let self = self else { return }
|
|
guard let image = image else { return }
|
|
self.previewImageView.imageView.image = image
|
|
self.previewImageView.setup(image: image, container: self.previewImageView, forceUpdate: true)
|
|
self.previewImageView.imageView.accessibilityLabel = self.viewModel.altText
|
|
}
|
|
.store(in: &disposeBag)
|
|
}
|
|
|
|
}
|
|
|
|
extension MediaPreviewImageViewController {
|
|
|
|
@objc private func tapGestureRecognizerHandler(_ sender: UITapGestureRecognizer) {
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
|
delegate?.mediaPreviewImageViewController(self, tapGestureRecognizerDidTrigger: sender)
|
|
}
|
|
|
|
@objc private func longPressGestureRecognizerHandler(_ sender: UILongPressGestureRecognizer) {
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
|
delegate?.mediaPreviewImageViewController(self, longPressGestureRecognizerDidTrigger: sender)
|
|
}
|
|
|
|
}
|
|
|
|
// MARK: - UIContextMenuInteractionDelegate
|
|
extension MediaPreviewImageViewController: UIContextMenuInteractionDelegate {
|
|
func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? {
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
let previewProvider: UIContextMenuContentPreviewProvider = { () -> UIViewController? in
|
|
return nil
|
|
}
|
|
|
|
let saveAction = UIAction(
|
|
title: L10n.Common.Controls.Actions.savePhoto, image: UIImage(systemName: "square.and.arrow.down")!, identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off
|
|
) { [weak self] _ in
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: save photo", ((#file as NSString).lastPathComponent), #line, #function)
|
|
guard let self = self else { return }
|
|
self.delegate?.mediaPreviewImageViewController(self, contextMenuActionPerform: .savePhoto)
|
|
}
|
|
|
|
let shareAction = UIAction(
|
|
title: L10n.Common.Controls.Actions.share, image: UIImage(systemName: "square.and.arrow.up")!, identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off
|
|
) { [weak self] _ in
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: share", ((#file as NSString).lastPathComponent), #line, #function)
|
|
guard let self = self else { return }
|
|
self.delegate?.mediaPreviewImageViewController(self, contextMenuActionPerform: .share)
|
|
}
|
|
|
|
let actionProvider: UIContextMenuActionProvider = { elements -> UIMenu? in
|
|
return UIMenu(title: "", image: nil, identifier: nil, options: [], children: [
|
|
saveAction,
|
|
shareAction
|
|
])
|
|
}
|
|
|
|
return UIContextMenuConfiguration(identifier: nil, previewProvider: previewProvider, actionProvider: actionProvider)
|
|
}
|
|
|
|
func contextMenuInteraction(_ interaction: UIContextMenuInteraction, previewForHighlightingMenuWithConfiguration configuration: UIContextMenuConfiguration) -> UITargetedPreview? {
|
|
// set preview view
|
|
return UITargetedPreview(view: previewImageView.imageView)
|
|
}
|
|
|
|
}
|
|
|
|
extension MediaPreviewImageViewController {
|
|
enum ContextMenuAction {
|
|
case savePhoto
|
|
case share
|
|
}
|
|
}
|