metatext-app-ios-iphone-ipad/View Controllers/ProfileViewController.swift

193 lines
7.5 KiB
Swift
Raw Normal View History

2020-09-27 07:54:06 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Combine
2020-11-17 07:46:48 +01:00
import Mastodon
2020-11-30 03:54:11 +01:00
import SwiftUI
2020-09-27 07:54:06 +02:00
import ViewModels
final class ProfileViewController: TableViewController {
private let viewModel: ProfileViewModel
private var cancellables = Set<AnyCancellable>()
2021-01-23 04:48:33 +01:00
required init(
viewModel: ProfileViewModel,
rootViewModel: RootViewModel,
identification: Identification,
parentNavigationController: UINavigationController?) {
2020-09-27 07:54:06 +02:00
self.viewModel = viewModel
2021-01-23 04:48:33 +01:00
super.init(
viewModel: viewModel,
rootViewModel: rootViewModel,
identification: identification,
parentNavigationController: parentNavigationController)
2020-09-27 07:54:06 +02:00
}
override func viewDidLoad() {
super.viewDidLoad()
// Initial size is to avoid unsatisfiable constraint warning
2020-12-03 02:06:46 +01:00
let accountHeaderView = AccountHeaderView(frame: .init(origin: .zero, size: .init(width: 300, height: 300)))
2020-09-27 07:54:06 +02:00
accountHeaderView.viewModel = viewModel
viewModel.$accountViewModel
.receive(on: DispatchQueue.main)
2020-11-17 07:46:48 +01: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 07:54:06 +02:00
}
.store(in: &cancellables)
2020-10-23 00:16:06 +02: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 07:54:06 +02:00
tableView.tableHeaderView = accountHeaderView
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
viewModel.fetchProfile()
.sink { _ in }
.store(in: &cancellables)
}
2020-09-27 07:54:06 +02:00
}
2020-11-17 07:46:48 +01:00
private extension ProfileViewController {
2020-11-30 03:54:11 +01:00
// swiftlint:disable:next function_body_length
2020-11-17 07:46:48 +01:00
func menu(accountViewModel: AccountViewModel, relationship: Relationship) -> UIMenu {
var actions = [UIAction]()
if relationship.following {
if relationship.showingReblogs {
actions.append(UIAction(
2020-11-22 21:20:36 +01:00
title: NSLocalizedString("account.hide-reblogs", comment: ""),
2020-11-17 07:46:48 +01:00
image: UIImage(systemName: "arrow.2.squarepath")) { _ in
accountViewModel.hideReblogs()
})
} else {
actions.append(UIAction(
2020-11-22 21:20:36 +01:00
title: NSLocalizedString("account.show-reblogs", comment: ""),
2020-11-17 07:46:48 +01:00
image: UIImage(systemName: "arrow.2.squarepath")) { _ in
accountViewModel.showReblogs()
})
}
}
if relationship.muting {
actions.append(UIAction(
2020-11-22 21:20:36 +01:00
title: NSLocalizedString("account.unmute", comment: ""),
2020-11-17 07:46:48 +01:00
image: UIImage(systemName: "speaker")) { _ in
accountViewModel.unmute()
})
} else {
actions.append(UIAction(
2020-11-22 21:20:36 +01:00
title: NSLocalizedString("account.mute", comment: ""),
2020-11-17 07:46:48 +01:00
image: UIImage(systemName: "speaker.slash")) { _ in
accountViewModel.mute()
})
}
2020-11-30 03:54:11 +01: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 }
2021-01-10 06:56:15 +01:00
self.report(reportViewModel: reportViewModel)
2020-11-30 03:54:11 +01:00
})
2020-11-17 07:46:48 +01:00
if relationship.blocking {
actions.append(UIAction(
2020-11-22 21:20:36 +01:00
title: NSLocalizedString("account.unblock", comment: ""),
2020-12-04 04:13:18 +01: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 07:46:48 +01:00
} else {
actions.append(UIAction(
2020-11-22 21:20:36 +01:00
title: NSLocalizedString("account.block", comment: ""),
image: UIImage(systemName: "slash.circle"),
2020-12-04 04:13:18 +01: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 07:46:48 +01:00
}
return UIMenu(children: actions)
}
2020-12-04 04:13:18 +01: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 07:46:48 +01:00
}