|
| 1 | +package net.mullvad.mullvadvpn.compose.screen |
| 2 | + |
| 3 | +import androidx.compose.foundation.layout.Column |
| 4 | +import androidx.compose.foundation.layout.fillMaxSize |
| 5 | +import androidx.compose.foundation.layout.padding |
| 6 | +import androidx.compose.material.icons.Icons |
| 7 | +import androidx.compose.material.icons.filled.Close |
| 8 | +import androidx.compose.material3.ButtonDefaults |
| 9 | +import androidx.compose.material3.Icon |
| 10 | +import androidx.compose.material3.IconButton |
| 11 | +import androidx.compose.material3.MaterialTheme |
| 12 | +import androidx.compose.material3.Scaffold |
| 13 | +import androidx.compose.material3.Text |
| 14 | +import androidx.compose.material3.TextButton |
| 15 | +import androidx.compose.material3.TextField |
| 16 | +import androidx.compose.runtime.Composable |
| 17 | +import androidx.compose.runtime.getValue |
| 18 | +import androidx.compose.runtime.mutableStateOf |
| 19 | +import androidx.compose.runtime.remember |
| 20 | +import androidx.compose.runtime.setValue |
| 21 | +import androidx.compose.ui.Modifier |
| 22 | +import androidx.compose.ui.res.stringResource |
| 23 | +import androidx.compose.ui.tooling.preview.Preview |
| 24 | +import com.ramcosta.composedestinations.annotation.Destination |
| 25 | +import com.ramcosta.composedestinations.result.ResultBackNavigator |
| 26 | +import net.mullvad.mullvadvpn.R |
| 27 | +import net.mullvad.mullvadvpn.compose.component.MullvadSmallTopBar |
| 28 | +import net.mullvad.mullvadvpn.compose.textfield.mullvadWhiteTextFieldColors |
| 29 | +import net.mullvad.mullvadvpn.compose.transitions.DefaultTransition |
| 30 | + |
| 31 | +@Preview |
| 32 | +@Composable |
| 33 | +private fun PreviewImportOverridesByText() { |
| 34 | + ImportOverridesByTextScreen({}, {}) |
| 35 | +} |
| 36 | + |
| 37 | +@Destination(style = DefaultTransition::class) |
| 38 | +@Composable |
| 39 | +fun ImportOverridesByText( |
| 40 | + resultNavigator: ResultBackNavigator<String>, |
| 41 | +) { |
| 42 | + ImportOverridesByTextScreen( |
| 43 | + onNavigateBack = resultNavigator::navigateBack, |
| 44 | + onImportClicked = { resultNavigator.navigateBack(result = it) } |
| 45 | + ) |
| 46 | +} |
| 47 | + |
| 48 | +@Composable |
| 49 | +fun ImportOverridesByTextScreen( |
| 50 | + onNavigateBack: () -> Unit, |
| 51 | + onImportClicked: (String) -> Unit, |
| 52 | +) { |
| 53 | + var text by remember { mutableStateOf("") } |
| 54 | + |
| 55 | + Scaffold( |
| 56 | + topBar = { |
| 57 | + MullvadSmallTopBar( |
| 58 | + title = stringResource(R.string.import_overrides_text_title), |
| 59 | + navigationIcon = { |
| 60 | + IconButton(onClick = onNavigateBack) { |
| 61 | + Icon(imageVector = Icons.Default.Close, contentDescription = null) |
| 62 | + } |
| 63 | + }, |
| 64 | + actions = { |
| 65 | + TextButton( |
| 66 | + enabled = text.isNotEmpty(), |
| 67 | + colors = |
| 68 | + ButtonDefaults.textButtonColors() |
| 69 | + .copy(contentColor = MaterialTheme.colorScheme.onPrimary), |
| 70 | + onClick = { onImportClicked(text) } |
| 71 | + ) { |
| 72 | + Text( |
| 73 | + text = stringResource(R.string.import_overrides_import), |
| 74 | + ) |
| 75 | + } |
| 76 | + } |
| 77 | + ) |
| 78 | + }, |
| 79 | + ) { |
| 80 | + Column(modifier = Modifier.padding(it)) { |
| 81 | + TextField( |
| 82 | + modifier = Modifier.fillMaxSize(), |
| 83 | + value = text, |
| 84 | + onValueChange = { text = it }, |
| 85 | + placeholder = { |
| 86 | + Text(text = stringResource(R.string.import_override_textfield_placeholder)) |
| 87 | + }, |
| 88 | + colors = mullvadWhiteTextFieldColors() |
| 89 | + ) |
| 90 | + } |
| 91 | + } |
| 92 | +} |
0 commit comments