-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
146 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.schabi.newpipe | ||
|
||
import android.content.Context | ||
import android.content.SharedPreferences | ||
import androidx.preference.PreferenceManager | ||
import dagger.Module | ||
import dagger.Provides | ||
import dagger.hilt.InstallIn | ||
import dagger.hilt.android.qualifiers.ApplicationContext | ||
import dagger.hilt.components.SingletonComponent | ||
import javax.inject.Singleton | ||
|
||
@Module | ||
@InstallIn(SingletonComponent::class) | ||
class AppModule { | ||
|
||
@Provides | ||
@Singleton | ||
fun providesSharedPreference(@ApplicationContext context: Context): SharedPreferences { | ||
return PreferenceManager.getDefaultSharedPreferences(context) | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
app/src/main/java/org/schabi/newpipe/settings/SettingsScreen.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,26 @@ | ||
package org.schabi.newpipe.settings | ||
|
||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.foundation.layout.padding | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.collectAsState | ||
import androidx.compose.runtime.getValue | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.unit.dp | ||
import org.schabi.newpipe.R | ||
import org.schabi.newpipe.settings.viewmodel.SettingsViewModel | ||
import org.schabi.newpipe.ui.SwitchPreference | ||
|
||
@Composable | ||
fun SettingsScreen(viewModel: SettingsViewModel, modifier: Modifier = Modifier) { | ||
val settingsLayoutRedesign by viewModel.settingsLayoutRedesign.collectAsState() | ||
|
||
Column(modifier = modifier) { | ||
SwitchPreference( | ||
R.string.settings_layout_redesign, | ||
settingsLayoutRedesign, | ||
viewModel::toggleSettingsLayoutRedesign, | ||
modifier = Modifier.padding(4.dp) | ||
) | ||
} | ||
} |
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
39 changes: 39 additions & 0 deletions
39
app/src/main/java/org/schabi/newpipe/settings/viewmodel/SettingsViewModel.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,39 @@ | ||
package org.schabi.newpipe.settings.viewmodel | ||
|
||
import android.app.Application | ||
import android.content.Context | ||
import android.content.SharedPreferences | ||
import androidx.core.content.ContextCompat | ||
import androidx.lifecycle.AndroidViewModel | ||
import dagger.hilt.android.lifecycle.HiltViewModel | ||
import dagger.hilt.android.qualifiers.ApplicationContext | ||
import kotlinx.coroutines.flow.MutableStateFlow | ||
import kotlinx.coroutines.flow.asStateFlow | ||
import org.schabi.newpipe.R | ||
import javax.inject.Inject | ||
|
||
@HiltViewModel | ||
class SettingsViewModel @Inject constructor( | ||
@ApplicationContext context: Context, | ||
private val preferenceManager: SharedPreferences | ||
) : | ||
AndroidViewModel(context.applicationContext as Application) { | ||
|
||
private var _settingsLayoutRedesignPref: Boolean | ||
get() = preferenceManager.getBoolean( | ||
ContextCompat.getString(getApplication(), R.string.settings_layout_redesign_key), false | ||
) | ||
set(value) { | ||
preferenceManager.edit().putBoolean( | ||
ContextCompat.getString(getApplication(), R.string.settings_layout_redesign_key), | ||
value | ||
).apply() | ||
} | ||
private val _settingsLayoutRedesign: MutableStateFlow<Boolean> = MutableStateFlow(_settingsLayoutRedesignPref) | ||
val settingsLayoutRedesign = _settingsLayoutRedesign.asStateFlow() | ||
|
||
fun toggleSettingsLayoutRedesign(newState: Boolean) { | ||
_settingsLayoutRedesign.value = newState | ||
_settingsLayoutRedesignPref = newState | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
app/src/main/java/org/schabi/newpipe/ui/SwitchPreference.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,39 @@ | ||
package org.schabi.newpipe.ui | ||
|
||
import androidx.annotation.StringRes | ||
import androidx.compose.foundation.layout.Arrangement | ||
import androidx.compose.foundation.layout.Row | ||
import androidx.compose.foundation.layout.Spacer | ||
import androidx.compose.foundation.layout.padding | ||
import androidx.compose.material3.MaterialTheme | ||
import androidx.compose.material3.Switch | ||
import androidx.compose.material3.Text | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Alignment | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.res.stringResource | ||
import androidx.compose.ui.text.style.TextAlign | ||
import androidx.compose.ui.unit.dp | ||
|
||
@Composable | ||
fun SwitchPreference( | ||
@StringRes name: Int, | ||
isChecked: Boolean, | ||
onCheckedChange: (Boolean) -> Unit, | ||
modifier: Modifier = Modifier | ||
) { | ||
Row( | ||
verticalAlignment = Alignment.CenterVertically, | ||
horizontalArrangement = Arrangement.SpaceBetween, | ||
modifier = modifier | ||
) { | ||
Text( | ||
text = stringResource(id = name), | ||
modifier = Modifier.padding(4.dp), | ||
style = MaterialTheme.typography.bodyMedium, | ||
textAlign = TextAlign.Start, | ||
) | ||
Spacer(modifier = Modifier.weight(1f)) | ||
Switch(checked = isChecked, onCheckedChange = onCheckedChange) | ||
} | ||
} |
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