|
|
@ -1,33 +1,37 @@
|
|
|
|
package org.thoughtcrime.securesms.debugmenu
|
|
|
|
package org.thoughtcrime.securesms.debugmenu
|
|
|
|
|
|
|
|
|
|
|
|
import androidx.compose.foundation.background
|
|
|
|
import androidx.compose.foundation.background
|
|
|
|
import androidx.compose.foundation.layout.Arrangement
|
|
|
|
|
|
|
|
import androidx.compose.foundation.layout.Box
|
|
|
|
|
|
|
|
import androidx.compose.foundation.layout.Column
|
|
|
|
import androidx.compose.foundation.layout.Column
|
|
|
|
import androidx.compose.foundation.layout.ColumnScope
|
|
|
|
import androidx.compose.foundation.layout.ColumnScope
|
|
|
|
import androidx.compose.foundation.layout.IntrinsicSize
|
|
|
|
|
|
|
|
import androidx.compose.foundation.layout.Spacer
|
|
|
|
import androidx.compose.foundation.layout.Spacer
|
|
|
|
import androidx.compose.foundation.layout.fillMaxSize
|
|
|
|
import androidx.compose.foundation.layout.fillMaxSize
|
|
|
|
import androidx.compose.foundation.layout.fillMaxWidth
|
|
|
|
import androidx.compose.foundation.layout.fillMaxWidth
|
|
|
|
import androidx.compose.foundation.layout.height
|
|
|
|
import androidx.compose.foundation.layout.height
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
import androidx.compose.foundation.layout.width
|
|
|
|
|
|
|
|
import androidx.compose.foundation.rememberScrollState
|
|
|
|
import androidx.compose.foundation.rememberScrollState
|
|
|
|
import androidx.compose.foundation.verticalScroll
|
|
|
|
import androidx.compose.foundation.verticalScroll
|
|
|
|
import androidx.compose.material3.CenterAlignedTopAppBar
|
|
|
|
|
|
|
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
|
|
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
|
|
|
|
|
|
|
import androidx.compose.material3.Scaffold
|
|
|
|
|
|
|
|
import androidx.compose.material3.SnackbarHost
|
|
|
|
|
|
|
|
import androidx.compose.material3.SnackbarHostState
|
|
|
|
import androidx.compose.material3.Text
|
|
|
|
import androidx.compose.material3.Text
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
|
|
|
|
import androidx.compose.runtime.LaunchedEffect
|
|
|
|
|
|
|
|
import androidx.compose.runtime.remember
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
import androidx.compose.ui.text.font.FontWeight
|
|
|
|
|
|
|
|
import androidx.compose.ui.tooling.preview.Preview
|
|
|
|
import androidx.compose.ui.tooling.preview.Preview
|
|
|
|
import network.loki.messenger.BuildConfig
|
|
|
|
import network.loki.messenger.BuildConfig
|
|
|
|
|
|
|
|
import network.loki.messenger.R
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.debugmenu.DebugMenuViewModel.Commands.ChangeEnvironment
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.debugmenu.DebugMenuViewModel.Commands.HideEnvironmentWarningDialog
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.debugmenu.DebugMenuViewModel.Commands.ShowEnvironmentWarningDialog
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.ui.AlertDialog
|
|
|
|
import org.thoughtcrime.securesms.ui.Cell
|
|
|
|
import org.thoughtcrime.securesms.ui.Cell
|
|
|
|
import org.thoughtcrime.securesms.ui.components.AppBarCloseIcon
|
|
|
|
import org.thoughtcrime.securesms.ui.DialogButtonModel
|
|
|
|
import org.thoughtcrime.securesms.ui.components.AppBarText
|
|
|
|
import org.thoughtcrime.securesms.ui.GetString
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.ui.LoadingDialog
|
|
|
|
import org.thoughtcrime.securesms.ui.components.BackAppBar
|
|
|
|
import org.thoughtcrime.securesms.ui.components.BackAppBar
|
|
|
|
import org.thoughtcrime.securesms.ui.components.DropDown
|
|
|
|
import org.thoughtcrime.securesms.ui.components.DropDown
|
|
|
|
import org.thoughtcrime.securesms.ui.components.appBarColors
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.ui.theme.LocalColors
|
|
|
|
import org.thoughtcrime.securesms.ui.theme.LocalColors
|
|
|
|
import org.thoughtcrime.securesms.ui.theme.LocalDimensions
|
|
|
|
import org.thoughtcrime.securesms.ui.theme.LocalDimensions
|
|
|
|
import org.thoughtcrime.securesms.ui.theme.LocalType
|
|
|
|
import org.thoughtcrime.securesms.ui.theme.LocalType
|
|
|
@ -42,37 +46,84 @@ fun DebugMenu(
|
|
|
|
modifier: Modifier = Modifier,
|
|
|
|
modifier: Modifier = Modifier,
|
|
|
|
onClose: () -> Unit
|
|
|
|
onClose: () -> Unit
|
|
|
|
){
|
|
|
|
){
|
|
|
|
Column(
|
|
|
|
val snackbarHostState = remember { SnackbarHostState() }
|
|
|
|
modifier = modifier
|
|
|
|
|
|
|
|
.fillMaxSize()
|
|
|
|
Scaffold(
|
|
|
|
.background(color = LocalColors.current.background)
|
|
|
|
modifier = modifier.fillMaxSize(),
|
|
|
|
) {
|
|
|
|
snackbarHost = {
|
|
|
|
// App bar
|
|
|
|
SnackbarHost(hostState = snackbarHostState)
|
|
|
|
BackAppBar(title = "Debug Menu", onBack = onClose)
|
|
|
|
}
|
|
|
|
|
|
|
|
) { contentPadding ->
|
|
|
|
|
|
|
|
// display a snackbar when required
|
|
|
|
|
|
|
|
LaunchedEffect(uiState.snackMessage) {
|
|
|
|
|
|
|
|
if(!uiState.snackMessage.isNullOrEmpty()){
|
|
|
|
|
|
|
|
snackbarHostState.showSnackbar(uiState.snackMessage)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Alert dialogs
|
|
|
|
|
|
|
|
if (uiState.showEnvironmentWarningDialog) {
|
|
|
|
|
|
|
|
AlertDialog(
|
|
|
|
|
|
|
|
onDismissRequest = { sendCommand(HideEnvironmentWarningDialog) },
|
|
|
|
|
|
|
|
title = "Are you sure you want to switch environments?",
|
|
|
|
|
|
|
|
text = "Changing this setting will result in all conversations and Snode data being cleared...",
|
|
|
|
|
|
|
|
showCloseButton = false, // display the 'x' button
|
|
|
|
|
|
|
|
buttons = listOf(
|
|
|
|
|
|
|
|
DialogButtonModel(
|
|
|
|
|
|
|
|
text = GetString(R.string.cancel),
|
|
|
|
|
|
|
|
contentDescription = GetString(R.string.cancel),
|
|
|
|
|
|
|
|
onClick = { sendCommand(HideEnvironmentWarningDialog) }
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
DialogButtonModel(
|
|
|
|
|
|
|
|
text = GetString(R.string.ok),
|
|
|
|
|
|
|
|
contentDescription = GetString(R.string.ok),
|
|
|
|
|
|
|
|
onClick = { sendCommand(ChangeEnvironment) }
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (uiState.showEnvironmentLoadingDialog) {
|
|
|
|
|
|
|
|
LoadingDialog(title = "Changing Environment...")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Column(
|
|
|
|
Column(
|
|
|
|
modifier = Modifier
|
|
|
|
modifier = Modifier
|
|
|
|
.padding(horizontal = LocalDimensions.current.spacing)
|
|
|
|
.padding(contentPadding)
|
|
|
|
.verticalScroll(rememberScrollState())
|
|
|
|
.fillMaxSize()
|
|
|
|
|
|
|
|
.background(color = LocalColors.current.background)
|
|
|
|
) {
|
|
|
|
) {
|
|
|
|
// Info pane
|
|
|
|
// App bar
|
|
|
|
DebugCell("App Info"){
|
|
|
|
BackAppBar(title = "Debug Menu", onBack = onClose)
|
|
|
|
Text(
|
|
|
|
|
|
|
|
text = "Version: ${BuildConfig.VERSION_NAME} (${BuildConfig.VERSION_CODE} - ${BuildConfig.GIT_HASH.take(6)})",
|
|
|
|
Column(
|
|
|
|
style = LocalType.current.base
|
|
|
|
modifier = Modifier
|
|
|
|
)
|
|
|
|
.padding(horizontal = LocalDimensions.current.spacing)
|
|
|
|
}
|
|
|
|
.verticalScroll(rememberScrollState())
|
|
|
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
// Info pane
|
|
|
|
|
|
|
|
DebugCell("App Info") {
|
|
|
|
|
|
|
|
Text(
|
|
|
|
|
|
|
|
text = "Version: ${BuildConfig.VERSION_NAME} (${BuildConfig.VERSION_CODE} - ${
|
|
|
|
|
|
|
|
BuildConfig.GIT_HASH.take(
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
})",
|
|
|
|
|
|
|
|
style = LocalType.current.base
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Environment
|
|
|
|
// Environment
|
|
|
|
DebugCell("Environment"){
|
|
|
|
DebugCell("Environment") {
|
|
|
|
DropDown(
|
|
|
|
DropDown(
|
|
|
|
modifier = Modifier.fillMaxWidth(0.6f),
|
|
|
|
modifier = Modifier.fillMaxWidth(0.6f),
|
|
|
|
selectedText = uiState.currentEnvironment,
|
|
|
|
selectedText = uiState.currentEnvironment,
|
|
|
|
values = uiState.environments,
|
|
|
|
values = uiState.environments,
|
|
|
|
onValueSelected = {
|
|
|
|
onValueSelected = {
|
|
|
|
sendCommand(DebugMenuViewModel.Commands.ChangeEnvironment(it))
|
|
|
|
sendCommand(ShowEnvironmentWarningDialog(it))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -109,7 +160,10 @@ fun PreviewDebugMenu(){
|
|
|
|
DebugMenu(
|
|
|
|
DebugMenu(
|
|
|
|
uiState = DebugMenuViewModel.UIState(
|
|
|
|
uiState = DebugMenuViewModel.UIState(
|
|
|
|
currentEnvironment = "Development",
|
|
|
|
currentEnvironment = "Development",
|
|
|
|
environments = listOf("Development", "Production")
|
|
|
|
environments = listOf("Development", "Production"),
|
|
|
|
|
|
|
|
snackMessage = null,
|
|
|
|
|
|
|
|
showEnvironmentWarningDialog = false,
|
|
|
|
|
|
|
|
showEnvironmentLoadingDialog = false
|
|
|
|
),
|
|
|
|
),
|
|
|
|
sendCommand = {},
|
|
|
|
sendCommand = {},
|
|
|
|
onClose = {}
|
|
|
|
onClose = {}
|
|
|
|