mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 18:25:09 +01:00
Change settings screen to object (#8604)
This commit is contained in:
parent
e2179a6669
commit
7d34ff214c
@ -52,7 +52,7 @@ import java.text.SimpleDateFormat
|
|||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
import java.util.TimeZone
|
import java.util.TimeZone
|
||||||
|
|
||||||
class AboutScreen : Screen {
|
object AboutScreen : Screen {
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
override fun Content() {
|
override fun Content() {
|
||||||
@ -199,56 +199,54 @@ class AboutScreen : Screen {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
fun getVersionName(withBuildDate: Boolean): String {
|
||||||
fun getVersionName(withBuildDate: Boolean): String {
|
return when {
|
||||||
return when {
|
BuildConfig.DEBUG -> {
|
||||||
BuildConfig.DEBUG -> {
|
"Debug ${BuildConfig.COMMIT_SHA}".let {
|
||||||
"Debug ${BuildConfig.COMMIT_SHA}".let {
|
if (withBuildDate) {
|
||||||
if (withBuildDate) {
|
"$it (${getFormattedBuildTime()})"
|
||||||
"$it (${getFormattedBuildTime()})"
|
} else {
|
||||||
} else {
|
it
|
||||||
it
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
BuildConfig.PREVIEW -> {
|
|
||||||
"Preview r${BuildConfig.COMMIT_COUNT}".let {
|
|
||||||
if (withBuildDate) {
|
|
||||||
"$it (${BuildConfig.COMMIT_SHA}, ${getFormattedBuildTime()})"
|
|
||||||
} else {
|
|
||||||
"$it (${BuildConfig.COMMIT_SHA})"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else -> {
|
|
||||||
"Stable ${BuildConfig.VERSION_NAME}".let {
|
|
||||||
if (withBuildDate) {
|
|
||||||
"$it (${getFormattedBuildTime()})"
|
|
||||||
} else {
|
|
||||||
it
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
BuildConfig.PREVIEW -> {
|
||||||
|
"Preview r${BuildConfig.COMMIT_COUNT}".let {
|
||||||
private fun getFormattedBuildTime(): String {
|
if (withBuildDate) {
|
||||||
return try {
|
"$it (${BuildConfig.COMMIT_SHA}, ${getFormattedBuildTime()})"
|
||||||
val inputDf = SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'", Locale.US)
|
} else {
|
||||||
inputDf.timeZone = TimeZone.getTimeZone("UTC")
|
"$it (${BuildConfig.COMMIT_SHA})"
|
||||||
val buildTime = inputDf.parse(BuildConfig.BUILD_TIME)
|
}
|
||||||
|
}
|
||||||
val outputDf = DateFormat.getDateTimeInstance(
|
}
|
||||||
DateFormat.MEDIUM,
|
else -> {
|
||||||
DateFormat.SHORT,
|
"Stable ${BuildConfig.VERSION_NAME}".let {
|
||||||
Locale.getDefault(),
|
if (withBuildDate) {
|
||||||
)
|
"$it (${getFormattedBuildTime()})"
|
||||||
outputDf.timeZone = TimeZone.getDefault()
|
} else {
|
||||||
|
it
|
||||||
buildTime!!.toDateTimestampString(UiPreferences.dateFormat(Injekt.get<UiPreferences>().dateFormat().get()))
|
}
|
||||||
} catch (e: Exception) {
|
}
|
||||||
BuildConfig.BUILD_TIME
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun getFormattedBuildTime(): String {
|
||||||
|
return try {
|
||||||
|
val inputDf = SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'", Locale.US)
|
||||||
|
inputDf.timeZone = TimeZone.getTimeZone("UTC")
|
||||||
|
val buildTime = inputDf.parse(BuildConfig.BUILD_TIME)
|
||||||
|
|
||||||
|
val outputDf = DateFormat.getDateTimeInstance(
|
||||||
|
DateFormat.MEDIUM,
|
||||||
|
DateFormat.SHORT,
|
||||||
|
Locale.getDefault(),
|
||||||
|
)
|
||||||
|
outputDf.timeZone = TimeZone.getDefault()
|
||||||
|
|
||||||
|
buildTime!!.toDateTimestampString(UiPreferences.dateFormat(Injekt.get<UiPreferences>().dateFormat().get()))
|
||||||
|
} catch (e: Exception) {
|
||||||
|
BuildConfig.BUILD_TIME
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ import uy.kohesive.injekt.Injekt
|
|||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
class SettingsAdvancedScreen : SearchableSettings {
|
object SettingsAdvancedScreen : SearchableSettings {
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
@Composable
|
@Composable
|
||||||
@StringRes
|
@StringRes
|
||||||
|
@ -27,7 +27,7 @@ import uy.kohesive.injekt.Injekt
|
|||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
import java.util.Date
|
import java.util.Date
|
||||||
|
|
||||||
class SettingsAppearanceScreen : SearchableSettings {
|
object SettingsAppearanceScreen : SearchableSettings {
|
||||||
|
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
@Composable
|
@Composable
|
||||||
|
@ -59,7 +59,7 @@ import kotlinx.coroutines.launch
|
|||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
|
|
||||||
class SettingsBackupScreen : SearchableSettings {
|
object SettingsBackupScreen : SearchableSettings {
|
||||||
|
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
@Composable
|
@Composable
|
||||||
|
@ -16,7 +16,7 @@ import eu.kanade.tachiyomi.util.system.AuthenticatorUtil.authenticate
|
|||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
|
|
||||||
class SettingsBrowseScreen : SearchableSettings {
|
object SettingsBrowseScreen : SearchableSettings {
|
||||||
|
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
@Composable
|
@Composable
|
||||||
|
@ -32,7 +32,7 @@ import uy.kohesive.injekt.Injekt
|
|||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
class SettingsDownloadScreen : SearchableSettings {
|
object SettingsDownloadScreen : SearchableSettings {
|
||||||
|
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
@Composable
|
@Composable
|
||||||
|
@ -25,7 +25,7 @@ import org.xmlpull.v1.XmlPullParser
|
|||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
|
|
||||||
class SettingsGeneralScreen : SearchableSettings {
|
object SettingsGeneralScreen : SearchableSettings {
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
|
@ -61,7 +61,7 @@ import kotlinx.coroutines.runBlocking
|
|||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
|
|
||||||
class SettingsLibraryScreen : SearchableSettings {
|
object SettingsLibraryScreen : SearchableSettings {
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
|
@ -175,84 +175,84 @@ object SettingsMainScreen : Screen {
|
|||||||
private fun Navigator.navigate(screen: Screen, twoPane: Boolean) {
|
private fun Navigator.navigate(screen: Screen, twoPane: Boolean) {
|
||||||
if (twoPane) replaceAll(screen) else push(screen)
|
if (twoPane) replaceAll(screen) else push(screen)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private data class Item(
|
||||||
|
@StringRes val titleRes: Int,
|
||||||
|
@StringRes val subtitleRes: Int,
|
||||||
|
val formatSubtitle: @Composable () -> String = { stringResource(subtitleRes) },
|
||||||
|
val icon: ImageVector,
|
||||||
|
val screen: Screen,
|
||||||
|
)
|
||||||
|
|
||||||
|
private val items = listOf(
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_general,
|
||||||
|
subtitleRes = R.string.pref_general_summary,
|
||||||
|
icon = Icons.Outlined.Tune,
|
||||||
|
screen = SettingsGeneralScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_appearance,
|
||||||
|
subtitleRes = R.string.pref_appearance_summary,
|
||||||
|
icon = Icons.Outlined.Palette,
|
||||||
|
screen = SettingsAppearanceScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_library,
|
||||||
|
subtitleRes = R.string.pref_library_summary,
|
||||||
|
icon = Icons.Outlined.CollectionsBookmark,
|
||||||
|
screen = SettingsLibraryScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_reader,
|
||||||
|
subtitleRes = R.string.pref_reader_summary,
|
||||||
|
icon = Icons.Outlined.ChromeReaderMode,
|
||||||
|
screen = SettingsReaderScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_downloads,
|
||||||
|
subtitleRes = R.string.pref_downloads_summary,
|
||||||
|
icon = Icons.Outlined.GetApp,
|
||||||
|
screen = SettingsDownloadScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_tracking,
|
||||||
|
subtitleRes = R.string.pref_tracking_summary,
|
||||||
|
icon = Icons.Outlined.Sync,
|
||||||
|
screen = SettingsTrackingScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.browse,
|
||||||
|
subtitleRes = R.string.pref_browse_summary,
|
||||||
|
icon = Icons.Outlined.Explore,
|
||||||
|
screen = SettingsBrowseScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.label_backup,
|
||||||
|
subtitleRes = R.string.pref_backup_summary,
|
||||||
|
icon = Icons.Outlined.SettingsBackupRestore,
|
||||||
|
screen = SettingsBackupScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_security,
|
||||||
|
subtitleRes = R.string.pref_security_summary,
|
||||||
|
icon = Icons.Outlined.Security,
|
||||||
|
screen = SettingsSecurityScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_advanced,
|
||||||
|
subtitleRes = R.string.pref_advanced_summary,
|
||||||
|
icon = Icons.Outlined.Code,
|
||||||
|
screen = SettingsAdvancedScreen,
|
||||||
|
),
|
||||||
|
Item(
|
||||||
|
titleRes = R.string.pref_category_about,
|
||||||
|
subtitleRes = 0,
|
||||||
|
formatSubtitle = {
|
||||||
|
"${stringResource(R.string.app_name)} ${AboutScreen.getVersionName(withBuildDate = false)}"
|
||||||
|
},
|
||||||
|
icon = Icons.Outlined.Info,
|
||||||
|
screen = AboutScreen,
|
||||||
|
),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private data class Item(
|
|
||||||
@StringRes val titleRes: Int,
|
|
||||||
@StringRes val subtitleRes: Int,
|
|
||||||
val formatSubtitle: @Composable () -> String = { stringResource(subtitleRes) },
|
|
||||||
val icon: ImageVector,
|
|
||||||
val screen: Screen,
|
|
||||||
)
|
|
||||||
|
|
||||||
private val items = listOf(
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_general,
|
|
||||||
subtitleRes = R.string.pref_general_summary,
|
|
||||||
icon = Icons.Outlined.Tune,
|
|
||||||
screen = SettingsGeneralScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_appearance,
|
|
||||||
subtitleRes = R.string.pref_appearance_summary,
|
|
||||||
icon = Icons.Outlined.Palette,
|
|
||||||
screen = SettingsAppearanceScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_library,
|
|
||||||
subtitleRes = R.string.pref_library_summary,
|
|
||||||
icon = Icons.Outlined.CollectionsBookmark,
|
|
||||||
screen = SettingsLibraryScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_reader,
|
|
||||||
subtitleRes = R.string.pref_reader_summary,
|
|
||||||
icon = Icons.Outlined.ChromeReaderMode,
|
|
||||||
screen = SettingsReaderScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_downloads,
|
|
||||||
subtitleRes = R.string.pref_downloads_summary,
|
|
||||||
icon = Icons.Outlined.GetApp,
|
|
||||||
screen = SettingsDownloadScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_tracking,
|
|
||||||
subtitleRes = R.string.pref_tracking_summary,
|
|
||||||
icon = Icons.Outlined.Sync,
|
|
||||||
screen = SettingsTrackingScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.browse,
|
|
||||||
subtitleRes = R.string.pref_browse_summary,
|
|
||||||
icon = Icons.Outlined.Explore,
|
|
||||||
screen = SettingsBrowseScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.label_backup,
|
|
||||||
subtitleRes = R.string.pref_backup_summary,
|
|
||||||
icon = Icons.Outlined.SettingsBackupRestore,
|
|
||||||
screen = SettingsBackupScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_security,
|
|
||||||
subtitleRes = R.string.pref_security_summary,
|
|
||||||
icon = Icons.Outlined.Security,
|
|
||||||
screen = SettingsSecurityScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_advanced,
|
|
||||||
subtitleRes = R.string.pref_advanced_summary,
|
|
||||||
icon = Icons.Outlined.Code,
|
|
||||||
screen = SettingsAdvancedScreen(),
|
|
||||||
),
|
|
||||||
Item(
|
|
||||||
titleRes = R.string.pref_category_about,
|
|
||||||
subtitleRes = 0,
|
|
||||||
formatSubtitle = {
|
|
||||||
"${stringResource(R.string.app_name)} ${AboutScreen.getVersionName(withBuildDate = false)}"
|
|
||||||
},
|
|
||||||
icon = Icons.Outlined.Info,
|
|
||||||
screen = AboutScreen(),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
@ -21,7 +21,7 @@ import eu.kanade.tachiyomi.util.system.isReleaseBuildType
|
|||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
|
|
||||||
class SettingsReaderScreen : SearchableSettings {
|
object SettingsReaderScreen : SearchableSettings {
|
||||||
|
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
@Composable
|
@Composable
|
||||||
|
@ -282,16 +282,16 @@ private fun getLocalizedBreadcrumb(path: String, node: String?): String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private val settingScreens = listOf(
|
private val settingScreens = listOf(
|
||||||
SettingsGeneralScreen(),
|
SettingsGeneralScreen,
|
||||||
SettingsAppearanceScreen(),
|
SettingsAppearanceScreen,
|
||||||
SettingsLibraryScreen(),
|
SettingsLibraryScreen,
|
||||||
SettingsReaderScreen(),
|
SettingsReaderScreen,
|
||||||
SettingsDownloadScreen(),
|
SettingsDownloadScreen,
|
||||||
SettingsTrackingScreen(),
|
SettingsTrackingScreen,
|
||||||
SettingsBrowseScreen(),
|
SettingsBrowseScreen,
|
||||||
SettingsBackupScreen(),
|
SettingsBackupScreen,
|
||||||
SettingsSecurityScreen(),
|
SettingsSecurityScreen,
|
||||||
SettingsAdvancedScreen(),
|
SettingsAdvancedScreen,
|
||||||
)
|
)
|
||||||
|
|
||||||
private data class SettingsData(
|
private data class SettingsData(
|
||||||
|
@ -18,7 +18,7 @@ import eu.kanade.tachiyomi.util.system.AuthenticatorUtil.isAuthenticationSupport
|
|||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
|
|
||||||
class SettingsSecurityScreen : SearchableSettings {
|
object SettingsSecurityScreen : SearchableSettings {
|
||||||
|
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
@Composable
|
@Composable
|
||||||
|
@ -59,7 +59,7 @@ import eu.kanade.tachiyomi.util.system.toast
|
|||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
|
|
||||||
class SettingsTrackingScreen : SearchableSettings {
|
object SettingsTrackingScreen : SearchableSettings {
|
||||||
|
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
@Composable
|
@Composable
|
||||||
|
@ -45,9 +45,9 @@ class SettingsMainController(bundle: Bundle = bundleOf()) : BasicFullComposeCont
|
|||||||
if (!isTabletUi) {
|
if (!isTabletUi) {
|
||||||
Navigator(
|
Navigator(
|
||||||
screen = if (toBackupScreen) {
|
screen = if (toBackupScreen) {
|
||||||
SettingsBackupScreen()
|
SettingsBackupScreen
|
||||||
} else if (toAboutScreen) {
|
} else if (toAboutScreen) {
|
||||||
AboutScreen()
|
AboutScreen
|
||||||
} else {
|
} else {
|
||||||
SettingsMainScreen
|
SettingsMainScreen
|
||||||
},
|
},
|
||||||
@ -63,11 +63,11 @@ class SettingsMainController(bundle: Bundle = bundleOf()) : BasicFullComposeCont
|
|||||||
} else {
|
} else {
|
||||||
Navigator(
|
Navigator(
|
||||||
screen = if (toBackupScreen) {
|
screen = if (toBackupScreen) {
|
||||||
SettingsBackupScreen()
|
SettingsBackupScreen
|
||||||
} else if (toAboutScreen) {
|
} else if (toAboutScreen) {
|
||||||
AboutScreen()
|
AboutScreen
|
||||||
} else {
|
} else {
|
||||||
SettingsGeneralScreen()
|
SettingsGeneralScreen
|
||||||
},
|
},
|
||||||
) {
|
) {
|
||||||
TwoPanelBox(
|
TwoPanelBox(
|
||||||
|
Loading…
Reference in New Issue
Block a user