fix some modals

pull/1023/head
Ryan ZHAO 7 months ago
parent 93e91e5d40
commit f8fb647752

@ -2273,9 +2273,10 @@ extension ConversationVC:
let modal: ConfirmationModal = ConfirmationModal( let modal: ConfirmationModal = ConfirmationModal(
targetView: self.view, targetView: self.view,
info: ConfirmationModal.Info( info: ConfirmationModal.Info(
title: Constants.app_name, title: "banUser".localized(),
body: .text("This will ban the selected user from this room. It won't ban them from other rooms."), body: .text("communityBanDescription".localized()),
confirmTitle: "okay".localized(), confirmTitle: "theContinue".localized(),
confirmStyle: .danger,
cancelStyle: .alert_text, cancelStyle: .alert_text,
onConfirm: { [weak self] _ in onConfirm: { [weak self] _ in
Storage.shared Storage.shared
@ -2334,9 +2335,10 @@ extension ConversationVC:
let modal: ConfirmationModal = ConfirmationModal( let modal: ConfirmationModal = ConfirmationModal(
targetView: self.view, targetView: self.view,
info: ConfirmationModal.Info( info: ConfirmationModal.Info(
title: Constants.app_name, title: "banDeleteAll".localized(),
body: .text("This will ban the selected user from this room and delete all messages sent by them. It won't ban them from other rooms or delete the messages they sent there."), body: .text("communityBanDeleteDescription".localized()),
confirmTitle: "okay".localized(), confirmTitle: "theContinue".localized(),
confirmStyle: .danger,
cancelStyle: .alert_text, cancelStyle: .alert_text,
onConfirm: { [weak self] _ in onConfirm: { [weak self] _ in
Storage.shared Storage.shared

@ -84939,6 +84939,28 @@
} }
} }
}, },
"communityBanDeleteDescription" : {
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "This will ban the selected user from this Community and delete all their messages. Are you sure you want to continue?"
}
}
}
},
"communityBanDescription" : {
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "This will ban the selected user from this Community. Are you sure you want to continue?"
}
}
}
},
"communityEnterUrl" : { "communityEnterUrl" : {
"extractionState" : "manual", "extractionState" : "manual",
"localizations" : { "localizations" : {

@ -298,7 +298,6 @@ public class SessionCell: UITableViewCell {
leftAccessoryView.alpha = 1 leftAccessoryView.alpha = 1
leftAccessoryFillConstraint.isActive = false leftAccessoryFillConstraint.isActive = false
titleLabel.text = "" titleLabel.text = ""
titleLabel.textAlignment = .left
titleLabel.themeTextColor = .textPrimary titleLabel.themeTextColor = .textPrimary
titleLabel.alpha = 1 titleLabel.alpha = 1
titleTextField.text = "" titleTextField.text = ""

@ -204,7 +204,7 @@ public class ConfirmationModal: Modal, UITextFieldDelegate {
} }
private func layoutExplanationLabel() { private func layoutExplanationLabel() {
let labelWidth = view.frame.width - 2 * Values.veryLargeSpacing let labelWidth = view.frame.width - 4 * Values.veryLargeSpacing
let maxLabelSize = CGSize(width: labelWidth, height: CGFloat.greatestFiniteMagnitude) let maxLabelSize = CGSize(width: labelWidth, height: CGFloat.greatestFiniteMagnitude)
let expectedLabelSize = explanationLabel.sizeThatFits(maxLabelSize) let expectedLabelSize = explanationLabel.sizeThatFits(maxLabelSize)
let lineHeight = explanationLabel.font.lineHeight let lineHeight = explanationLabel.font.lineHeight

Loading…
Cancel
Save