-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #328 from ooni/select-categories
Select/deselect all website categories
- Loading branch information
Showing
13 changed files
with
264 additions
and
24 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
composeApp/src/commonMain/composeResources/drawable/ic_deselect.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="960" | ||
android:viewportHeight="960" | ||
android:tint="?attr/colorControlNormal"> | ||
<path | ||
android:fillColor="#FFFFFFFF" | ||
android:pathData="M791,904L567,680L280,680L280,393L56,169L112,112L848,848L791,904ZM360,600L487,600L360,473L360,600ZM680,567L600,487L600,360L473,360L393,280L680,280L680,567ZM200,760L200,840Q167,840 143.5,816.5Q120,793 120,760L200,760ZM120,680L120,600L200,600L200,680L120,680ZM120,520L120,440L200,440L200,520L120,520ZM120,360L120,280L200,280L200,360L120,360ZM280,840L280,760L360,760L360,840L280,840ZM280,200L280,120L360,120L360,200L280,200ZM440,840L440,760L520,760L520,840L440,840ZM440,200L440,120L520,120L520,200L440,200ZM600,840L600,760L680,760L680,840L600,840ZM600,200L600,120L680,120L680,200L600,200ZM760,680L760,600L840,600L840,680L760,680ZM760,520L760,440L840,440L840,520L760,520ZM760,360L760,280L840,280L840,360L760,360ZM760,200L760,120Q793,120 816.5,143.5Q840,167 840,200L760,200Z"/> | ||
</vector> |
10 changes: 10 additions & 0 deletions
10
composeApp/src/commonMain/composeResources/drawable/ic_select_all.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="960" | ||
android:viewportHeight="960" | ||
android:tint="?attr/colorControlNormal"> | ||
<path | ||
android:fillColor="#FFFFFFFF" | ||
android:pathData="M280,680L280,280L680,280L680,680L280,680ZM360,600L600,600L600,360L360,360L360,600ZM200,760L200,840Q167,840 143.5,816.5Q120,793 120,760L200,760ZM120,680L120,600L200,600L200,680L120,680ZM120,520L120,440L200,440L200,520L120,520ZM120,360L120,280L200,280L200,360L120,360ZM200,200L120,200Q120,167 143.5,143.5Q167,120 200,120L200,200ZM280,840L280,760L360,760L360,840L280,840ZM280,200L280,120L360,120L360,200L280,200ZM440,840L440,760L520,760L520,840L440,840ZM440,200L440,120L520,120L520,200L440,200ZM600,840L600,760L680,760L680,840L600,840ZM600,200L600,120L680,120L680,200L600,200ZM760,840L760,760L840,760Q840,793 816.5,816.5Q793,840 760,840ZM760,680L760,600L840,600L840,680L760,680ZM760,520L760,440L840,440L840,520L760,520ZM760,360L760,280L840,280L840,360L760,360ZM760,200L760,120Q793,120 816.5,143.5Q840,167 840,200L760,200Z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95 changes: 95 additions & 0 deletions
95
...App/src/commonMain/kotlin/org/ooni/probe/ui/settings/webcategories/WebCategoriesScreen.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
package org.ooni.probe.ui.settings.webcategories | ||
|
||
import androidx.compose.foundation.background | ||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.foundation.layout.WindowInsets | ||
import androidx.compose.foundation.layout.asPaddingValues | ||
import androidx.compose.foundation.layout.navigationBars | ||
import androidx.compose.foundation.lazy.LazyColumn | ||
import androidx.compose.foundation.lazy.items | ||
import androidx.compose.material.icons.Icons | ||
import androidx.compose.material.icons.automirrored.filled.ArrowBack | ||
import androidx.compose.material3.Icon | ||
import androidx.compose.material3.IconButton | ||
import androidx.compose.material3.MaterialTheme | ||
import androidx.compose.material3.Text | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.text.style.TextOverflow | ||
import androidx.compose.ui.unit.sp | ||
import ooniprobe.composeapp.generated.resources.Common_Back | ||
import ooniprobe.composeapp.generated.resources.Res | ||
import ooniprobe.composeapp.generated.resources.Settings_Websites_Categories_Label | ||
import ooniprobe.composeapp.generated.resources.Settings_Websites_Categories_Selection_All | ||
import ooniprobe.composeapp.generated.resources.Settings_Websites_Categories_Selection_None | ||
import ooniprobe.composeapp.generated.resources.ic_deselect | ||
import ooniprobe.composeapp.generated.resources.ic_select_all | ||
import org.jetbrains.compose.resources.painterResource | ||
import org.jetbrains.compose.resources.stringResource | ||
import org.ooni.probe.ui.settings.category.SwitchSettingsView | ||
import org.ooni.probe.ui.shared.TopBar | ||
|
||
@Composable | ||
fun WebCategoriesScreen( | ||
state: WebCategoriesViewModel.State, | ||
onEvent: (WebCategoriesViewModel.Event) -> Unit, | ||
) { | ||
Column(Modifier.background(MaterialTheme.colorScheme.background)) { | ||
TopBar( | ||
title = { | ||
Text( | ||
stringResource(Res.string.Settings_Websites_Categories_Label), | ||
style = MaterialTheme.typography.headlineSmall.copy(fontSize = 18.sp), | ||
maxLines = 1, | ||
overflow = TextOverflow.Ellipsis, | ||
) | ||
}, | ||
navigationIcon = { | ||
IconButton(onClick = { onEvent(WebCategoriesViewModel.Event.BackClicked) }) { | ||
Icon( | ||
Icons.AutoMirrored.Filled.ArrowBack, | ||
contentDescription = stringResource(Res.string.Common_Back), | ||
) | ||
} | ||
}, | ||
actions = { | ||
IconButton( | ||
onClick = { onEvent(WebCategoriesViewModel.Event.SelectAllClicked) }, | ||
enabled = state.selectAllEnabled, | ||
) { | ||
Icon( | ||
painterResource(Res.drawable.ic_select_all), | ||
stringResource(Res.string.Settings_Websites_Categories_Selection_All), | ||
) | ||
} | ||
IconButton( | ||
onClick = { onEvent(WebCategoriesViewModel.Event.DeselectAllClicked) }, | ||
enabled = state.deselectAllEnabled, | ||
) { | ||
Icon( | ||
painterResource(Res.drawable.ic_deselect), | ||
stringResource(Res.string.Settings_Websites_Categories_Selection_None), | ||
) | ||
} | ||
}, | ||
) | ||
|
||
LazyColumn( | ||
contentPadding = WindowInsets.navigationBars.asPaddingValues(), | ||
) { | ||
items(state.items, key = { it.item.settingsKey!! }) { item -> | ||
SwitchSettingsView( | ||
icon = item.item.icon, | ||
title = item.item.title, | ||
key = item.item.settingsKey!!, | ||
checked = item.isSelected, | ||
enabled = true, | ||
supportingContent = { Text(stringResource(item.item.description)) }, | ||
onCheckedChange = { _, value -> | ||
onEvent(WebCategoriesViewModel.Event.PreferenceChanged(item.item, value)) | ||
}, | ||
) | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.