Tusker/Tusker/Screens/Profile/ProfileTableViewController....

270 lines
11 KiB
Swift
Raw Normal View History

2018-08-28 01:27:34 +00:00
//
// ProfileTableViewController.swift
// Tusker
//
// Created by Shadowfacts on 8/27/18.
// Copyright © 2018 Shadowfacts. All rights reserved.
//
import UIKit
2018-09-11 14:52:21 +00:00
import Pachyderm
2018-08-28 01:27:34 +00:00
import SafariServices
class ProfileTableViewController: EnhancedTableViewController {
2018-10-02 23:23:50 +00:00
var accountID: String! {
didSet {
if shouldLoadOnAccountIDSet {
2018-10-20 16:03:18 +00:00
DispatchQueue.main.async {
self.updateAccountUI()
}
2018-10-02 23:23:50 +00:00
}
}
}
2018-08-28 01:27:34 +00:00
var timelineSegments: [TimelineSegment<Status>] = [] {
2018-08-28 01:27:34 +00:00
didSet {
DispatchQueue.main.async {
self.tableView.reloadData()
}
}
}
var older: RequestRange?
2018-09-11 14:52:21 +00:00
var newer: RequestRange?
2018-08-28 01:27:34 +00:00
2018-10-02 23:23:50 +00:00
var shouldLoadOnAccountIDSet = false
var loadingVC: LoadingViewController? = nil
2019-01-19 19:31:31 +00:00
init(accountID: String?) {
2018-10-20 16:03:18 +00:00
self.accountID = accountID
super.init(style: .plain)
2018-10-20 16:03:18 +00:00
self.refreshControl = UIRefreshControl()
refreshControl!.addTarget(self, action: #selector(refreshStatuses(_:)), for: .valueChanged)
navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .compose, target: self, action: #selector(composePressed(_:)))
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemeneted")
}
2018-08-28 01:27:34 +00:00
override func viewDidLoad() {
super.viewDidLoad()
tableView.rowHeight = UITableView.automaticDimension
tableView.estimatedRowHeight = 140
tableView.register(UINib(nibName: "StatusTableViewCell", bundle: nil), forCellReuseIdentifier: "statusCell")
tableView.register(UINib(nibName: "ProfileHeaderTableViewCell", bundle: nil), forCellReuseIdentifier: "headerCell")
tableView.prefetchDataSource = self
2018-10-02 23:23:50 +00:00
if let accountID = accountID {
if MastodonCache.account(for: accountID) != nil {
updateAccountUI()
} else {
loadingVC = LoadingViewController()
2019-06-15 00:23:03 +00:00
embedChild(loadingVC!)
2018-10-02 23:23:50 +00:00
MastodonCache.account(for: accountID) { (account) in
guard account != nil else {
let alert = UIAlertController(title: "Something Went Wrong", message: "Couldn't load the selected account", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { (_) in
self.navigationController!.popViewController(animated: true)
}))
DispatchQueue.main.async {
self.present(alert, animated: true)
}
return
}
2018-10-01 01:12:23 +00:00
DispatchQueue.main.async {
2018-10-02 23:23:50 +00:00
self.updateAccountUI()
self.tableView.reloadData()
2018-10-01 01:12:23 +00:00
}
}
}
2018-10-02 23:23:50 +00:00
} else {
loadingVC = LoadingViewController()
2019-06-15 00:23:03 +00:00
embedChild(loadingVC!)
2018-10-02 23:23:50 +00:00
shouldLoadOnAccountIDSet = true
2018-08-28 01:27:34 +00:00
}
2018-10-01 01:12:23 +00:00
NotificationCenter.default.addObserver(self, selector: #selector(updateUIForPreferences), name: .preferencesChanged, object: nil)
2018-10-01 01:12:23 +00:00
}
2018-10-01 01:12:23 +00:00
func updateAccountUI() {
2019-06-15 00:23:03 +00:00
loadingVC?.removeViewAndController()
2018-10-02 23:23:50 +00:00
updateUIForPreferences()
2018-10-01 01:12:23 +00:00
getStatuses() { response in
guard case let .success(statuses, pagination) = response else { fatalError() }
2018-10-01 01:12:23 +00:00
MastodonCache.addAll(statuses: statuses)
self.timelineSegments.append(TimelineSegment(objects: statuses))
2018-10-01 01:12:23 +00:00
self.older = pagination?.older
self.newer = pagination?.newer
}
}
@objc func updateUIForPreferences() {
2018-09-18 16:59:07 +00:00
guard let account = MastodonCache.account(for: accountID) else { fatalError("Missing cached account \(accountID!)") }
navigationItem.title = account.realDisplayName
2018-08-28 23:49:31 +00:00
}
2018-10-01 01:12:23 +00:00
func getStatuses(for range: RequestRange = .default, completion: @escaping Client.Callback<[Status]>) {
let request = Account.getStatuses(accountID, range: range, onlyMedia: false, pinned: false, excludeReplies: !Preferences.shared.showRepliesInProfiles)
2018-10-02 23:31:00 +00:00
MastodonController.client.run(request, completion: completion)
2018-10-01 01:12:23 +00:00
}
2018-08-31 02:30:19 +00:00
func sendMessageMentioning() {
2018-09-18 16:59:07 +00:00
guard let account = MastodonCache.account(for: accountID) else { fatalError("Missing cached account \(accountID!)") }
2019-01-19 19:31:31 +00:00
let vc = UINavigationController(rootViewController: ComposeViewController(mentioningAcct: account.acct))
2018-08-31 02:30:19 +00:00
present(vc, animated: true)
}
2018-08-28 01:27:34 +00:00
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
return 1 + timelineSegments.count
2018-08-28 01:27:34 +00:00
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if section == 0 {
2018-10-02 23:23:50 +00:00
return accountID == nil || MastodonCache.account(for: accountID) == nil ? 0 : 1
} else {
return timelineSegments[section - 1].count
2018-08-28 01:27:34 +00:00
}
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if indexPath.section == 0 {
2018-08-28 18:29:06 +00:00
guard let cell = tableView.dequeueReusableCell(withIdentifier: "headerCell", for: indexPath) as? ProfileHeaderTableViewCell else { fatalError() }
2018-08-28 01:27:34 +00:00
cell.selectionStyle = .none
cell.delegate = self
2019-04-01 23:34:50 +00:00
cell.updateUI(for: accountID)
2018-08-28 01:27:34 +00:00
return cell
} else {
2018-08-28 18:29:06 +00:00
guard let cell = tableView.dequeueReusableCell(withIdentifier: "statusCell", for: indexPath) as? StatusTableViewCell else { fatalError() }
let statusID = timelineSegments[indexPath.section - 1][indexPath.row]
cell.updateUI(statusID: statusID)
2018-08-28 01:27:34 +00:00
cell.delegate = self
return cell
}
}
override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
2019-08-22 03:22:14 +00:00
if timelineSegments.count > 0 && indexPath.section == timelineSegments.count && indexPath.row == timelineSegments[indexPath.section - 1].count - 1 {
let older = self.older ?? RequestRange.after(id: timelineSegments.last!.last!, count: nil)
2018-09-11 14:52:21 +00:00
getStatuses(for: older) { response in
guard case let .success(newStatuses, pagination) = response else { fatalError() }
2018-09-18 16:59:07 +00:00
MastodonCache.addAll(statuses: newStatuses)
self.timelineSegments[indexPath.section - 1].append(objects: newStatuses)
self.older = pagination?.older
2018-08-28 01:27:34 +00:00
}
}
}
override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
2019-06-14 02:31:36 +00:00
return true
}
override func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
2019-06-14 02:31:36 +00:00
return (tableView.cellForRow(at: indexPath) as? TableViewSwipeActionProvider)?.leadingSwipeActionsConfiguration()
}
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
2019-06-14 02:31:36 +00:00
return (tableView.cellForRow(at: indexPath) as? TableViewSwipeActionProvider)?.trailingSwipeActionsConfiguration()
}
2018-10-20 16:03:18 +00:00
@objc func refreshStatuses(_ sender: Any) {
let newer = self.newer ?? RequestRange.after(id: timelineSegments.first!.first!, count: nil)
2018-09-11 14:52:21 +00:00
getStatuses(for: newer) { response in
guard case let .success(newStatuses, pagination) = response else { fatalError() }
2018-09-18 16:59:07 +00:00
MastodonCache.addAll(statuses: newStatuses)
self.timelineSegments[0].insertAtBeginning(objects: newStatuses)
self.newer = pagination?.newer
2018-08-28 01:27:34 +00:00
DispatchQueue.main.async {
self.refreshControl?.endRefreshing()
}
}
}
2018-08-31 02:30:19 +00:00
2018-10-20 16:03:18 +00:00
@objc func composePressed(_ sender: Any) {
2018-08-31 02:30:19 +00:00
sendMessageMentioning()
}
2018-08-28 01:27:34 +00:00
}
extension ProfileTableViewController: StatusTableViewCellDelegate {
func statusCollapsedStateChanged() {
// causes the table view to recalculate the cell heights
tableView.beginUpdates()
tableView.endUpdates()
}
}
2018-08-28 01:27:34 +00:00
extension ProfileTableViewController: ProfileHeaderTableViewCellDelegate {
2018-08-28 21:53:59 +00:00
func showMoreOptions() {
2018-09-18 16:59:07 +00:00
let account = MastodonCache.account(for: accountID)!
MastodonCache.relationship(for: account.id) { [weak self] (relationship) in
guard let self = self else { return }
let customActivities: [UIActivity]
if let relationship = relationship {
let toggleFollowActivity = relationship.following ? UnfollowAccountActivity() : FollowAccountActivity()
customActivities = [
SendMessageActivity(),
toggleFollowActivity,
OpenInSafariActivity()
]
} else {
customActivities = [
SendMessageActivity(),
OpenInSafariActivity()
]
2018-09-24 12:49:39 +00:00
}
2018-09-24 12:49:39 +00:00
DispatchQueue.main.async {
let activityController = UIActivityViewController(activityItems: [account.url, account], applicationActivities: customActivities)
activityController.completionWithItemsHandler = OpenInSafariActivity.completionHandler(viewController: self, url: account.url)
self.present(activityController, animated: true)
2018-09-24 12:49:39 +00:00
}
}
2018-08-28 21:53:59 +00:00
}
2018-08-28 01:27:34 +00:00
}
extension ProfileTableViewController: UITableViewDataSourcePrefetching {
func tableView(_ tableView: UITableView, prefetchRowsAt indexPaths: [IndexPath]) {
for indexPath in indexPaths where indexPath.section > 0 {
let statusID = timelineSegments[indexPath.section - 1][indexPath.row]
guard let status = MastodonCache.status(for: statusID) else { continue }
ImageCache.avatars.get(status.account.avatar, completion: nil)
for attachment in status.attachments {
ImageCache.attachments.get(attachment.url, completion: nil)
}
}
}
func tableView(_ tableView: UITableView, cancelPrefetchingForRowsAt indexPaths: [IndexPath]) {
for indexPath in indexPaths where indexPath.section > 0 {
let statusID = timelineSegments[indexPath.section - 1][indexPath.row]
guard let status = MastodonCache.status(for: statusID) else { continue }
ImageCache.avatars.cancel(status.account.avatar)
for attachment in status.attachments {
ImageCache.attachments.cancel(attachment.url)
}
}
}
}