fix unblock modals

pull/1023/head
Ryan ZHAO 7 months ago
parent b39845f265
commit 7acd299858

@ -155,8 +155,8 @@ extension ConversationVC:
self.viewModel.threadData.displayName
),
body: .attributedText(
"blockUnblockDescription"
.put(key: "name", value: self.viewModel.threadData.displayName)
"blockUnblockName"
.put(key: "name", value: viewModel.threadData.displayName)
.localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize))
),
confirmTitle: "blockUnblock".localized(),

@ -697,7 +697,12 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi
threadViewModel.displayName
)
}(),
body: (threadViewModel.threadIsBlocked == true ? .none :
body: (threadViewModel.threadIsBlocked == true ?
.attributedText(
"blockUnblockName"
.put(key: "name", value: threadViewModel.displayName)
.localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize))
) :
.attributedText(
"blockDescription"
.put(key: "name", value: threadViewModel.displayName)

@ -180,27 +180,28 @@ public class BlockedContactsViewModel: SessionTableViewModel, NavigatableStateHo
return info.title?.text
}
let confirmationTitle: String = {
let confirmationBody: NSAttributedString = {
let name: String = contactNames.first ?? ""
switch contactNames.count {
case 1:
return "blockUnblockName"
.put(key: "name", value: name)
.localized()
.localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize))
case 2:
return "blockUnblockNameTwo"
.put(key: "name", value: name)
.localized()
.localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize))
default:
return "blockUnblockNameMultiple"
.put(key: "name", value: name)
.put(key: "count", value: contactNames.count - 1)
.localized()
.localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize))
}
}()
let confirmationModal: ConfirmationModal = ConfirmationModal(
info: ConfirmationModal.Info(
title: confirmationTitle,
title: "blockUnblock".localized(),
body: .attributedText(confirmationBody),
confirmTitle: "blockUnblock".localized(),
confirmStyle: .danger,
cancelStyle: .alert_text

Loading…
Cancel
Save