mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-13 03:51:01 +00:00
Account menu improvements
This commit is contained in:
parent
fd09e6ef17
commit
8fdbfaf01e
6 changed files with 66 additions and 17 deletions
|
@ -23,6 +23,7 @@
|
|||
"account.follows-you" = "Follows you";
|
||||
"account.header.accessibility-label-%@" = "Header image: %@";
|
||||
"account.hide-reblogs" = "Hide boosts";
|
||||
"account.hide-reblogs.confirm-%@" = "Hide boosts from %@?";
|
||||
"account.locked.accessibility-label" = "Locked account";
|
||||
"account.mute" = "Mute";
|
||||
"account.mute.indefinite" = "Indefnite";
|
||||
|
@ -41,10 +42,12 @@
|
|||
"account.statuses-and-replies.toot" = "Toots & Replies";
|
||||
"account.media" = "Media";
|
||||
"account.show-reblogs" = "Show boosts";
|
||||
"account.show-reblogs.confirm-%@" = "Show boosts from %@?";
|
||||
"account.unavailable" = "Profile unavailable";
|
||||
"account.unblock" = "Unblock";
|
||||
"account.unblock.confirm-%@" = "Unblock %@?";
|
||||
"account.unfollow" = "Unfollow";
|
||||
"account.unfollow.confirm-%@" = "Unfollow %@?";
|
||||
"account.unmute" = "Unmute";
|
||||
"account.unmute.confirm-%@" = "Unmute %@?";
|
||||
"activity.open-in-default-browser" = "Open in default browser";
|
||||
|
@ -251,6 +254,7 @@
|
|||
"search.scope.statuses.post" = "Posts";
|
||||
"search.scope.statuses.toot" = "Toots";
|
||||
"search.scope.tags" = "Hashtags";
|
||||
"share" = "Share";
|
||||
"share-extension-error.no-account-found" = "No account found";
|
||||
"status.accessibility.view-author-profile" = "View author's profile";
|
||||
"status.accessibility.view-reblogger-profile" = "View booster's profile";
|
||||
|
|
|
@ -73,20 +73,24 @@ final class ProfileViewController: TableViewController {
|
|||
private extension ProfileViewController {
|
||||
// swiftlint:disable:next function_body_length
|
||||
func menu(accountViewModel: AccountViewModel, relationship: Relationship) -> UIMenu {
|
||||
var actions = [UIAction]()
|
||||
var actions = [UIAction(
|
||||
title: NSLocalizedString("share", comment: ""),
|
||||
image: UIImage(systemName: "square.and.arrow.up")) { _ in
|
||||
accountViewModel.share()
|
||||
}]
|
||||
|
||||
if relationship.following {
|
||||
if relationship.showingReblogs {
|
||||
actions.append(UIAction(
|
||||
title: NSLocalizedString("account.hide-reblogs", comment: ""),
|
||||
image: UIImage(systemName: "arrow.2.squarepath")) { _ in
|
||||
accountViewModel.hideReblogs()
|
||||
accountViewModel.confirmHideReblogs()
|
||||
})
|
||||
} else {
|
||||
actions.append(UIAction(
|
||||
title: NSLocalizedString("account.show-reblogs", comment: ""),
|
||||
image: UIImage(systemName: "arrow.2.squarepath")) { _ in
|
||||
accountViewModel.showReblogs()
|
||||
accountViewModel.confirmShowReblogs()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
@ -443,6 +443,12 @@ private extension TableViewController {
|
|||
compose(inReplyToViewModel: inReplyToViewModel, redraft: redraft)
|
||||
case let .confirmDelete(statusViewModel, redraft):
|
||||
confirmDelete(statusViewModel: statusViewModel, redraft: redraft)
|
||||
case let .confirmUnfollow(accountViewModel):
|
||||
confirmUnfollow(accountViewModel: accountViewModel)
|
||||
case let .confirmHideReblogs(accountViewModel):
|
||||
confirmHideReblogs(accountViewModel: accountViewModel)
|
||||
case let .confirmShowReblogs(accountViewModel):
|
||||
confirmShowReblogs(accountViewModel: accountViewModel)
|
||||
case let .confirmMute(accountViewModel):
|
||||
confirmMute(muteViewModel: accountViewModel.muteViewModel())
|
||||
case let .confirmUnmute(accountViewModel):
|
||||
|
@ -575,6 +581,30 @@ private extension TableViewController {
|
|||
present(alertController, animated: true)
|
||||
}
|
||||
|
||||
func confirmUnfollow(accountViewModel: AccountViewModel) {
|
||||
confirm(message: String.localizedStringWithFormat(
|
||||
NSLocalizedString("account.unfollow.confirm-%@", comment: ""),
|
||||
accountViewModel.accountName)) {
|
||||
accountViewModel.unfollow()
|
||||
}
|
||||
}
|
||||
|
||||
func confirmHideReblogs(accountViewModel: AccountViewModel) {
|
||||
confirm(message: String.localizedStringWithFormat(
|
||||
NSLocalizedString("account.hide-reblogs.confirm-%@", comment: ""),
|
||||
accountViewModel.accountName)) {
|
||||
accountViewModel.hideReblogs()
|
||||
}
|
||||
}
|
||||
|
||||
func confirmShowReblogs(accountViewModel: AccountViewModel) {
|
||||
confirm(message: String.localizedStringWithFormat(
|
||||
NSLocalizedString("account.show-reblogs.confirm-%@", comment: ""),
|
||||
accountViewModel.accountName)) {
|
||||
accountViewModel.showReblogs()
|
||||
}
|
||||
}
|
||||
|
||||
func confirmMute(muteViewModel: MuteViewModel) {
|
||||
let muteViewController = MuteViewController(viewModel: muteViewModel)
|
||||
let navigationController = UINavigationController(rootViewController: muteViewController)
|
||||
|
|
|
@ -11,6 +11,9 @@ public enum CollectionItemEvent {
|
|||
case attachment(AttachmentViewModel, StatusViewModel)
|
||||
case compose(inReplyTo: StatusViewModel?, redraft: Status?)
|
||||
case confirmDelete(StatusViewModel, redraft: Bool)
|
||||
case confirmUnfollow(AccountViewModel)
|
||||
case confirmHideReblogs(AccountViewModel)
|
||||
case confirmShowReblogs(AccountViewModel)
|
||||
case confirmMute(AccountViewModel)
|
||||
case confirmUnmute(AccountViewModel)
|
||||
case confirmBlock(AccountViewModel)
|
||||
|
|
|
@ -103,14 +103,32 @@ public extension AccountViewModel {
|
|||
ignorableOutputEvent(accountService.follow())
|
||||
}
|
||||
|
||||
func confirmUnfollow() {
|
||||
eventsSubject.send(Just(.confirmUnfollow(self)).setFailureType(to: Error.self).eraseToAnyPublisher())
|
||||
}
|
||||
|
||||
func unfollow() {
|
||||
ignorableOutputEvent(accountService.unfollow())
|
||||
}
|
||||
|
||||
func share() {
|
||||
guard let url = URL(string: accountService.account.url) else { return }
|
||||
|
||||
eventsSubject.send(Just(.share(url)).setFailureType(to: Error.self).eraseToAnyPublisher())
|
||||
}
|
||||
|
||||
func confirmHideReblogs() {
|
||||
eventsSubject.send(Just(.confirmHideReblogs(self)).setFailureType(to: Error.self).eraseToAnyPublisher())
|
||||
}
|
||||
|
||||
func hideReblogs() {
|
||||
ignorableOutputEvent(accountService.hideReblogs())
|
||||
}
|
||||
|
||||
func confirmShowReblogs() {
|
||||
eventsSubject.send(Just(.confirmShowReblogs(self)).setFailureType(to: Error.self).eraseToAnyPublisher())
|
||||
}
|
||||
|
||||
func showReblogs() {
|
||||
ignorableOutputEvent(accountService.showReblogs())
|
||||
}
|
||||
|
|
|
@ -272,20 +272,10 @@ private extension AccountHeaderView {
|
|||
systemName: "checkmark",
|
||||
withConfiguration: UIImage.SymbolConfiguration(scale: .small)),
|
||||
for: .normal)
|
||||
unfollowButton.setTitle(NSLocalizedString("account.following", comment: ""), for: .normal)
|
||||
unfollowButton.showsMenuAsPrimaryAction = true
|
||||
unfollowButton.menu = UIMenu(children: [UIDeferredMenuElement { [weak self] completion in
|
||||
guard let accountViewModel = self?.viewModel.accountViewModel else { return }
|
||||
|
||||
let unfollowAction = UIAction(
|
||||
title: self?.unfollowButton.title(for: .normal) ?? "",
|
||||
image: UIImage(systemName: "person.badge.minus"),
|
||||
attributes: .destructive) { _ in
|
||||
accountViewModel.unfollow()
|
||||
}
|
||||
|
||||
completion([unfollowAction])
|
||||
}])
|
||||
unfollowButton.setTitle(NSLocalizedString("account.unfollow", comment: ""), for: .normal)
|
||||
unfollowButton.addAction(
|
||||
UIAction { [weak self] _ in self?.viewModel.accountViewModel?.confirmUnfollow() },
|
||||
for: .touchUpInside)
|
||||
|
||||
addSubview(baseStackView)
|
||||
baseStackView.translatesAutoresizingMaskIntoConstraints = false
|
||||
|
|
Loading…
Reference in a new issue