forked from zelo72/mastodon-ios
596 lines
24 KiB
Swift
596 lines
24 KiB
Swift
//
|
|
// SettingsViewController.swift
|
|
// Mastodon
|
|
//
|
|
// Created by ihugo on 2021/4/7.
|
|
//
|
|
|
|
import os.log
|
|
import UIKit
|
|
import Combine
|
|
import CoreData
|
|
import CoreDataStack
|
|
import MastodonSDK
|
|
import MetaTextKit
|
|
import MastodonMeta
|
|
import AuthenticationServices
|
|
|
|
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>()
|
|
var notificationPolicySubscription: AnyCancellable?
|
|
|
|
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
|
|
let noOne = L10n.Scene.Settings.Section.Notifications.Trigger.noone
|
|
let menu = UIMenu(
|
|
image: nil,
|
|
identifier: nil,
|
|
options: .displayInline,
|
|
children: [
|
|
UIAction(title: anyone, image: UIImage(systemName: "person.3"), attributes: []) { [weak self] action in
|
|
self?.updateTrigger(policy: .all)
|
|
},
|
|
UIAction(title: follower, image: UIImage(systemName: "person.crop.circle.badge.plus"), attributes: []) { [weak self] action in
|
|
self?.updateTrigger(policy: .follower)
|
|
},
|
|
UIAction(title: follow, image: UIImage(systemName: "person.crop.circle.badge.checkmark"), attributes: []) { [weak self] action in
|
|
self?.updateTrigger(policy: .followed)
|
|
},
|
|
UIAction(title: noOne, image: UIImage(systemName: "nosign"), attributes: []) { [weak self] action in
|
|
self?.updateTrigger(policy: .none)
|
|
},
|
|
]
|
|
)
|
|
return menu
|
|
}
|
|
|
|
private let notifySectionHeaderStackView: UIStackView = {
|
|
let view = UIStackView()
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
view.isLayoutMarginsRelativeArrangement = true
|
|
view.axis = .horizontal
|
|
view.spacing = 4
|
|
return view
|
|
}()
|
|
|
|
let notifyLabel = UILabel()
|
|
private(set) lazy var notifySectionHeader: UIView = {
|
|
let view = notifySectionHeaderStackView
|
|
notifyLabel.translatesAutoresizingMaskIntoConstraints = false
|
|
notifyLabel.adjustsFontForContentSizeCategory = true
|
|
notifyLabel.font = UIFontMetrics(forTextStyle: .headline).scaledFont(for: UIFont.systemFont(ofSize: 20, weight: .semibold))
|
|
notifyLabel.textColor = Asset.Colors.Label.primary.color
|
|
notifyLabel.text = L10n.Scene.Settings.Section.Notifications.Trigger.title
|
|
view.addArrangedSubview(notifyLabel)
|
|
view.addArrangedSubview(whoButton)
|
|
whoButton.setContentHuggingPriority(.defaultHigh + 1, for: .horizontal)
|
|
whoButton.setContentHuggingPriority(.defaultHigh + 1, for: .vertical)
|
|
return view
|
|
}()
|
|
|
|
private(set) lazy var whoButton: UIButton = {
|
|
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)
|
|
whoButton.titleLabel?.adjustsFontForContentSizeCategory = true
|
|
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
|
|
return whoButton
|
|
}()
|
|
|
|
private(set) lazy var tableView: UITableView = {
|
|
// init with a frame to fix a conflict ('UIView-Encapsulated-Layout-Width' UIStackView:0x7f8c2b6c0590.width == 0)
|
|
let tableView = UITableView(frame: CGRect(x: 0, y: 0, width: 320, height: 320), style: .grouped)
|
|
tableView.translatesAutoresizingMaskIntoConstraints = false
|
|
tableView.delegate = self
|
|
tableView.rowHeight = UITableView.automaticDimension
|
|
tableView.backgroundColor = .clear
|
|
tableView.separatorColor = ThemeService.shared.currentTheme.value.separator
|
|
|
|
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))
|
|
return tableView
|
|
}()
|
|
|
|
let tableFooterLabel = MetaLabel(style: .settingTableFooter)
|
|
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
|
|
}()
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
setupView()
|
|
bindViewModel()
|
|
|
|
viewModel.viewDidLoad.send()
|
|
}
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
super.viewWillAppear(animated)
|
|
|
|
// make large title not collapsed
|
|
navigationController?.navigationBar.sizeToFit()
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
|
|
super.traitCollectionDidChange(previousTraitCollection)
|
|
|
|
updateSectionHeaderStackViewLayout()
|
|
}
|
|
|
|
|
|
// MAKR: - Private methods
|
|
private func updateSectionHeaderStackViewLayout() {
|
|
// accessibility
|
|
if traitCollection.preferredContentSizeCategory < .accessibilityMedium {
|
|
notifySectionHeaderStackView.axis = .horizontal
|
|
notifyLabel.numberOfLines = 1
|
|
} else {
|
|
notifySectionHeaderStackView.axis = .vertical
|
|
notifyLabel.numberOfLines = 0
|
|
}
|
|
}
|
|
|
|
private func bindViewModel() {
|
|
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 {
|
|
assertionFailure()
|
|
}
|
|
}
|
|
}
|
|
.store(in: &disposeBag)
|
|
|
|
viewModel.currentInstance
|
|
.receive(on: RunLoop.main)
|
|
.sink { [weak self] instance in
|
|
guard let self = self else { return }
|
|
let version = instance?.version ?? "-"
|
|
let link = #"<a href="https://github.com/mastodon/mastodon">mastodon/mastodon</a>"#
|
|
let content = L10n.Scene.Settings.Footer.mastodonDescription(link, version)
|
|
let mastodonContent = MastodonContent(content: content, emojis: [:])
|
|
do {
|
|
let metaContent = try MastodonMetaContent.convert(document: mastodonContent)
|
|
self.tableFooterLabel.configure(content: metaContent)
|
|
} catch {
|
|
let metaContent = PlaintextMetaContent(string: "")
|
|
self.tableFooterLabel.configure(content: metaContent)
|
|
assertionFailure()
|
|
}
|
|
}
|
|
.store(in: &disposeBag)
|
|
}
|
|
|
|
private func setupView() {
|
|
setupBackgroundColor(theme: ThemeService.shared.currentTheme.value)
|
|
ThemeService.shared.currentTheme
|
|
.receive(on: RunLoop.main)
|
|
.sink { [weak self] theme in
|
|
guard let self = self else { return }
|
|
self.setupBackgroundColor(theme: theme)
|
|
}
|
|
.store(in: &disposeBag)
|
|
|
|
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),
|
|
])
|
|
setupTableView()
|
|
|
|
updateSectionHeaderStackViewLayout()
|
|
}
|
|
|
|
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
|
|
}
|
|
})
|
|
|
|
tableView.separatorColor = theme.separator
|
|
}
|
|
|
|
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() {
|
|
viewModel.setupDiffableDataSource(
|
|
for: tableView,
|
|
settingsAppearanceTableViewCellDelegate: self,
|
|
settingsToggleCellDelegate: self
|
|
)
|
|
tableView.tableFooterView = tableFooterView
|
|
}
|
|
|
|
func alertToSignout() {
|
|
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 }
|
|
self.signOut()
|
|
}
|
|
alertController.addAction(cancelAction)
|
|
alertController.addAction(signOutAction)
|
|
self.coordinator.present(
|
|
scene: .alertController(alertController: alertController),
|
|
from: self,
|
|
transition: .alertController(animated: true, completion: nil)
|
|
)
|
|
}
|
|
|
|
func signOut() {
|
|
guard let activeMastodonAuthenticationBox = context.authenticationService.activeMastodonAuthenticationBox.value else {
|
|
return
|
|
}
|
|
|
|
context.authenticationService.signOutMastodonUser(
|
|
domain: activeMastodonAuthenticationBox.domain,
|
|
userID: activeMastodonAuthenticationBox.userID
|
|
)
|
|
.receive(on: DispatchQueue.main)
|
|
.sink { [weak self] result in
|
|
guard let self = self else { return }
|
|
switch result {
|
|
case .failure(let error):
|
|
assertionFailure(error.localizedDescription)
|
|
case .success(let isSignOut):
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: sign out %s", ((#file as NSString).lastPathComponent), #line, #function, isSignOut ? "success" : "fail")
|
|
guard isSignOut else { return }
|
|
self.coordinator.setup()
|
|
self.coordinator.setupOnboardingIfNeeds(animated: true)
|
|
}
|
|
}
|
|
.store(in: &disposeBag)
|
|
}
|
|
|
|
deinit {
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s:", ((#file as NSString).lastPathComponent), #line, #function)
|
|
}
|
|
|
|
}
|
|
|
|
// Mark: - Actions
|
|
extension SettingsViewController {
|
|
@objc private func doneButtonDidClick() {
|
|
dismiss(animated: true, completion: nil)
|
|
}
|
|
}
|
|
|
|
extension SettingsViewController: UITableViewDelegate {
|
|
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
|
|
let sections = viewModel.dataSource.snapshot().sectionIdentifiers
|
|
guard section < sections.count else { return nil }
|
|
|
|
let sectionIdentifier = sections[section]
|
|
|
|
let header: SettingsSectionHeader
|
|
switch sectionIdentifier {
|
|
case .notifications:
|
|
header = SettingsSectionHeader(
|
|
frame: CGRect(x: 0, y: 0, width: 375, height: 66),
|
|
customView: notifySectionHeader)
|
|
header.update(title: sectionIdentifier.title)
|
|
default:
|
|
header = SettingsSectionHeader(frame: CGRect(x: 0, y: 0, width: 375, height: 66))
|
|
header.update(title: sectionIdentifier.title)
|
|
}
|
|
header.preservesSuperviewLayoutMargins = true
|
|
|
|
return header
|
|
}
|
|
|
|
// remove the gap of table's footer
|
|
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
|
|
return UIView()
|
|
}
|
|
|
|
// remove the gap of table's footer
|
|
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
|
|
return CGFloat.leastNonzeroMagnitude
|
|
}
|
|
|
|
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
|
guard let dataSource = viewModel.dataSource else { return }
|
|
guard let item = dataSource.itemIdentifier(for: indexPath) else { return }
|
|
|
|
let feedbackGenerator = UIImpactFeedbackGenerator(style: .light)
|
|
|
|
switch item {
|
|
case .appearance:
|
|
feedbackGenerator.impactOccurred()
|
|
case .notification:
|
|
// do nothing
|
|
break
|
|
case .preference:
|
|
// do nothing
|
|
break
|
|
case .boringZone(let link), .spicyZone(let link):
|
|
feedbackGenerator.impactOccurred()
|
|
switch link {
|
|
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)
|
|
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 }
|
|
let byteCountFormatted = AppContext.byteCountFormatter.string(fromByteCount: Int64(byteCount))
|
|
let alertController = UIAlertController(
|
|
title: L10n.Common.Alerts.CleanCache.title,
|
|
message: L10n.Common.Alerts.CleanCache.message(byteCountFormatted),
|
|
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:
|
|
feedbackGenerator.impactOccurred()
|
|
alertToSignout()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Update setting into core data
|
|
extension SettingsViewController {
|
|
func updateTrigger(policy: Mastodon.API.Subscriptions.Policy) {
|
|
let objectID = self.viewModel.setting.value.objectID
|
|
let managedObjectContext = context.backgroundManagedObjectContext
|
|
|
|
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)
|
|
}
|
|
.sink { _ in
|
|
// do nothing
|
|
} receiveValue: { _ in
|
|
// do nohting
|
|
}
|
|
.store(in: &disposeBag)
|
|
}
|
|
}
|
|
|
|
// MARK: - SettingsAppearanceTableViewCellDelegate
|
|
extension SettingsViewController: SettingsAppearanceTableViewCellDelegate {
|
|
func settingsAppearanceCell(_ cell: SettingsAppearanceTableViewCell, didSelectAppearanceMode appearanceMode: SettingsItem.AppearanceMode) {
|
|
guard let dataSource = viewModel.dataSource else { return }
|
|
guard let indexPath = tableView.indexPath(for: cell) else { return }
|
|
let item = dataSource.itemIdentifier(for: indexPath)
|
|
guard case let .appearance(settingObjectID) = item else { return }
|
|
|
|
context.managedObjectContext.performChanges {
|
|
let setting = self.context.managedObjectContext.object(with: settingObjectID) as! Setting
|
|
setting.update(appearanceRaw: appearanceMode.rawValue)
|
|
}
|
|
.sink { _ in
|
|
// do nothing
|
|
}.store(in: &disposeBag)
|
|
}
|
|
}
|
|
|
|
extension SettingsViewController: SettingsToggleCellDelegate {
|
|
func settingsToggleCell(_ cell: SettingsToggleTableViewCell, switchValueDidChange switch: UISwitch) {
|
|
guard let dataSource = viewModel.dataSource else { return }
|
|
guard let indexPath = tableView.indexPath(for: cell) else { return }
|
|
|
|
let isOn = `switch`.isOn
|
|
let item = dataSource.itemIdentifier(for: indexPath)
|
|
|
|
switch item {
|
|
case .notification(let settingObjectID, let switchMode):
|
|
let managedObjectContext = context.backgroundManagedObjectContext
|
|
managedObjectContext.performChanges {
|
|
let setting = managedObjectContext.object(with: settingObjectID) as! Setting
|
|
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)
|
|
case .preference(let settingObjectID, let preferenceType):
|
|
let managedObjectContext = context.backgroundManagedObjectContext
|
|
managedObjectContext.performChanges {
|
|
let setting = managedObjectContext.object(with: settingObjectID) as! Setting
|
|
switch preferenceType {
|
|
case .darkMode:
|
|
setting.update(preferredTrueBlackDarkMode: isOn)
|
|
case .disableAvatarAnimation:
|
|
setting.update(preferredStaticAvatar: isOn)
|
|
case .disableEmojiAnimation:
|
|
setting.update(preferredStaticEmoji: isOn)
|
|
case .useDefaultBrowser:
|
|
setting.update(preferredUsingDefaultBrowser: isOn)
|
|
}
|
|
}
|
|
.sink { result in
|
|
switch result {
|
|
case .success:
|
|
switch preferenceType {
|
|
case .darkMode:
|
|
ThemeService.shared.set(themeName: isOn ? .system : .mastodon)
|
|
case .disableAvatarAnimation:
|
|
UserDefaults.shared.preferredStaticAvatar = isOn
|
|
case .disableEmojiAnimation:
|
|
UserDefaults.shared.preferredStaticEmoji = isOn
|
|
case .useDefaultBrowser:
|
|
UserDefaults.shared.preferredUsingDefaultBrowser = isOn
|
|
}
|
|
case .failure(let error):
|
|
assertionFailure(error.localizedDescription)
|
|
break
|
|
}
|
|
}
|
|
.store(in: &disposeBag)
|
|
default:
|
|
assertionFailure()
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// 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()
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - ASAuthorizationControllerPresentationContextProviding
|
|
extension SettingsViewController: ASWebAuthenticationPresentationContextProviding {
|
|
func presentationAnchor(for session: ASWebAuthenticationSession) -> ASPresentationAnchor {
|
|
return view.window!
|
|
}
|
|
}
|
|
|
|
// MARK: - UIAdaptivePresentationControllerDelegate
|
|
extension SettingsViewController: UIAdaptivePresentationControllerDelegate {
|
|
func adaptivePresentationStyle(for controller: UIPresentationController, traitCollection: UITraitCollection) -> UIModalPresentationStyle {
|
|
return .formSheet
|
|
}
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
}
|
|
|
|
#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
|