File tree 5 files changed +20
-22
lines changed
androidTest/kotlin/net/mullvad/mullvadvpn/compose/screen
main/kotlin/net/mullvad/mullvadvpn/compose
5 files changed +20
-22
lines changed Original file line number Diff line number Diff line change @@ -285,15 +285,15 @@ class SelectLocationScreenTest {
285
285
setContentWithTheme {
286
286
SelectLocationScreen (
287
287
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
+ ),
297
297
onSelectRelay = mockedOnSelectRelay
298
298
)
299
299
}
Original file line number Diff line number Diff line change @@ -278,11 +278,6 @@ fun ScaffoldWithSmallTopBar(
278
278
actions = actions
279
279
)
280
280
},
281
- content = {
282
- content(
283
- Modifier .fillMaxSize()
284
- .padding(it)
285
- )
286
- }
281
+ content = { content(Modifier .fillMaxSize().padding(it)) }
287
282
)
288
283
}
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import androidx.compose.material3.Text
7
7
import androidx.compose.runtime.Composable
8
8
import androidx.compose.runtime.LaunchedEffect
9
9
import androidx.compose.runtime.collectAsState
10
+ import androidx.compose.runtime.derivedStateOf
11
+ import androidx.compose.runtime.getValue
10
12
import androidx.compose.runtime.mutableStateOf
11
13
import androidx.compose.runtime.remember
12
14
import androidx.compose.ui.Modifier
@@ -99,6 +101,7 @@ fun CreateCustomListDialog(
99
101
val focusRequester = remember { FocusRequester () }
100
102
val keyboardController = LocalSoftwareKeyboardController .current
101
103
val name = remember { mutableStateOf(" " ) }
104
+ val isValidName by remember { derivedStateOf { name.value.isNotBlank() } }
102
105
103
106
AlertDialog (
104
107
title = {
@@ -115,7 +118,7 @@ fun CreateCustomListDialog(
115
118
onInputChanged()
116
119
},
117
120
onSubmit = {
118
- if (it.isNotBlank() ) {
121
+ if (isValidName ) {
119
122
createCustomList(it)
120
123
}
121
124
},
@@ -152,7 +155,7 @@ fun CreateCustomListDialog(
152
155
PrimaryButton (
153
156
text = stringResource(id = R .string.create),
154
157
onClick = { createCustomList(name.value) },
155
- isEnabled = name.value.isNotBlank()
158
+ isEnabled = isValidName
156
159
)
157
160
},
158
161
dismissButton = {
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import androidx.compose.material3.Text
7
7
import androidx.compose.runtime.Composable
8
8
import androidx.compose.runtime.LaunchedEffect
9
9
import androidx.compose.runtime.collectAsState
10
+ import androidx.compose.runtime.derivedStateOf
10
11
import androidx.compose.runtime.getValue
11
12
import androidx.compose.runtime.mutableStateOf
12
13
import androidx.compose.runtime.remember
@@ -79,6 +80,7 @@ fun EditCustomListNameDialog(
79
80
val focusRequester = remember { FocusRequester () }
80
81
val keyboardController = LocalSoftwareKeyboardController .current
81
82
val input = remember { mutableStateOf(uiState.name) }
83
+ val isValidName by remember { derivedStateOf { input.value.isNotBlank() } }
82
84
AlertDialog (
83
85
title = {
84
86
Text (
@@ -94,7 +96,7 @@ fun EditCustomListNameDialog(
94
96
onInputChanged()
95
97
},
96
98
onSubmit = {
97
- if (it.isNotBlank() ) {
99
+ if (isValidName ) {
98
100
updateName(it)
99
101
}
100
102
},
@@ -141,7 +143,7 @@ fun EditCustomListNameDialog(
141
143
PrimaryButton (
142
144
text = stringResource(id = R .string.save),
143
145
onClick = { updateName(input.value) },
144
- isEnabled = input.value.isNotBlank()
146
+ isEnabled = isValidName
145
147
)
146
148
},
147
149
dismissButton = {
Original file line number Diff line number Diff line change @@ -10,9 +10,7 @@ import kotlinx.coroutines.launch
10
10
fun RunOnKeyChange (key : Any , block : suspend CoroutineScope .() -> Unit ) {
11
11
val scope = rememberCoroutineScope()
12
12
rememberSaveable(key) {
13
- scope.launch {
14
- block()
15
- }
13
+ scope.launch { block() }
16
14
key
17
15
}
18
16
}
You can’t perform that action at this time.
0 commit comments