|
|
|
@ -14,6 +14,7 @@ import kotlinx.coroutines.flow.asSharedFlow
|
|
|
|
|
import kotlinx.coroutines.flow.asStateFlow
|
|
|
|
|
import kotlinx.coroutines.flow.update
|
|
|
|
|
import kotlinx.coroutines.launch
|
|
|
|
|
import network.loki.messenger.R
|
|
|
|
|
import org.session.libsession.utilities.TextSecurePreferences
|
|
|
|
|
import org.thoughtcrime.securesms.ApplicationContext
|
|
|
|
|
import org.thoughtcrime.securesms.notifications.PushRegistry
|
|
|
|
@ -58,14 +59,16 @@ internal class MessageNotificationsViewModel(
|
|
|
|
|
fun onBackPressed(): Boolean = when (state) {
|
|
|
|
|
is State.CreateAccount -> false
|
|
|
|
|
is State.LoadAccount -> {
|
|
|
|
|
_uiStates.update { it.copy(showDialog = true) }
|
|
|
|
|
_uiStates.update { it.copy(showingBackWarningDialogText = R.string.onboardingBackLoadAccount) }
|
|
|
|
|
|
|
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fun dismissDialog() {
|
|
|
|
|
_uiStates.update { it.copy(showDialog = false) }
|
|
|
|
|
_uiStates.update {
|
|
|
|
|
it.copy(showingBackWarningDialogText = null)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fun quit() {
|
|
|
|
@ -78,7 +81,7 @@ internal class MessageNotificationsViewModel(
|
|
|
|
|
|
|
|
|
|
data class UiState(
|
|
|
|
|
val pushEnabled: Boolean = true,
|
|
|
|
|
val showDialog: Boolean = false,
|
|
|
|
|
val showingBackWarningDialogText: Int? = null,
|
|
|
|
|
val clearData: Boolean = false
|
|
|
|
|
) {
|
|
|
|
|
val pushDisabled get() = !pushEnabled
|
|
|
|
|