|
|
|
@ -87,15 +87,12 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga
|
|
|
|
|
|
|
|
|
|
let title: String = "DISAPPEARING_MESSAGES".localized()
|
|
|
|
|
lazy var subtitle: String? = {
|
|
|
|
|
guard Features.useNewDisappearingMessagesConfig else {
|
|
|
|
|
return (isNoteToSelf ? nil : "DISAPPERING_MESSAGES_SUBTITLE_LEGACY".localized())
|
|
|
|
|
switch (threadVariant, isNoteToSelf) {
|
|
|
|
|
case (.contact, false): return "DISAPPERING_MESSAGES_SUBTITLE_CONTACTS".localized()
|
|
|
|
|
case (.group, _): return "DISAPPERING_MESSAGES_SUBTITLE_GROUPS".localized()
|
|
|
|
|
case (.community, _): return nil
|
|
|
|
|
case (.legacyGroup, _), (_, true): return "DISAPPERING_MESSAGES_SUBTITLE_GROUPS".localized()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if threadVariant == .contact && !isNoteToSelf {
|
|
|
|
|
return "DISAPPERING_MESSAGES_SUBTITLE_CONTACTS".localized()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "DISAPPERING_MESSAGES_SUBTITLE_GROUPS".localized()
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
lazy var footerButtonInfo: AnyPublisher<SessionButton.Info?, Never> = shouldShowConfirmButton
|
|
|
|
@ -149,34 +146,6 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga
|
|
|
|
|
self?.currentSelection.send(updatedConfig)
|
|
|
|
|
}
|
|
|
|
|
),
|
|
|
|
|
(Features.useNewDisappearingMessagesConfig ? nil :
|
|
|
|
|
SessionCell.Info(
|
|
|
|
|
id: "DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE".localized(),
|
|
|
|
|
title: "DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE".localized(),
|
|
|
|
|
subtitle: "DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION".localized(),
|
|
|
|
|
rightAccessory: .radio(
|
|
|
|
|
isSelected: {
|
|
|
|
|
(self?.currentSelection.value.isEnabled == true) &&
|
|
|
|
|
!Features.useNewDisappearingMessagesConfig
|
|
|
|
|
}
|
|
|
|
|
),
|
|
|
|
|
onTap: {
|
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration = {
|
|
|
|
|
if (config.isEnabled == true && config.type == .disappearAfterRead) {
|
|
|
|
|
return config
|
|
|
|
|
}
|
|
|
|
|
return currentSelection
|
|
|
|
|
.with(
|
|
|
|
|
isEnabled: true,
|
|
|
|
|
durationSeconds: DisappearingMessagesConfiguration.DefaultDuration.legacy.seconds,
|
|
|
|
|
type: .disappearAfterRead // Default for 1-1
|
|
|
|
|
)
|
|
|
|
|
}()
|
|
|
|
|
self?.shouldShowConfirmButton.send(updatedConfig != config)
|
|
|
|
|
self?.currentSelection.send(updatedConfig)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
SessionCell.Info(
|
|
|
|
|
id: "DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE".localized(),
|
|
|
|
|
title: "DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE".localized(),
|
|
|
|
@ -184,17 +153,9 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga
|
|
|
|
|
rightAccessory: .radio(
|
|
|
|
|
isSelected: {
|
|
|
|
|
(self?.currentSelection.value.isEnabled == true) &&
|
|
|
|
|
(self?.currentSelection.value.type == .disappearAfterRead) &&
|
|
|
|
|
Features.useNewDisappearingMessagesConfig
|
|
|
|
|
(self?.currentSelection.value.type == .disappearAfterRead)
|
|
|
|
|
}
|
|
|
|
|
),
|
|
|
|
|
styling: SessionCell.StyleInfo(
|
|
|
|
|
tintColor: (Features.useNewDisappearingMessagesConfig ?
|
|
|
|
|
.textPrimary :
|
|
|
|
|
.disabled
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
isEnabled: Features.useNewDisappearingMessagesConfig,
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Disappear after read option",
|
|
|
|
|
label: "Disappear after read option"
|
|
|
|
@ -222,17 +183,9 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga
|
|
|
|
|
rightAccessory: .radio(
|
|
|
|
|
isSelected: {
|
|
|
|
|
(self?.currentSelection.value.isEnabled == true) &&
|
|
|
|
|
(self?.currentSelection.value.type == .disappearAfterSend) &&
|
|
|
|
|
Features.useNewDisappearingMessagesConfig
|
|
|
|
|
(self?.currentSelection.value.type == .disappearAfterSend)
|
|
|
|
|
}
|
|
|
|
|
),
|
|
|
|
|
styling: SessionCell.StyleInfo(
|
|
|
|
|
tintColor: (Features.useNewDisappearingMessagesConfig ?
|
|
|
|
|
.textPrimary :
|
|
|
|
|
.disabled
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
isEnabled: Features.useNewDisappearingMessagesConfig,
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Disappear after send option",
|
|
|
|
|
label: "Disappear after send option"
|
|
|
|
@ -257,17 +210,12 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga
|
|
|
|
|
),
|
|
|
|
|
(currentSelection.isEnabled == false ? nil :
|
|
|
|
|
SectionModel(
|
|
|
|
|
model: {
|
|
|
|
|
guard Features.useNewDisappearingMessagesConfig else { return .timerLegacy }
|
|
|
|
|
return currentSelection.type == .disappearAfterSend ?
|
|
|
|
|
.timerDisappearAfterSend :
|
|
|
|
|
.timerDisappearAfterRead
|
|
|
|
|
}(),
|
|
|
|
|
model: (currentSelection.type == .disappearAfterSend ?
|
|
|
|
|
.timerDisappearAfterSend :
|
|
|
|
|
.timerDisappearAfterRead
|
|
|
|
|
),
|
|
|
|
|
elements: DisappearingMessagesConfiguration
|
|
|
|
|
.validDurationsSeconds({
|
|
|
|
|
guard Features.useNewDisappearingMessagesConfig else { return .disappearAfterSend }
|
|
|
|
|
return currentSelection.type ?? .disappearAfterSend
|
|
|
|
|
}())
|
|
|
|
|
.validDurationsSeconds(currentSelection.type ?? .disappearAfterSend)
|
|
|
|
|
.map { duration in
|
|
|
|
|
let title: String = duration.formatted(format: .long)
|
|
|
|
|
|
|
|
|
@ -285,10 +233,7 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga
|
|
|
|
|
label: "Time option"
|
|
|
|
|
),
|
|
|
|
|
onTap: {
|
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration = currentSelection
|
|
|
|
|
.with(
|
|
|
|
|
durationSeconds: duration
|
|
|
|
|
)
|
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration = currentSelection.with(durationSeconds: duration)
|
|
|
|
|
self?.shouldShowConfirmButton.send(updatedConfig != config)
|
|
|
|
|
self?.currentSelection.send(updatedConfig)
|
|
|
|
|
}
|
|
|
|
@ -300,163 +245,71 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga
|
|
|
|
|
|
|
|
|
|
case (.legacyGroup, _), (.group, _), (_, true):
|
|
|
|
|
return [
|
|
|
|
|
(Features.useNewDisappearingMessagesConfig ? nil :
|
|
|
|
|
SectionModel(
|
|
|
|
|
model: .type,
|
|
|
|
|
elements: [
|
|
|
|
|
SessionCell.Info(
|
|
|
|
|
id: "DISAPPEARING_MESSAGES_OFF".localized(),
|
|
|
|
|
title: "DISAPPEARING_MESSAGES_OFF".localized(),
|
|
|
|
|
rightAccessory: .radio(
|
|
|
|
|
isSelected: { (self?.currentSelection.value.isEnabled == false) }
|
|
|
|
|
),
|
|
|
|
|
isEnabled: (
|
|
|
|
|
isNoteToSelf ||
|
|
|
|
|
currentUserIsClosedGroupMember == true
|
|
|
|
|
),
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Disable disappearing messages (Off option)",
|
|
|
|
|
label: "Disable disappearing messages (Off option)"
|
|
|
|
|
),
|
|
|
|
|
onTap: {
|
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration = currentSelection
|
|
|
|
|
.with(
|
|
|
|
|
isEnabled: false,
|
|
|
|
|
durationSeconds: DisappearingMessagesConfiguration.DefaultDuration.off.seconds
|
|
|
|
|
)
|
|
|
|
|
self?.shouldShowConfirmButton.send(updatedConfig != config)
|
|
|
|
|
self?.currentSelection.send(updatedConfig)
|
|
|
|
|
}
|
|
|
|
|
SectionModel(
|
|
|
|
|
model: (isNoteToSelf ? .noteToSelf : .group),
|
|
|
|
|
elements: [
|
|
|
|
|
SessionCell.Info(
|
|
|
|
|
id: "DISAPPEARING_MESSAGES_OFF".localized(),
|
|
|
|
|
title: "DISAPPEARING_MESSAGES_OFF".localized(),
|
|
|
|
|
rightAccessory: .radio(
|
|
|
|
|
isSelected: { (self?.currentSelection.value.isEnabled == false) }
|
|
|
|
|
),
|
|
|
|
|
SessionCell.Info(
|
|
|
|
|
id: "DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE".localized(),
|
|
|
|
|
title: "DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE".localized(),
|
|
|
|
|
subtitle: "DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION".localized(),
|
|
|
|
|
rightAccessory: .radio(
|
|
|
|
|
isSelected: {
|
|
|
|
|
(self?.currentSelection.value.isEnabled == true) &&
|
|
|
|
|
!Features.useNewDisappearingMessagesConfig
|
|
|
|
|
}
|
|
|
|
|
),
|
|
|
|
|
isEnabled: (
|
|
|
|
|
isNoteToSelf ||
|
|
|
|
|
currentUserIsClosedGroupMember == true
|
|
|
|
|
),
|
|
|
|
|
onTap: {
|
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration = {
|
|
|
|
|
if (config.isEnabled == true && config.type == .disappearAfterSend) {
|
|
|
|
|
return config
|
|
|
|
|
}
|
|
|
|
|
return currentSelection
|
|
|
|
|
.with(
|
|
|
|
|
isEnabled: true,
|
|
|
|
|
durationSeconds: DisappearingMessagesConfiguration.DefaultDuration.legacy.seconds,
|
|
|
|
|
type: .disappearAfterSend // Default for closed group & note to self
|
|
|
|
|
)
|
|
|
|
|
}()
|
|
|
|
|
self?.shouldShowConfirmButton.send(updatedConfig != config)
|
|
|
|
|
self?.currentSelection.send(updatedConfig)
|
|
|
|
|
}
|
|
|
|
|
isEnabled: (
|
|
|
|
|
isNoteToSelf ||
|
|
|
|
|
currentUserIsClosedGroupAdmin == true
|
|
|
|
|
),
|
|
|
|
|
SessionCell.Info(
|
|
|
|
|
id: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(),
|
|
|
|
|
title: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(),
|
|
|
|
|
subtitle: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION".localized(),
|
|
|
|
|
rightAccessory: .radio(isSelected: { false }),
|
|
|
|
|
styling: SessionCell.StyleInfo(tintColor: .disabled),
|
|
|
|
|
isEnabled: false
|
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
(!Features.useNewDisappearingMessagesConfig && currentSelection.isEnabled == false ? nil :
|
|
|
|
|
SectionModel(
|
|
|
|
|
model: {
|
|
|
|
|
guard Features.useNewDisappearingMessagesConfig else {
|
|
|
|
|
return (currentSelection.type == .disappearAfterSend ?
|
|
|
|
|
.timerDisappearAfterSend :
|
|
|
|
|
.timerDisappearAfterRead
|
|
|
|
|
)
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Disable disappearing messages (Off option)",
|
|
|
|
|
label: "Disable disappearing messages (Off option)"
|
|
|
|
|
),
|
|
|
|
|
onTap: {
|
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration = currentSelection
|
|
|
|
|
.with(
|
|
|
|
|
isEnabled: false,
|
|
|
|
|
durationSeconds: DisappearingMessagesConfiguration.DefaultDuration.off.seconds
|
|
|
|
|
)
|
|
|
|
|
self?.shouldShowConfirmButton.send(updatedConfig != config)
|
|
|
|
|
self?.currentSelection.send(updatedConfig)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
.compactMap { $0 }
|
|
|
|
|
.appending(
|
|
|
|
|
contentsOf: DisappearingMessagesConfiguration
|
|
|
|
|
.validDurationsSeconds(.disappearAfterSend)
|
|
|
|
|
.map { duration in
|
|
|
|
|
let title: String = duration.formatted(format: .long)
|
|
|
|
|
|
|
|
|
|
return (isNoteToSelf ? .noteToSelf : .group)
|
|
|
|
|
}(),
|
|
|
|
|
elements: [
|
|
|
|
|
(!Features.useNewDisappearingMessagesConfig ? nil :
|
|
|
|
|
SessionCell.Info(
|
|
|
|
|
id: "DISAPPEARING_MESSAGES_OFF".localized(),
|
|
|
|
|
title: "DISAPPEARING_MESSAGES_OFF".localized(),
|
|
|
|
|
return SessionCell.Info(
|
|
|
|
|
id: title,
|
|
|
|
|
title: title,
|
|
|
|
|
rightAccessory: .radio(
|
|
|
|
|
isSelected: { (self?.currentSelection.value.isEnabled == false) }
|
|
|
|
|
),
|
|
|
|
|
isEnabled: (
|
|
|
|
|
isNoteToSelf ||
|
|
|
|
|
currentUserIsClosedGroupAdmin == true
|
|
|
|
|
isSelected: {
|
|
|
|
|
(self?.currentSelection.value.isEnabled == true) &&
|
|
|
|
|
(self?.currentSelection.value.durationSeconds == duration)
|
|
|
|
|
}
|
|
|
|
|
),
|
|
|
|
|
isEnabled: (isNoteToSelf || currentUserIsClosedGroupAdmin == true),
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Disable disappearing messages (Off option)",
|
|
|
|
|
label: "Disable disappearing messages (Off option)"
|
|
|
|
|
identifier: "Time option",
|
|
|
|
|
label: "Time option"
|
|
|
|
|
),
|
|
|
|
|
onTap: {
|
|
|
|
|
// If the new disappearing messages config feature flag isn't
|
|
|
|
|
// enabled then the 'isEnabled' and 'type' values are set via
|
|
|
|
|
// the first section so pass `nil` values to keep the existing
|
|
|
|
|
// setting
|
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration = currentSelection
|
|
|
|
|
.with(
|
|
|
|
|
isEnabled: false,
|
|
|
|
|
durationSeconds: DisappearingMessagesConfiguration.DefaultDuration.off.seconds
|
|
|
|
|
isEnabled: true,
|
|
|
|
|
durationSeconds: duration,
|
|
|
|
|
type: .disappearAfterSend
|
|
|
|
|
)
|
|
|
|
|
self?.shouldShowConfirmButton.send(updatedConfig != config)
|
|
|
|
|
self?.currentSelection.send(updatedConfig)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
.compactMap { $0 }
|
|
|
|
|
.appending(
|
|
|
|
|
contentsOf: DisappearingMessagesConfiguration
|
|
|
|
|
.validDurationsSeconds(.disappearAfterSend)
|
|
|
|
|
.map { duration in
|
|
|
|
|
let title: String = duration.formatted(format: .long)
|
|
|
|
|
|
|
|
|
|
return SessionCell.Info(
|
|
|
|
|
id: title,
|
|
|
|
|
title: title,
|
|
|
|
|
rightAccessory: .radio(
|
|
|
|
|
isSelected: {
|
|
|
|
|
(self?.currentSelection.value.isEnabled == true) &&
|
|
|
|
|
(self?.currentSelection.value.durationSeconds == duration)
|
|
|
|
|
}
|
|
|
|
|
),
|
|
|
|
|
isEnabled: (
|
|
|
|
|
isNoteToSelf ||
|
|
|
|
|
(currentUserIsClosedGroupMember == true && !Features.useNewDisappearingMessagesConfig) ||
|
|
|
|
|
currentUserIsClosedGroupAdmin == true
|
|
|
|
|
),
|
|
|
|
|
accessibility: Accessibility(
|
|
|
|
|
identifier: "Time option",
|
|
|
|
|
label: "Time option"
|
|
|
|
|
),
|
|
|
|
|
onTap: {
|
|
|
|
|
// If the new disappearing messages config feature flag isn't
|
|
|
|
|
// enabled then the 'isEnabled' and 'type' values are set via
|
|
|
|
|
// the first section so pass `nil` values to keep the existing
|
|
|
|
|
// setting
|
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration = currentSelection
|
|
|
|
|
.with(
|
|
|
|
|
isEnabled: (Features.useNewDisappearingMessagesConfig ?
|
|
|
|
|
true :
|
|
|
|
|
nil
|
|
|
|
|
),
|
|
|
|
|
durationSeconds: duration,
|
|
|
|
|
type: (Features.useNewDisappearingMessagesConfig ?
|
|
|
|
|
.disappearAfterSend :
|
|
|
|
|
nil
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
self?.shouldShowConfirmButton.send(updatedConfig != config)
|
|
|
|
|
self?.currentSelection.send(updatedConfig)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
].compactMap { $0 }
|
|
|
|
@ -487,18 +340,10 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga
|
|
|
|
|
serverHash: nil,
|
|
|
|
|
serverExpirationTimestamp: nil
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
let duration: UInt32? = {
|
|
|
|
|
guard !Features.useNewDisappearingMessagesConfig else { return nil }
|
|
|
|
|
return UInt32(floor(updatedConfig.isEnabled ? updatedConfig.durationSeconds : 0))
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
let expirationTimerUpdateMessage: ExpirationTimerUpdate = ExpirationTimerUpdate(
|
|
|
|
|
syncTarget: nil,
|
|
|
|
|
duration: duration
|
|
|
|
|
)
|
|
|
|
|
.with(sentTimestamp: UInt64(currentTimestampMs))
|
|
|
|
|
.with(updatedConfig)
|
|
|
|
|
let expirationTimerUpdateMessage: ExpirationTimerUpdate = ExpirationTimerUpdate()
|
|
|
|
|
.with(sentTimestamp: UInt64(currentTimestampMs))
|
|
|
|
|
.with(updatedConfig)
|
|
|
|
|
|
|
|
|
|
try MessageSender.send(
|
|
|
|
|
db,
|
|
|
|
|