|
|
@ -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))
|
|
|
|