mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-19 01:59:19 +01:00
parent
728e14e8e4
commit
1ab12e380a
@ -234,22 +234,29 @@ class SettingsLibraryController : SettingsController() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun updateSummary() {
|
fun updateSummary() {
|
||||||
val selectedCategories = preferences.libraryUpdateCategories().get()
|
val dbCategories = db.getCategories().executeAsBlocking()
|
||||||
|
val allCategories = listOf(Category.createDefault(activity!!)) + dbCategories
|
||||||
|
|
||||||
|
val includedCategories = preferences.libraryUpdateCategories().get()
|
||||||
.mapNotNull { id -> categories.find { it.id == id.toInt() } }
|
.mapNotNull { id -> categories.find { it.id == id.toInt() } }
|
||||||
.sortedBy { it.order }
|
.sortedBy { it.order }
|
||||||
val includedItemsText = if (selectedCategories.isEmpty()) {
|
|
||||||
context.getString(R.string.all)
|
|
||||||
} else {
|
|
||||||
selectedCategories.joinToString { it.name }
|
|
||||||
}
|
|
||||||
|
|
||||||
val excludedCategories = preferences.libraryUpdateCategoriesExclude().get()
|
val excludedCategories = preferences.libraryUpdateCategoriesExclude().get()
|
||||||
.mapNotNull { id -> categories.find { it.id == id.toInt() } }
|
.mapNotNull { id -> categories.find { it.id == id.toInt() } }
|
||||||
.sortedBy { it.order }
|
.sortedBy { it.order }
|
||||||
|
|
||||||
|
val includedItemsText = if (includedCategories.isEmpty()) {
|
||||||
|
if (excludedCategories.size == allCategories.size) context.getString(R.string.none)
|
||||||
|
else context.getString(R.string.all)
|
||||||
|
} else {
|
||||||
|
includedCategories.joinToString { it.name }
|
||||||
|
}
|
||||||
|
|
||||||
val excludedItemsText = if (excludedCategories.isEmpty()) {
|
val excludedItemsText = if (excludedCategories.isEmpty()) {
|
||||||
context.getString(R.string.none)
|
context.getString(R.string.none)
|
||||||
} else {
|
} else {
|
||||||
excludedCategories.joinToString { it.name }
|
if (excludedCategories.size == allCategories.size) context.getString(R.string.all)
|
||||||
|
else excludedCategories.joinToString { it.name }
|
||||||
}
|
}
|
||||||
|
|
||||||
summary = buildSpannedString {
|
summary = buildSpannedString {
|
||||||
|
Loading…
Reference in New Issue
Block a user