Skip to content

Commit 65c2359

Browse files
committed
Improve valid name text behaviour for custom lists dialogs
1 parent 382afe2 commit 65c2359

File tree

5 files changed

+20
-22
lines changed

5 files changed

+20
-22
lines changed

android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/screen/SelectLocationScreenTest.kt

+9-9
Original file line numberDiff line numberDiff line change
@@ -285,15 +285,15 @@ class SelectLocationScreenTest {
285285
setContentWithTheme {
286286
SelectLocationScreen(
287287
uiState =
288-
SelectLocationUiState.Content(
289-
customLists = emptyList(),
290-
filteredCustomLists = emptyList(),
291-
countries = DUMMY_RELAY_COUNTRIES,
292-
selectedItem = null,
293-
selectedOwnership = null,
294-
selectedProvidersCount = 0,
295-
searchTerm = ""
296-
),
288+
SelectLocationUiState.Content(
289+
customLists = emptyList(),
290+
filteredCustomLists = emptyList(),
291+
countries = DUMMY_RELAY_COUNTRIES,
292+
selectedItem = null,
293+
selectedOwnership = null,
294+
selectedProvidersCount = 0,
295+
searchTerm = ""
296+
),
297297
onSelectRelay = mockedOnSelectRelay
298298
)
299299
}

android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/component/Scaffolding.kt

+1-6
Original file line numberDiff line numberDiff line change
@@ -278,11 +278,6 @@ fun ScaffoldWithSmallTopBar(
278278
actions = actions
279279
)
280280
},
281-
content = {
282-
content(
283-
Modifier.fillMaxSize()
284-
.padding(it)
285-
)
286-
}
281+
content = { content(Modifier.fillMaxSize().padding(it)) }
287282
)
288283
}

android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/dialog/CreateCustomListDialog.kt

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import androidx.compose.material3.Text
77
import androidx.compose.runtime.Composable
88
import androidx.compose.runtime.LaunchedEffect
99
import androidx.compose.runtime.collectAsState
10+
import androidx.compose.runtime.derivedStateOf
11+
import androidx.compose.runtime.getValue
1012
import androidx.compose.runtime.mutableStateOf
1113
import androidx.compose.runtime.remember
1214
import androidx.compose.ui.Modifier
@@ -99,6 +101,7 @@ fun CreateCustomListDialog(
99101
val focusRequester = remember { FocusRequester() }
100102
val keyboardController = LocalSoftwareKeyboardController.current
101103
val name = remember { mutableStateOf("") }
104+
val isValidName by remember { derivedStateOf { name.value.isNotBlank() } }
102105

103106
AlertDialog(
104107
title = {
@@ -115,7 +118,7 @@ fun CreateCustomListDialog(
115118
onInputChanged()
116119
},
117120
onSubmit = {
118-
if (it.isNotBlank()) {
121+
if (isValidName) {
119122
createCustomList(it)
120123
}
121124
},
@@ -152,7 +155,7 @@ fun CreateCustomListDialog(
152155
PrimaryButton(
153156
text = stringResource(id = R.string.create),
154157
onClick = { createCustomList(name.value) },
155-
isEnabled = name.value.isNotBlank()
158+
isEnabled = isValidName
156159
)
157160
},
158161
dismissButton = {

android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/dialog/EditCustomListNameDialog.kt

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import androidx.compose.material3.Text
77
import androidx.compose.runtime.Composable
88
import androidx.compose.runtime.LaunchedEffect
99
import androidx.compose.runtime.collectAsState
10+
import androidx.compose.runtime.derivedStateOf
1011
import androidx.compose.runtime.getValue
1112
import androidx.compose.runtime.mutableStateOf
1213
import androidx.compose.runtime.remember
@@ -79,6 +80,7 @@ fun EditCustomListNameDialog(
7980
val focusRequester = remember { FocusRequester() }
8081
val keyboardController = LocalSoftwareKeyboardController.current
8182
val input = remember { mutableStateOf(uiState.name) }
83+
val isValidName by remember { derivedStateOf { input.value.isNotBlank() } }
8284
AlertDialog(
8385
title = {
8486
Text(
@@ -94,7 +96,7 @@ fun EditCustomListNameDialog(
9496
onInputChanged()
9597
},
9698
onSubmit = {
97-
if (it.isNotBlank()) {
99+
if (isValidName) {
98100
updateName(it)
99101
}
100102
},
@@ -141,7 +143,7 @@ fun EditCustomListNameDialog(
141143
PrimaryButton(
142144
text = stringResource(id = R.string.save),
143145
onClick = { updateName(input.value) },
144-
isEnabled = input.value.isNotBlank()
146+
isEnabled = isValidName
145147
)
146148
},
147149
dismissButton = {

android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/util/Effects.kt

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ import kotlinx.coroutines.launch
1010
fun RunOnKeyChange(key: Any, block: suspend CoroutineScope.() -> Unit) {
1111
val scope = rememberCoroutineScope()
1212
rememberSaveable(key) {
13-
scope.launch {
14-
block()
15-
}
13+
scope.launch { block() }
1614
key
1715
}
1816
}

0 commit comments

Comments
 (0)