metatext/View Controllers/ProfileViewController.swift

185 lines
7.3 KiB
Swift
Raw Normal View History

2020-09-27 05:54:06 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Combine
2020-11-17 06:46:48 +00:00
import Mastodon
2020-11-30 02:54:11 +00:00
import SwiftUI
2020-09-27 05:54:06 +00:00
import ViewModels
final class ProfileViewController: TableViewController {
private let viewModel: ProfileViewModel
private var cancellables = Set<AnyCancellable>()
2020-10-07 00:31:29 +00:00
required init(viewModel: ProfileViewModel, identification: Identification) {
2020-09-27 05:54:06 +00:00
self.viewModel = viewModel
2020-10-07 00:31:29 +00:00
super.init(viewModel: viewModel, identification: identification)
2020-09-27 05:54:06 +00:00
}
override func viewDidLoad() {
super.viewDidLoad()
// Initial size is to avoid unsatisfiable constraint warning
2020-12-03 01:06:46 +00:00
let accountHeaderView = AccountHeaderView(frame: .init(origin: .zero, size: .init(width: 300, height: 300)))
2020-09-27 05:54:06 +00:00
accountHeaderView.viewModel = viewModel
viewModel.$accountViewModel
.receive(on: DispatchQueue.main)
2020-11-17 06:46:48 +00:00
.sink { [weak self] in
guard let self = self else { return }
accountHeaderView.viewModel = self.viewModel
self.sizeTableHeaderFooterViews()
if let accountViewModel = $0,
let relationship = accountViewModel.relationship {
self.navigationItem.rightBarButtonItem = UIBarButtonItem(
image: UIImage(systemName: "ellipsis.circle"),
menu: self.menu(accountViewModel: accountViewModel, relationship: relationship))
}
2020-09-27 05:54:06 +00:00
}
.store(in: &cancellables)
2020-10-22 22:16:06 +00:00
viewModel.imagePresentations.sink { [weak self] in
guard let self = self else { return }
let imagePageViewController = ImagePageViewController(imageURL: $0)
let imageNavigationController = ImageNavigationController(imagePageViewController: imagePageViewController)
imageNavigationController.transitionController.fromDelegate = self
self.transitionViewTag = $0.hashValue
self.present(imageNavigationController, animated: true)
}
.store(in: &cancellables)
2020-09-27 05:54:06 +00:00
tableView.tableHeaderView = accountHeaderView
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
viewModel.fetchProfile()
.sink { _ in }
.store(in: &cancellables)
}
2020-09-27 05:54:06 +00:00
}
2020-11-17 06:46:48 +00:00
private extension ProfileViewController {
2020-11-30 02:54:11 +00:00
// swiftlint:disable:next function_body_length
2020-11-17 06:46:48 +00:00
func menu(accountViewModel: AccountViewModel, relationship: Relationship) -> UIMenu {
var actions = [UIAction]()
if relationship.following {
if relationship.showingReblogs {
actions.append(UIAction(
2020-11-22 20:20:36 +00:00
title: NSLocalizedString("account.hide-reblogs", comment: ""),
2020-11-17 06:46:48 +00:00
image: UIImage(systemName: "arrow.2.squarepath")) { _ in
accountViewModel.hideReblogs()
})
} else {
actions.append(UIAction(
2020-11-22 20:20:36 +00:00
title: NSLocalizedString("account.show-reblogs", comment: ""),
2020-11-17 06:46:48 +00:00
image: UIImage(systemName: "arrow.2.squarepath")) { _ in
accountViewModel.showReblogs()
})
}
}
if relationship.muting {
actions.append(UIAction(
2020-11-22 20:20:36 +00:00
title: NSLocalizedString("account.unmute", comment: ""),
2020-11-17 06:46:48 +00:00
image: UIImage(systemName: "speaker")) { _ in
accountViewModel.unmute()
})
} else {
actions.append(UIAction(
2020-11-22 20:20:36 +00:00
title: NSLocalizedString("account.mute", comment: ""),
2020-11-17 06:46:48 +00:00
image: UIImage(systemName: "speaker.slash")) { _ in
accountViewModel.mute()
})
}
2020-11-30 02:54:11 +00:00
actions.append(UIAction(
title: NSLocalizedString("report", comment: ""),
image: UIImage(systemName: "flag"),
attributes: .destructive) { [weak self] _ in
guard let self = self,
let reportViewModel = self.viewModel.accountViewModel?.reportViewModel()
else { return }
self.report(viewModel: reportViewModel)
})
2020-11-17 06:46:48 +00:00
if relationship.blocking {
actions.append(UIAction(
2020-11-22 20:20:36 +00:00
title: NSLocalizedString("account.unblock", comment: ""),
2020-12-04 03:13:18 +00:00
image: UIImage(systemName: "slash.circle"),
attributes: .destructive) { [weak self] _ in
self?.confirm(message: String.localizedStringWithFormat(
NSLocalizedString("account.unblock.confirm-%@", comment: ""),
accountViewModel.accountName)) {
accountViewModel.unblock()
}
})
2020-11-17 06:46:48 +00:00
} else {
actions.append(UIAction(
2020-11-22 20:20:36 +00:00
title: NSLocalizedString("account.block", comment: ""),
image: UIImage(systemName: "slash.circle"),
2020-12-04 03:13:18 +00:00
attributes: .destructive) { [weak self] _ in
self?.confirm(message: String.localizedStringWithFormat(
NSLocalizedString("account.block.confirm-%@", comment: ""),
accountViewModel.accountName)) {
accountViewModel.block()
}
})
}
if !accountViewModel.isLocal, let domain = accountViewModel.domain {
if relationship.domainBlocking {
actions.append(UIAction(
title: String.localizedStringWithFormat(
NSLocalizedString("account.domain-unblock-%@", comment: ""),
domain),
image: UIImage(systemName: "slash.circle"),
attributes: .destructive) { [weak self] _ in
self?.confirm(message: String.localizedStringWithFormat(
NSLocalizedString("account.domain-unblock.confirm-%@", comment: ""),
domain)) {
accountViewModel.domainUnblock()
}
})
} else {
actions.append(UIAction(
title: String.localizedStringWithFormat(
NSLocalizedString("account.domain-block-%@", comment: ""),
domain),
image: UIImage(systemName: "slash.circle"),
attributes: .destructive) { [weak self] _ in
self?.confirm(message: String.localizedStringWithFormat(
NSLocalizedString("account.domain-block.confirm-%@", comment: ""),
domain)) {
accountViewModel.domainBlock()
}
})
}
2020-11-17 06:46:48 +00:00
}
return UIMenu(children: actions)
}
2020-12-04 03:13:18 +00:00
func confirm(message: String, action: @escaping () -> Void) {
let alertController = UIAlertController(title: nil, message: message, preferredStyle: .alert)
let cancelAction = UIAlertAction(title: NSLocalizedString("cancel", comment: ""), style: .cancel, handler: nil)
let okAction = UIAlertAction(title: NSLocalizedString("ok", comment: ""), style: .destructive) { _ in
action()
}
alertController.addAction(cancelAction)
alertController.addAction(okAction)
present(alertController, animated: true)
}
2020-11-17 06:46:48 +00:00
}