2021-04-08 13:47:31 +02:00
|
|
|
//
|
|
|
|
// SettingsViewController.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by ihugo on 2021/4/7.
|
|
|
|
//
|
|
|
|
|
|
|
|
import os.log
|
|
|
|
import UIKit
|
|
|
|
import Combine
|
|
|
|
import CoreData
|
|
|
|
import CoreDataStack
|
2021-04-26 10:57:50 +02:00
|
|
|
import MastodonSDK
|
2021-07-23 13:10:27 +02:00
|
|
|
import MetaTextKit
|
|
|
|
import MastodonMeta
|
2021-07-13 11:39:38 +02:00
|
|
|
import AuthenticationServices
|
2022-03-29 11:51:14 +02:00
|
|
|
import MastodonAsset
|
|
|
|
import MastodonLocalization
|
2021-04-08 13:47:31 +02:00
|
|
|
|
|
|
|
class SettingsViewController: UIViewController, NeedsDependency {
|
|
|
|
|
|
|
|
weak var context: AppContext! { willSet { precondition(!isViewLoaded) } }
|
|
|
|
weak var coordinator: SceneCoordinator! { willSet { precondition(!isViewLoaded) } }
|
|
|
|
|
|
|
|
var viewModel: SettingsViewModel! { willSet { precondition(!isViewLoaded) } }
|
|
|
|
var disposeBag = Set<AnyCancellable>()
|
2021-04-26 10:57:50 +02:00
|
|
|
var notificationPolicySubscription: AnyCancellable?
|
2021-04-08 13:47:31 +02:00
|
|
|
|
|
|
|
var triggerMenu: UIMenu {
|
|
|
|
let anyone = L10n.Scene.Settings.Section.Notifications.Trigger.anyone
|
|
|
|
let follower = L10n.Scene.Settings.Section.Notifications.Trigger.follower
|
|
|
|
let follow = L10n.Scene.Settings.Section.Notifications.Trigger.follow
|
2021-04-13 10:22:41 +02:00
|
|
|
let noOne = L10n.Scene.Settings.Section.Notifications.Trigger.noone
|
2021-04-08 13:47:31 +02:00
|
|
|
let menu = UIMenu(
|
2021-04-12 15:42:43 +02:00
|
|
|
image: nil,
|
2021-04-08 13:47:31 +02:00
|
|
|
identifier: nil,
|
|
|
|
options: .displayInline,
|
|
|
|
children: [
|
|
|
|
UIAction(title: anyone, image: UIImage(systemName: "person.3"), attributes: []) { [weak self] action in
|
2021-04-26 10:57:50 +02:00
|
|
|
self?.updateTrigger(policy: .all)
|
2021-04-08 13:47:31 +02:00
|
|
|
},
|
|
|
|
UIAction(title: follower, image: UIImage(systemName: "person.crop.circle.badge.plus"), attributes: []) { [weak self] action in
|
2021-04-26 10:57:50 +02:00
|
|
|
self?.updateTrigger(policy: .follower)
|
2021-04-08 13:47:31 +02:00
|
|
|
},
|
|
|
|
UIAction(title: follow, image: UIImage(systemName: "person.crop.circle.badge.checkmark"), attributes: []) { [weak self] action in
|
2021-04-26 10:57:50 +02:00
|
|
|
self?.updateTrigger(policy: .followed)
|
2021-04-08 13:47:31 +02:00
|
|
|
},
|
|
|
|
UIAction(title: noOne, image: UIImage(systemName: "nosign"), attributes: []) { [weak self] action in
|
2021-04-26 10:57:50 +02:00
|
|
|
self?.updateTrigger(policy: .none)
|
2021-04-08 13:47:31 +02:00
|
|
|
},
|
2021-04-17 20:02:08 +02:00
|
|
|
]
|
2021-04-08 13:47:31 +02:00
|
|
|
)
|
|
|
|
return menu
|
|
|
|
}
|
|
|
|
|
2021-05-10 12:48:04 +02:00
|
|
|
private let notifySectionHeaderStackView: UIStackView = {
|
2021-04-08 13:47:31 +02:00
|
|
|
let view = UIStackView()
|
|
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
view.isLayoutMarginsRelativeArrangement = true
|
|
|
|
view.axis = .horizontal
|
|
|
|
view.spacing = 4
|
2021-05-10 12:48:04 +02:00
|
|
|
return view
|
|
|
|
}()
|
|
|
|
|
2021-05-11 11:07:08 +02:00
|
|
|
let notifyLabel = UILabel()
|
2021-05-10 12:48:04 +02:00
|
|
|
private(set) lazy var notifySectionHeader: UIView = {
|
|
|
|
let view = notifySectionHeaderStackView
|
2021-08-06 11:45:07 +02:00
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
notifyLabel.translatesAutoresizingMaskIntoConstraints = false
|
2021-05-11 11:07:08 +02:00
|
|
|
notifyLabel.adjustsFontForContentSizeCategory = true
|
2021-05-10 12:48:04 +02:00
|
|
|
notifyLabel.font = UIFontMetrics(forTextStyle: .headline).scaledFont(for: UIFont.systemFont(ofSize: 20, weight: .semibold))
|
2021-04-08 13:47:31 +02:00
|
|
|
notifyLabel.textColor = Asset.Colors.Label.primary.color
|
|
|
|
notifyLabel.text = L10n.Scene.Settings.Section.Notifications.Trigger.title
|
2021-08-06 11:45:07 +02:00
|
|
|
notifyLabel.adjustsFontSizeToFitWidth = true
|
|
|
|
notifyLabel.minimumScaleFactor = 0.5
|
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
view.addArrangedSubview(notifyLabel)
|
|
|
|
view.addArrangedSubview(whoButton)
|
2021-05-11 11:07:08 +02:00
|
|
|
whoButton.setContentHuggingPriority(.defaultHigh + 1, for: .horizontal)
|
|
|
|
whoButton.setContentHuggingPriority(.defaultHigh + 1, for: .vertical)
|
2021-08-06 11:45:07 +02:00
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
return view
|
|
|
|
}()
|
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
private(set) lazy var whoButton: UIButton = {
|
2021-04-08 13:47:31 +02:00
|
|
|
let whoButton = UIButton(type: .roundedRect)
|
|
|
|
whoButton.menu = triggerMenu
|
|
|
|
whoButton.showsMenuAsPrimaryAction = true
|
|
|
|
whoButton.setBackgroundColor(Asset.Colors.battleshipGrey.color, for: .normal)
|
|
|
|
whoButton.setTitleColor(Asset.Colors.Label.primary.color, for: .normal)
|
2021-05-11 11:07:08 +02:00
|
|
|
whoButton.titleLabel?.adjustsFontForContentSizeCategory = true
|
2021-04-08 13:47:31 +02:00
|
|
|
whoButton.titleLabel?.font = UIFontMetrics(forTextStyle: .title3).scaledFont(for: UIFont.systemFont(ofSize: 20, weight: .semibold))
|
|
|
|
whoButton.contentEdgeInsets = UIEdgeInsets(top: 5, left: 5, bottom: 5, right: 5)
|
|
|
|
whoButton.layer.cornerRadius = 10
|
|
|
|
whoButton.clipsToBounds = true
|
2021-08-06 11:45:07 +02:00
|
|
|
whoButton.titleLabel?.adjustsFontSizeToFitWidth = true
|
|
|
|
whoButton.titleLabel?.minimumScaleFactor = 0.5
|
2021-04-08 13:47:31 +02:00
|
|
|
return whoButton
|
|
|
|
}()
|
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
private(set) lazy var tableView: UITableView = {
|
2021-04-08 13:47:31 +02:00
|
|
|
// init with a frame to fix a conflict ('UIView-Encapsulated-Layout-Width' UIStackView:0x7f8c2b6c0590.width == 0)
|
2022-03-29 11:51:14 +02:00
|
|
|
let tableView = UITableView(frame: CGRect(x: 0, y: 0, width: 320, height: 320), style: .insetGrouped)
|
2021-04-08 13:47:31 +02:00
|
|
|
tableView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
tableView.delegate = self
|
|
|
|
tableView.rowHeight = UITableView.automaticDimension
|
2021-06-08 11:26:12 +02:00
|
|
|
tableView.backgroundColor = .clear
|
2021-07-05 10:07:17 +02:00
|
|
|
tableView.separatorColor = ThemeService.shared.currentTheme.value.separator
|
2021-04-08 13:47:31 +02:00
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
tableView.register(SettingsAppearanceTableViewCell.self, forCellReuseIdentifier: String(describing: SettingsAppearanceTableViewCell.self))
|
|
|
|
tableView.register(SettingsToggleTableViewCell.self, forCellReuseIdentifier: String(describing: SettingsToggleTableViewCell.self))
|
|
|
|
tableView.register(SettingsLinkTableViewCell.self, forCellReuseIdentifier: String(describing: SettingsLinkTableViewCell.self))
|
2021-04-08 13:47:31 +02:00
|
|
|
return tableView
|
|
|
|
}()
|
2021-07-06 09:20:32 +02:00
|
|
|
|
2021-07-23 13:10:27 +02:00
|
|
|
let tableFooterLabel = MetaLabel(style: .settingTableFooter)
|
2021-08-03 11:33:24 +02:00
|
|
|
lazy var tableFooterView: UIView = {
|
|
|
|
// init with a frame to fix a conflict ('UIView-Encapsulated-Layout-Height' UIStackView:0x7ffe41e47da0.height == 0)
|
|
|
|
let view = UIStackView(frame: CGRect(x: 0, y: 0, width: 320, height: 320))
|
|
|
|
view.isLayoutMarginsRelativeArrangement = true
|
|
|
|
view.layoutMargins = UIEdgeInsets(top: 20, left: 20, bottom: 20, right: 20)
|
|
|
|
view.axis = .vertical
|
|
|
|
view.alignment = .center
|
|
|
|
|
|
|
|
// tableFooterLabel.linkDelegate = self
|
|
|
|
view.addArrangedSubview(tableFooterLabel)
|
|
|
|
return view
|
|
|
|
}()
|
2021-04-08 13:47:31 +02:00
|
|
|
|
2022-03-29 11:51:14 +02:00
|
|
|
|
|
|
|
deinit {
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s:", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
extension SettingsViewController {
|
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
|
|
|
setupView()
|
|
|
|
bindViewModel()
|
|
|
|
|
|
|
|
viewModel.viewDidLoad.send()
|
|
|
|
}
|
2021-07-05 10:07:17 +02:00
|
|
|
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
|
|
super.viewWillAppear(animated)
|
|
|
|
|
|
|
|
// make large title not collapsed
|
|
|
|
navigationController?.navigationBar.sizeToFit()
|
|
|
|
}
|
2021-04-08 13:47:31 +02:00
|
|
|
|
|
|
|
override func viewDidLayoutSubviews() {
|
|
|
|
super.viewDidLayoutSubviews()
|
|
|
|
guard let footerView = self.tableView.tableFooterView else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let width = self.tableView.bounds.size.width
|
|
|
|
let size = footerView.systemLayoutSizeFitting(CGSize(width: width, height: UIView.layoutFittingCompressedSize.height))
|
|
|
|
if footerView.frame.size.height != size.height {
|
|
|
|
footerView.frame.size.height = size.height
|
|
|
|
self.tableView.tableFooterView = footerView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-10 12:48:04 +02:00
|
|
|
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
|
|
|
|
super.traitCollectionDidChange(previousTraitCollection)
|
|
|
|
|
|
|
|
updateSectionHeaderStackViewLayout()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
// MAKR: - Private methods
|
2021-05-10 12:48:04 +02:00
|
|
|
private func updateSectionHeaderStackViewLayout() {
|
2021-05-11 11:07:08 +02:00
|
|
|
// accessibility
|
2021-05-10 12:48:04 +02:00
|
|
|
if traitCollection.preferredContentSizeCategory < .accessibilityMedium {
|
|
|
|
notifySectionHeaderStackView.axis = .horizontal
|
2021-05-11 11:07:08 +02:00
|
|
|
notifyLabel.numberOfLines = 1
|
2021-05-10 12:48:04 +02:00
|
|
|
} else {
|
|
|
|
notifySectionHeaderStackView.axis = .vertical
|
2021-05-11 11:07:08 +02:00
|
|
|
notifyLabel.numberOfLines = 0
|
2021-05-10 12:48:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
private func bindViewModel() {
|
2021-04-26 10:57:50 +02:00
|
|
|
self.whoButton.setTitle(viewModel.setting.value.activeSubscription?.policy.title, for: .normal)
|
|
|
|
viewModel.setting
|
|
|
|
.sink { [weak self] setting in
|
|
|
|
guard let self = self else { return }
|
|
|
|
self.notificationPolicySubscription = ManagedObjectObserver.observe(object: setting)
|
|
|
|
.sink { _ in
|
|
|
|
// do nothing
|
|
|
|
} receiveValue: { [weak self] change in
|
|
|
|
guard let self = self else { return }
|
|
|
|
guard case let .update(object) = change.changeType,
|
|
|
|
let setting = object as? Setting else { return }
|
|
|
|
if let activeSubscription = setting.activeSubscription {
|
|
|
|
self.whoButton.setTitle(activeSubscription.policy.title, for: .normal)
|
|
|
|
} else {
|
2021-09-16 10:58:29 +02:00
|
|
|
// assertionFailure()
|
2021-04-26 10:57:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
2021-07-06 09:20:32 +02:00
|
|
|
|
2022-03-29 11:51:14 +02:00
|
|
|
let footer = "Mastodon for iOS v\(UIApplication.appVersion()) (\(UIApplication.appBuild()))"
|
2021-08-03 11:33:24 +02:00
|
|
|
let metaContent = PlaintextMetaContent(string: footer)
|
|
|
|
tableFooterLabel.configure(content: metaContent)
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private func setupView() {
|
2021-07-06 12:00:39 +02:00
|
|
|
setupBackgroundColor(theme: ThemeService.shared.currentTheme.value)
|
2021-07-05 10:07:17 +02:00
|
|
|
ThemeService.shared.currentTheme
|
2022-03-29 11:51:14 +02:00
|
|
|
.receive(on: DispatchQueue.main)
|
2021-07-05 10:07:17 +02:00
|
|
|
.sink { [weak self] theme in
|
|
|
|
guard let self = self else { return }
|
2021-07-06 12:00:39 +02:00
|
|
|
self.setupBackgroundColor(theme: theme)
|
2021-07-05 10:07:17 +02:00
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
setupNavigation()
|
|
|
|
view.addSubview(tableView)
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
tableView.topAnchor.constraint(equalTo: view.topAnchor),
|
|
|
|
tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
|
|
|
|
tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor),
|
|
|
|
tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor),
|
|
|
|
])
|
2021-04-26 10:57:50 +02:00
|
|
|
setupTableView()
|
2021-05-10 12:48:04 +02:00
|
|
|
|
|
|
|
updateSectionHeaderStackViewLayout()
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
2021-07-06 12:00:39 +02:00
|
|
|
|
|
|
|
private func setupBackgroundColor(theme: Theme) {
|
|
|
|
view.backgroundColor = UIColor(dynamicProvider: { traitCollection in
|
|
|
|
switch traitCollection.userInterfaceLevel {
|
|
|
|
case .elevated where traitCollection.userInterfaceStyle == .dark:
|
|
|
|
return theme.systemElevatedBackgroundColor
|
|
|
|
default:
|
|
|
|
return theme.secondarySystemBackgroundColor
|
|
|
|
}
|
|
|
|
})
|
2021-07-07 11:52:06 +02:00
|
|
|
|
|
|
|
tableView.separatorColor = theme.separator
|
2021-07-06 12:00:39 +02:00
|
|
|
}
|
2021-04-08 13:47:31 +02:00
|
|
|
|
|
|
|
private func setupNavigation() {
|
|
|
|
navigationController?.navigationBar.prefersLargeTitles = true
|
|
|
|
navigationItem.rightBarButtonItem
|
|
|
|
= UIBarButtonItem(barButtonSystemItem: UIBarButtonItem.SystemItem.done,
|
|
|
|
target: self,
|
|
|
|
action: #selector(doneButtonDidClick))
|
|
|
|
navigationItem.title = L10n.Scene.Settings.title
|
|
|
|
}
|
|
|
|
|
|
|
|
private func setupTableView() {
|
2021-04-26 10:57:50 +02:00
|
|
|
viewModel.setupDiffableDataSource(
|
|
|
|
for: tableView,
|
|
|
|
settingsAppearanceTableViewCellDelegate: self,
|
|
|
|
settingsToggleCellDelegate: self
|
|
|
|
)
|
2021-08-03 11:33:24 +02:00
|
|
|
tableView.tableFooterView = tableFooterView
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
|
|
|
|
2021-09-16 10:58:29 +02:00
|
|
|
func alertToSignOut() {
|
2021-04-13 10:22:41 +02:00
|
|
|
let alertController = UIAlertController(
|
|
|
|
title: L10n.Common.Alerts.SignOut.title,
|
|
|
|
message: L10n.Common.Alerts.SignOut.message,
|
|
|
|
preferredStyle: .alert
|
|
|
|
)
|
|
|
|
|
|
|
|
let cancelAction = UIAlertAction(title: L10n.Common.Controls.Actions.cancel, style: .cancel, handler: nil)
|
|
|
|
let signOutAction = UIAlertAction(title: L10n.Common.Alerts.SignOut.confirm, style: .destructive) { [weak self] _ in
|
|
|
|
guard let self = self else { return }
|
2021-04-26 10:57:50 +02:00
|
|
|
self.signOut()
|
2021-04-13 10:22:41 +02:00
|
|
|
}
|
|
|
|
alertController.addAction(cancelAction)
|
|
|
|
alertController.addAction(signOutAction)
|
|
|
|
self.coordinator.present(
|
|
|
|
scene: .alertController(alertController: alertController),
|
|
|
|
from: self,
|
|
|
|
transition: .alertController(animated: true, completion: nil)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
func signOut() {
|
2022-03-29 11:51:14 +02:00
|
|
|
guard let authenticationBox = context.authenticationService.activeMastodonAuthenticationBox.value else {
|
2021-04-08 13:47:31 +02:00
|
|
|
return
|
|
|
|
}
|
2021-04-13 10:22:41 +02:00
|
|
|
|
2021-09-29 12:42:52 +02:00
|
|
|
// clear badge before sign-out
|
|
|
|
context.notificationService.clearNotificationCountForActiveUser()
|
|
|
|
|
2022-03-29 11:51:14 +02:00
|
|
|
Task { @MainActor in
|
|
|
|
try await context.authenticationService.signOutMastodonUser(authenticationBox: authenticationBox)
|
|
|
|
self.coordinator.setup()
|
|
|
|
self.coordinator.setupOnboardingIfNeeds(animated: true)
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
2021-04-12 15:42:43 +02:00
|
|
|
}
|
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mark: - Actions
|
|
|
|
extension SettingsViewController {
|
|
|
|
@objc private func doneButtonDidClick() {
|
2021-04-08 13:47:31 +02:00
|
|
|
dismiss(animated: true, completion: nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-29 11:51:14 +02:00
|
|
|
// MARK: - UITableViewDelegate
|
2021-04-08 13:47:31 +02:00
|
|
|
extension SettingsViewController: UITableViewDelegate {
|
2022-03-29 11:51:14 +02:00
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
|
|
|
|
let sections = viewModel.dataSource.snapshot().sectionIdentifiers
|
|
|
|
guard section < sections.count else { return nil }
|
2021-04-26 10:57:50 +02:00
|
|
|
|
|
|
|
let sectionIdentifier = sections[section]
|
2021-04-08 13:47:31 +02:00
|
|
|
|
2021-04-25 06:48:29 +02:00
|
|
|
let header: SettingsSectionHeader
|
2021-04-26 10:57:50 +02:00
|
|
|
switch sectionIdentifier {
|
2022-03-29 11:51:14 +02:00
|
|
|
case .appearancePreference:
|
|
|
|
return UIView()
|
|
|
|
case .preference:
|
|
|
|
return UIView()
|
2021-04-26 10:57:50 +02:00
|
|
|
case .notifications:
|
2021-04-25 06:48:29 +02:00
|
|
|
header = SettingsSectionHeader(
|
2021-04-08 13:47:31 +02:00
|
|
|
frame: CGRect(x: 0, y: 0, width: 375, height: 66),
|
|
|
|
customView: notifySectionHeader)
|
2021-04-26 10:57:50 +02:00
|
|
|
header.update(title: sectionIdentifier.title)
|
|
|
|
default:
|
2021-04-25 06:48:29 +02:00
|
|
|
header = SettingsSectionHeader(frame: CGRect(x: 0, y: 0, width: 375, height: 66))
|
2021-04-26 10:57:50 +02:00
|
|
|
header.update(title: sectionIdentifier.title)
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
2021-04-25 06:48:29 +02:00
|
|
|
header.preservesSuperviewLayoutMargins = true
|
2021-04-26 10:57:50 +02:00
|
|
|
|
2021-04-25 06:48:29 +02:00
|
|
|
return header
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
2021-04-26 10:57:50 +02:00
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
// remove the gap of table's footer
|
|
|
|
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
|
|
|
|
return UIView()
|
|
|
|
}
|
2021-04-26 10:57:50 +02:00
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
// remove the gap of table's footer
|
|
|
|
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
|
2021-04-26 10:57:50 +02:00
|
|
|
return CGFloat.leastNonzeroMagnitude
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
2021-04-26 10:57:50 +02:00
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
2021-04-26 10:57:50 +02:00
|
|
|
guard let dataSource = viewModel.dataSource else { return }
|
2021-06-01 08:07:44 +02:00
|
|
|
guard let item = dataSource.itemIdentifier(for: indexPath) else { return }
|
2021-04-26 10:57:50 +02:00
|
|
|
|
2021-04-14 10:41:30 +02:00
|
|
|
switch item {
|
2021-06-22 14:52:30 +02:00
|
|
|
case .appearance:
|
2021-07-23 14:03:54 +02:00
|
|
|
// do nothing
|
|
|
|
break
|
2022-03-29 11:51:14 +02:00
|
|
|
case .appearancePreference:
|
|
|
|
// do nothing
|
|
|
|
break
|
2021-06-01 08:07:44 +02:00
|
|
|
case .notification:
|
|
|
|
// do nothing
|
|
|
|
break
|
2021-07-22 07:47:56 +02:00
|
|
|
case .preference:
|
2021-07-08 09:56:52 +02:00
|
|
|
// do nothing
|
|
|
|
break
|
2021-06-01 08:07:44 +02:00
|
|
|
case .boringZone(let link), .spicyZone(let link):
|
2021-07-23 14:03:54 +02:00
|
|
|
let feedbackGenerator = UIImpactFeedbackGenerator(style: .light)
|
2021-07-23 13:40:41 +02:00
|
|
|
feedbackGenerator.impactOccurred()
|
2021-06-01 08:07:44 +02:00
|
|
|
switch link {
|
2021-07-13 11:39:38 +02:00
|
|
|
case .accountSettings:
|
|
|
|
guard let box = context.authenticationService.activeMastodonAuthenticationBox.value,
|
|
|
|
let url = URL(string: "https://\(box.domain)/auth/edit") else { return }
|
|
|
|
viewModel.openAuthenticationPage(authenticateURL: url, presentationContextProvider: self)
|
2021-08-03 11:33:24 +02:00
|
|
|
case .github:
|
|
|
|
guard let url = URL(string: "https://github.com/mastodon/mastodon-ios") else { break }
|
|
|
|
coordinator.present(
|
|
|
|
scene: .safari(url: url),
|
|
|
|
from: self,
|
|
|
|
transition: .safariPresent(animated: true, completion: nil)
|
|
|
|
)
|
2021-06-01 08:07:44 +02:00
|
|
|
case .termsOfService, .privacyPolicy:
|
|
|
|
// same URL
|
|
|
|
guard let url = viewModel.privacyURL else { break }
|
|
|
|
coordinator.present(
|
|
|
|
scene: .safari(url: url),
|
|
|
|
from: self,
|
|
|
|
transition: .safariPresent(animated: true, completion: nil)
|
|
|
|
)
|
|
|
|
case .clearMediaCache:
|
|
|
|
context.purgeCache()
|
|
|
|
.receive(on: RunLoop.main)
|
|
|
|
.sink { [weak self] byteCount in
|
|
|
|
guard let self = self else { return }
|
2021-07-13 11:39:38 +02:00
|
|
|
let byteCountFormatted = AppContext.byteCountFormatter.string(fromByteCount: Int64(byteCount))
|
2021-06-01 08:07:44 +02:00
|
|
|
let alertController = UIAlertController(
|
|
|
|
title: L10n.Common.Alerts.CleanCache.title,
|
2021-07-13 11:39:38 +02:00
|
|
|
message: L10n.Common.Alerts.CleanCache.message(byteCountFormatted),
|
2021-06-01 08:07:44 +02:00
|
|
|
preferredStyle: .alert
|
|
|
|
)
|
|
|
|
let okAction = UIAlertAction(title: L10n.Common.Controls.Actions.ok, style: .default, handler: nil)
|
|
|
|
alertController.addAction(okAction)
|
|
|
|
self.coordinator.present(scene: .alertController(alertController: alertController), from: nil, transition: .alertController(animated: true, completion: nil))
|
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
|
|
|
case .signOut:
|
2021-07-23 13:40:41 +02:00
|
|
|
feedbackGenerator.impactOccurred()
|
2021-09-16 10:58:29 +02:00
|
|
|
alertToSignOut()
|
2021-04-14 10:41:30 +02:00
|
|
|
}
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update setting into core data
|
|
|
|
extension SettingsViewController {
|
2021-04-26 10:57:50 +02:00
|
|
|
func updateTrigger(policy: Mastodon.API.Subscriptions.Policy) {
|
|
|
|
let objectID = self.viewModel.setting.value.objectID
|
|
|
|
let managedObjectContext = context.backgroundManagedObjectContext
|
2021-04-08 13:47:31 +02:00
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
managedObjectContext.performChanges {
|
|
|
|
let setting = managedObjectContext.object(with: objectID) as! Setting
|
|
|
|
let (subscription, _) = APIService.CoreData.createOrFetchSubscription(
|
|
|
|
into: managedObjectContext,
|
|
|
|
setting: setting,
|
|
|
|
policy: policy
|
|
|
|
)
|
|
|
|
let now = Date()
|
|
|
|
subscription.update(activedAt: now)
|
|
|
|
setting.didUpdate(at: now)
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
2021-04-26 10:57:50 +02:00
|
|
|
.sink { _ in
|
|
|
|
// do nothing
|
|
|
|
} receiveValue: { _ in
|
2021-10-08 12:47:46 +02:00
|
|
|
// do nothing
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
2021-04-26 10:57:50 +02:00
|
|
|
.store(in: &disposeBag)
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
// MARK: - SettingsAppearanceTableViewCellDelegate
|
2021-04-08 13:47:31 +02:00
|
|
|
extension SettingsViewController: SettingsAppearanceTableViewCellDelegate {
|
2022-03-29 11:51:14 +02:00
|
|
|
func settingsAppearanceTableViewCell(
|
|
|
|
_ cell: SettingsAppearanceTableViewCell,
|
|
|
|
didSelectAppearanceMode appearanceMode: SettingsItem.AppearanceMode
|
|
|
|
) {
|
2021-04-26 10:57:50 +02:00
|
|
|
guard let dataSource = viewModel.dataSource else { return }
|
|
|
|
guard let indexPath = tableView.indexPath(for: cell) else { return }
|
|
|
|
let item = dataSource.itemIdentifier(for: indexPath)
|
2022-05-09 05:28:35 +02:00
|
|
|
guard case .appearance = item else { return }
|
2021-10-08 12:47:46 +02:00
|
|
|
|
2022-03-29 11:51:14 +02:00
|
|
|
Task { @MainActor in
|
|
|
|
switch appearanceMode {
|
|
|
|
case .system:
|
|
|
|
UserDefaults.shared.customUserInterfaceStyle = .unspecified
|
|
|
|
case .dark:
|
|
|
|
UserDefaults.shared.customUserInterfaceStyle = .dark
|
|
|
|
case .light:
|
|
|
|
UserDefaults.shared.customUserInterfaceStyle = .light
|
|
|
|
}
|
|
|
|
|
|
|
|
let feedbackGenerator = UIImpactFeedbackGenerator(style: .light)
|
|
|
|
feedbackGenerator.impactOccurred()
|
|
|
|
} // end Task
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
2022-03-29 11:51:14 +02:00
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
extension SettingsViewController: SettingsToggleCellDelegate {
|
2021-04-26 10:57:50 +02:00
|
|
|
func settingsToggleCell(_ cell: SettingsToggleTableViewCell, switchValueDidChange switch: UISwitch) {
|
|
|
|
guard let dataSource = viewModel.dataSource else { return }
|
|
|
|
guard let indexPath = tableView.indexPath(for: cell) else { return }
|
2021-07-07 08:55:41 +02:00
|
|
|
|
|
|
|
let isOn = `switch`.isOn
|
2021-04-26 10:57:50 +02:00
|
|
|
let item = dataSource.itemIdentifier(for: indexPath)
|
2021-07-07 08:55:41 +02:00
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
switch item {
|
2022-03-29 11:51:14 +02:00
|
|
|
case .notification(let record, let switchMode):
|
2021-07-15 14:48:26 +02:00
|
|
|
let managedObjectContext = context.backgroundManagedObjectContext
|
|
|
|
managedObjectContext.performChanges {
|
2022-03-29 11:51:14 +02:00
|
|
|
guard let setting = record.object(in: managedObjectContext) else { return }
|
2021-07-15 14:48:26 +02:00
|
|
|
guard let subscription = setting.activeSubscription else { return }
|
|
|
|
let alert = subscription.alert
|
|
|
|
switch switchMode {
|
|
|
|
case .favorite: alert.update(favourite: isOn)
|
|
|
|
case .follow: alert.update(follow: isOn)
|
|
|
|
case .reblog: alert.update(reblog: isOn)
|
|
|
|
case .mention: alert.update(mention: isOn)
|
|
|
|
}
|
|
|
|
// trigger setting update
|
|
|
|
alert.subscription.setting?.didUpdate(at: Date())
|
|
|
|
}
|
|
|
|
.sink { _ in
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
2022-03-29 11:51:14 +02:00
|
|
|
case .appearancePreference(let record, let appearanceType):
|
|
|
|
switch appearanceType {
|
|
|
|
case .preferredTrueDarkMode:
|
|
|
|
Task {
|
|
|
|
let managedObjectContext = context.managedObjectContext
|
|
|
|
try await managedObjectContext.performChanges {
|
|
|
|
guard let setting = record.object(in: managedObjectContext) else { return }
|
|
|
|
setting.update(preferredTrueBlackDarkMode: isOn)
|
|
|
|
}
|
|
|
|
ThemeService.shared.set(themeName: isOn ? .system : .mastodon)
|
|
|
|
} // end Task
|
|
|
|
}
|
|
|
|
case .preference(let record, let preferenceType):
|
2021-07-07 08:55:41 +02:00
|
|
|
let managedObjectContext = context.backgroundManagedObjectContext
|
|
|
|
managedObjectContext.performChanges {
|
2022-03-29 11:51:14 +02:00
|
|
|
guard let setting = record.object(in: managedObjectContext) else { return }
|
2021-07-22 07:47:56 +02:00
|
|
|
switch preferenceType {
|
|
|
|
case .disableAvatarAnimation:
|
|
|
|
setting.update(preferredStaticAvatar: isOn)
|
2021-07-23 13:33:05 +02:00
|
|
|
case .disableEmojiAnimation:
|
|
|
|
setting.update(preferredStaticEmoji: isOn)
|
2021-07-22 07:47:56 +02:00
|
|
|
case .useDefaultBrowser:
|
|
|
|
setting.update(preferredUsingDefaultBrowser: isOn)
|
2021-07-07 08:55:41 +02:00
|
|
|
}
|
|
|
|
}
|
2021-07-08 09:56:52 +02:00
|
|
|
.sink { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
2021-07-22 07:47:56 +02:00
|
|
|
switch preferenceType {
|
|
|
|
case .disableAvatarAnimation:
|
|
|
|
UserDefaults.shared.preferredStaticAvatar = isOn
|
2021-07-23 13:33:05 +02:00
|
|
|
case .disableEmojiAnimation:
|
|
|
|
UserDefaults.shared.preferredStaticEmoji = isOn
|
2021-07-22 07:47:56 +02:00
|
|
|
case .useDefaultBrowser:
|
|
|
|
UserDefaults.shared.preferredUsingDefaultBrowser = isOn
|
|
|
|
}
|
2021-07-08 09:56:52 +02:00
|
|
|
case .failure(let error):
|
|
|
|
assertionFailure(error.localizedDescription)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
2021-04-26 10:57:50 +02:00
|
|
|
default:
|
2021-07-08 09:56:52 +02:00
|
|
|
assertionFailure()
|
2021-04-26 10:57:50 +02:00
|
|
|
break
|
|
|
|
}
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 13:10:27 +02:00
|
|
|
// MARK: - MetaLabelDelegate
|
|
|
|
extension SettingsViewController: MetaLabelDelegate {
|
|
|
|
func metaLabel(_ metaLabel: MetaLabel, didSelectMeta meta: Meta) {
|
|
|
|
switch meta {
|
|
|
|
case .url(_, _, let url, _):
|
|
|
|
guard let url = URL(string: url) else { return }
|
|
|
|
coordinator.present(scene: .safari(url: url), from: self, transition: .safariPresent(animated: true, completion: nil))
|
|
|
|
default:
|
|
|
|
assertionFailure()
|
|
|
|
}
|
2021-04-08 13:47:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-13 11:39:38 +02:00
|
|
|
// MARK: - ASAuthorizationControllerPresentationContextProviding
|
|
|
|
extension SettingsViewController: ASWebAuthenticationPresentationContextProviding {
|
|
|
|
func presentationAnchor(for session: ASWebAuthenticationSession) -> ASPresentationAnchor {
|
|
|
|
return view.window!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 10:45:01 +02:00
|
|
|
// MARK: - UIAdaptivePresentationControllerDelegate
|
|
|
|
extension SettingsViewController: UIAdaptivePresentationControllerDelegate {
|
|
|
|
func adaptivePresentationStyle(for controller: UIPresentationController, traitCollection: UITraitCollection) -> UIModalPresentationStyle {
|
2021-09-26 12:29:08 +02:00
|
|
|
return .pageSheet
|
2021-05-19 10:45:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension SettingsViewController {
|
|
|
|
|
|
|
|
var closeKeyCommand: UIKeyCommand {
|
|
|
|
UIKeyCommand(
|
|
|
|
title: L10n.Scene.Settings.Keyboard.closeSettingsWindow,
|
|
|
|
image: nil,
|
|
|
|
action: #selector(SettingsViewController.closeSettingsWindowKeyCommandHandler(_:)),
|
|
|
|
input: "w",
|
|
|
|
modifierFlags: .command,
|
|
|
|
propertyList: nil,
|
|
|
|
alternates: [],
|
|
|
|
discoverabilityTitle: nil,
|
|
|
|
attributes: [],
|
|
|
|
state: .off
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
override var keyCommands: [UIKeyCommand]? {
|
|
|
|
return [closeKeyCommand]
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc private func closeSettingsWindowKeyCommandHandler(_ sender: UIKeyCommand) {
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
dismiss(animated: true, completion: nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-04-08 13:47:31 +02:00
|
|
|
#if canImport(SwiftUI) && DEBUG
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct SettingsViewController_Previews: PreviewProvider {
|
|
|
|
|
|
|
|
static var previews: some View {
|
|
|
|
Group {
|
|
|
|
UIViewControllerPreview { () -> UIViewController in
|
|
|
|
return SettingsViewController()
|
|
|
|
}
|
|
|
|
.previewLayout(.fixed(width: 390, height: 844))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|