fix group leaving modal to respect group admins

pull/1023/head
Ryan ZHAO 7 months ago
parent d21a0815fa
commit 6f5d452b35

@ -516,7 +516,7 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
confirmationInfo: ConfirmationModal.Info( confirmationInfo: ConfirmationModal.Info(
title: "groupLeave".localized(), title: "groupLeave".localized(),
body: .attributedText( body: .attributedText(
"groupDeleteDescription" (currentUserIsClosedGroupAdmin ? "groupDeleteDescription" : "groupLeaveDescription")
.put(key: "group_name", value: threadViewModel.displayName) .put(key: "group_name", value: threadViewModel.displayName)
.localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize))
), ),

@ -416,8 +416,8 @@ public extension UIContextualAction {
}() }()
let confirmationModalExplanation: NSAttributedString = { let confirmationModalExplanation: NSAttributedString = {
switch threadViewModel.threadVariant { switch (threadViewModel.threadVariant, threadViewModel.currentUserIsClosedGroupAdmin) {
case .legacyGroup, .group: case (.legacyGroup, true), (.group, true):
return "groupDeleteDescription" return "groupDeleteDescription"
.put(key: "group_name", value: threadViewModel.displayName) .put(key: "group_name", value: threadViewModel.displayName)
.localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize))
@ -516,18 +516,19 @@ public extension UIContextualAction {
) )
} }
guard threadViewModel.currentUserIsClosedGroupAdmin == false else {
return "groupDeleteDescription"
.put(key: "group_name", value: threadViewModel.displayName)
.localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize))
}
switch threadViewModel.threadVariant { switch threadViewModel.threadVariant {
case .contact: case .contact:
return "conversationsDeleteDescription" return "conversationsDeleteDescription"
.put(key: "name", value: threadViewModel.displayName) .put(key: "name", value: threadViewModel.displayName)
.localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize))
case .legacyGroup, .group: default:
return "groupDeleteDescription"
.put(key: "group_name", value: threadViewModel.displayName)
.localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize))
case .community:
return "groupLeaveDescription" return "groupLeaveDescription"
.put(key: "group_name", value: threadViewModel.displayName) .put(key: "group_name", value: threadViewModel.displayName)
.localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize))

Loading…
Cancel
Save