2018-09-30 23:29:52 +00:00
|
|
|
//
|
|
|
|
// TuskerNavigationDelegate.swift
|
|
|
|
// Tusker
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 9/30/18.
|
|
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import SafariServices
|
|
|
|
import Pachyderm
|
|
|
|
|
|
|
|
protocol TuskerNavigationDelegate {
|
2018-10-12 01:20:58 +00:00
|
|
|
|
2018-10-21 02:07:04 +00:00
|
|
|
func selected(account accountID: String)
|
2018-10-12 01:20:58 +00:00
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func selected(mention: Mention)
|
|
|
|
|
|
|
|
func selected(tag: Hashtag)
|
|
|
|
|
|
|
|
func selected(url: URL)
|
|
|
|
|
|
|
|
func selected(status statusID: String)
|
|
|
|
|
2018-10-20 16:03:18 +00:00
|
|
|
func compose()
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func reply(to statusID: String)
|
|
|
|
|
2018-10-21 02:07:04 +00:00
|
|
|
func largeImage(_ image: UIImage, description: String?, sourceView: UIView) -> LargeImageViewController
|
2018-10-12 01:20:58 +00:00
|
|
|
|
2018-11-09 20:48:08 +00:00
|
|
|
func largeImage(gifData: Data, description: String?, sourceView: UIView) -> LargeImageViewController
|
|
|
|
|
2018-10-21 02:07:04 +00:00
|
|
|
func showLargeImage(_ image: UIImage, description: String?, animatingFrom sourceView: UIView)
|
2018-09-30 23:29:52 +00:00
|
|
|
|
2018-11-09 20:48:08 +00:00
|
|
|
func showLargeImage(gifData: Data, description: String?, animatingFrom sourceView: UIView)
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func showMoreOptions(forStatus statusID: String)
|
2018-10-12 02:04:32 +00:00
|
|
|
|
|
|
|
func showMoreOptions(forURL url: URL)
|
2018-09-30 23:29:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extension TuskerNavigationDelegate where Self: UIViewController {
|
|
|
|
|
|
|
|
func selected(account accountID: String) {
|
|
|
|
// don't open if the account is the same as the current one
|
|
|
|
if let profileController = self as? ProfileTableViewController,
|
|
|
|
profileController.accountID == accountID {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-19 19:31:31 +00:00
|
|
|
show(ProfileTableViewController(accountID: accountID), sender: self)
|
2018-10-12 01:20:58 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func selected(mention: Mention) {
|
2019-01-19 19:31:31 +00:00
|
|
|
show(ProfileTableViewController(accountID: mention.id), sender: self)
|
2018-10-12 01:20:58 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func selected(tag: Hashtag) {
|
2019-01-19 19:31:31 +00:00
|
|
|
show(TimelineTableViewController(for: .tag(hashtag: tag.name)), sender: self)
|
2018-10-12 01:20:58 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func selected(url: URL) {
|
2019-01-19 19:31:31 +00:00
|
|
|
present(SFSafariViewController(url: url), animated: true)
|
2018-10-12 01:20:58 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func selected(status statusID: String) {
|
|
|
|
// don't open if the conversation is the same as the current one
|
2018-10-20 16:03:18 +00:00
|
|
|
if let conversationController = self as? ConversationTableViewController,
|
2018-09-30 23:29:52 +00:00
|
|
|
conversationController.mainStatusID == statusID {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-19 19:31:31 +00:00
|
|
|
show(ConversationTableViewController(for: statusID), sender: self)
|
2018-09-30 23:29:52 +00:00
|
|
|
}
|
|
|
|
|
2018-10-20 16:03:18 +00:00
|
|
|
func compose() {
|
2019-01-19 19:31:31 +00:00
|
|
|
let vc: UINavigationController = UINavigationController(rootViewController: ComposeViewController())
|
|
|
|
present(vc, animated: true)
|
2018-10-20 16:03:18 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func reply(to statusID: String) {
|
2019-01-19 19:31:31 +00:00
|
|
|
let vc = UINavigationController(rootViewController: ComposeViewController(inReplyTo: statusID))
|
|
|
|
present(vc, animated: true)
|
2018-10-21 02:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func largeImage(_ image: UIImage, description: String?, sourceView: UIView) -> LargeImageViewController {
|
|
|
|
var sourceFrame = sourceView.convert(sourceView.bounds, to: view)
|
|
|
|
if let scrollView = view as? UIScrollView {
|
|
|
|
let scale = scrollView.zoomScale
|
|
|
|
let width = sourceFrame.width * scale
|
|
|
|
let height = sourceFrame.height * scale
|
|
|
|
let x = sourceFrame.minX * scale - scrollView.contentOffset.x + scrollView.frame.minX
|
|
|
|
let y = sourceFrame.minY * scale - scrollView.contentOffset.y + scrollView.frame.minY
|
|
|
|
sourceFrame = CGRect(x: x, y: y, width: width, height: height)
|
2018-09-30 23:29:52 +00:00
|
|
|
}
|
2018-10-21 02:07:04 +00:00
|
|
|
let sourceCornerRadius = sourceView.layer.cornerRadius
|
2019-01-19 19:31:31 +00:00
|
|
|
let vc = LargeImageViewController(image: image, description: description, sourceFrame: sourceFrame, sourceCornerRadius: sourceCornerRadius)
|
|
|
|
vc.transitioningDelegate = self
|
|
|
|
return vc
|
2018-10-12 01:20:58 +00:00
|
|
|
}
|
|
|
|
|
2018-11-09 20:48:08 +00:00
|
|
|
func largeImage(gifData: Data, description: String?, sourceView: UIView) -> LargeImageViewController {
|
|
|
|
var sourceFrame = sourceView.convert(sourceView.bounds, to: view)
|
|
|
|
if let scrollView = view as? UIScrollView {
|
|
|
|
let scale = scrollView.zoomScale
|
|
|
|
let width = sourceFrame.width * scale
|
|
|
|
let height = sourceFrame.height * scale
|
|
|
|
let x = sourceFrame.minX * scale - scrollView.contentOffset.x + scrollView.frame.minX
|
|
|
|
let y = sourceFrame.minY * scale - scrollView.contentOffset.y + scrollView.frame.minY
|
|
|
|
sourceFrame = CGRect(x: x, y: y, width: width, height: height)
|
|
|
|
}
|
|
|
|
let sourceCornerRadius = sourceView.layer.cornerRadius
|
2019-01-19 19:31:31 +00:00
|
|
|
let vc = LargeImageViewController(image: UIImage(data: gifData)!, description: description, sourceFrame: sourceFrame, sourceCornerRadius: sourceCornerRadius)
|
|
|
|
vc.transitioningDelegate = self
|
|
|
|
vc.gifData = gifData
|
|
|
|
return vc
|
2018-11-09 20:48:08 +00:00
|
|
|
}
|
|
|
|
|
2018-10-21 02:07:04 +00:00
|
|
|
func showLargeImage(_ image: UIImage, description: String?, animatingFrom sourceView: UIView) {
|
2019-01-19 19:31:31 +00:00
|
|
|
present(largeImage(image, description: description, sourceView: sourceView), animated: true)
|
2018-09-30 23:29:52 +00:00
|
|
|
}
|
|
|
|
|
2018-11-09 20:48:08 +00:00
|
|
|
func showLargeImage(gifData: Data, description: String?, animatingFrom sourceView: UIView) {
|
2019-01-19 19:31:31 +00:00
|
|
|
present(largeImage(gifData: gifData, description: description, sourceView: sourceView), animated: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
private func moreOptions(forURL url: URL) -> UIAlertController {
|
|
|
|
let alert = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
|
2019-02-03 16:39:27 +00:00
|
|
|
alert.title = url.absoluteString
|
2019-01-19 19:31:31 +00:00
|
|
|
alert.addAction(UIAlertAction(title: "Open in Safari", style: .default, handler: { (_) in
|
|
|
|
let vc = SFSafariViewController(url: url)
|
|
|
|
self.present(vc, animated: true)
|
|
|
|
}))
|
|
|
|
alert.addAction(UIAlertAction(title: "Copy", style: .default, handler: { (_) in
|
|
|
|
UIPasteboard.general.url = url
|
|
|
|
}))
|
|
|
|
alert.addAction(UIAlertAction(title: "Share...", style: .default, handler: { (_) in
|
|
|
|
let vc = UIActivityViewController(activityItems: [url], applicationActivities: nil)
|
|
|
|
self.present(vc, animated: true)
|
|
|
|
}))
|
|
|
|
alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil))
|
|
|
|
return alert
|
|
|
|
}
|
|
|
|
|
|
|
|
private func moreOptions(forStatus statusID: String) -> UIAlertController {
|
|
|
|
guard let status = MastodonCache.status(for: statusID) else { fatalError("Missing cached status \(statusID)") }
|
|
|
|
guard let url = status.url else { fatalError("Missing url for status \(statusID)") }
|
|
|
|
return moreOptions(forURL: url)
|
2018-11-09 20:48:08 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
func showMoreOptions(forStatus statusID: String) {
|
2019-01-19 19:31:31 +00:00
|
|
|
present(moreOptions(forStatus: statusID), animated: true)
|
2018-09-30 23:29:52 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 02:04:32 +00:00
|
|
|
func showMoreOptions(forURL url: URL) {
|
2019-01-19 19:31:31 +00:00
|
|
|
present(moreOptions(forURL: url), animated: true)
|
2018-10-12 02:04:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 23:29:52 +00:00
|
|
|
}
|