mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05:00
Minor cleanup
This commit is contained in:
parent
d62d94f587
commit
67b4e53a58
9 changed files with 14 additions and 14 deletions
|
@ -79,7 +79,7 @@ data class BackupManga(
|
||||||
artist = manga.artist,
|
artist = manga.artist,
|
||||||
author = manga.author,
|
author = manga.author,
|
||||||
description = manga.description,
|
description = manga.description,
|
||||||
genre = manga.genre ?: emptyList(),
|
genre = manga.genre.orEmpty(),
|
||||||
status = manga.status.toInt(),
|
status = manga.status.toInt(),
|
||||||
thumbnailUrl = manga.thumbnailUrl,
|
thumbnailUrl = manga.thumbnailUrl,
|
||||||
favorite = manga.favorite,
|
favorite = manga.favorite,
|
||||||
|
|
|
@ -124,7 +124,7 @@ internal class ExtensionGithubApi {
|
||||||
isNsfw = it.nsfw == 1,
|
isNsfw = it.nsfw == 1,
|
||||||
hasReadme = it.hasReadme == 1,
|
hasReadme = it.hasReadme == 1,
|
||||||
hasChangelog = it.hasChangelog == 1,
|
hasChangelog = it.hasChangelog == 1,
|
||||||
sources = it.sources?.toExtensionSources() ?: emptyList(),
|
sources = it.sources?.toExtensionSources().orEmpty(),
|
||||||
apkName = it.apk,
|
apkName = it.apk,
|
||||||
iconUrl = "${getUrlPrefix()}icon/${it.apk.replace(".apk", ".png")}",
|
iconUrl = "${getUrlPrefix()}icon/${it.apk.replace(".apk", ".png")}",
|
||||||
)
|
)
|
||||||
|
|
|
@ -173,7 +173,7 @@ data class ExtensionDetailsState(
|
||||||
) {
|
) {
|
||||||
|
|
||||||
val sources: List<ExtensionSourceItem>
|
val sources: List<ExtensionSourceItem>
|
||||||
get() = _sources ?: emptyList()
|
get() = _sources.orEmpty()
|
||||||
|
|
||||||
val isLoading: Boolean
|
val isLoading: Boolean
|
||||||
get() = extension == null || _sources == null
|
get() = extension == null || _sources == null
|
||||||
|
|
|
@ -64,7 +64,7 @@ data class MigrateMangaState(
|
||||||
) {
|
) {
|
||||||
|
|
||||||
val titles: List<Manga>
|
val titles: List<Manga>
|
||||||
get() = titleList ?: emptyList()
|
get() = titleList.orEmpty()
|
||||||
|
|
||||||
val isLoading: Boolean
|
val isLoading: Boolean
|
||||||
get() = source == null || titleList == null
|
get() = source == null || titleList == null
|
||||||
|
|
|
@ -311,7 +311,7 @@ class BrowseSourceScreenModel(
|
||||||
return getCategories.subscribe()
|
return getCategories.subscribe()
|
||||||
.firstOrNull()
|
.firstOrNull()
|
||||||
?.filterNot { it.isSystemCategory }
|
?.filterNot { it.isSystemCategory }
|
||||||
?: emptyList()
|
.orEmpty()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun getDuplicateLibraryManga(manga: Manga): Manga? {
|
suspend fun getDuplicateLibraryManga(manga: Manga): Manga? {
|
||||||
|
|
|
@ -355,7 +355,7 @@ class LibraryScreenModel(
|
||||||
categories
|
categories
|
||||||
}
|
}
|
||||||
|
|
||||||
displayCategories.associateWith { libraryManga[it.id] ?: emptyList() }
|
displayCategories.associateWith { libraryManga[it.id].orEmpty() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -700,7 +700,7 @@ class LibraryScreenModel(
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getLibraryItemsByPage(page: Int): List<LibraryItem> {
|
fun getLibraryItemsByPage(page: Int): List<LibraryItem> {
|
||||||
return library.values.toTypedArray().getOrNull(page) ?: emptyList()
|
return library.values.toTypedArray().getOrNull(page).orEmpty()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getMangaCountForCategory(category: Category): Int? {
|
fun getMangaCountForCategory(category: Category): Int? {
|
||||||
|
|
|
@ -25,7 +25,8 @@ class DirectoryPageLoader(val file: File) : PageLoader() {
|
||||||
stream = streamFn
|
stream = streamFn
|
||||||
status = Page.State.READY
|
status = Page.State.READY
|
||||||
}
|
}
|
||||||
} ?: emptyList()
|
}
|
||||||
|
.orEmpty()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -57,10 +57,9 @@ class MaterialSpinnerView @JvmOverloads constructor(context: Context, attrs: Att
|
||||||
val title = getString(R.styleable.MaterialSpinnerView_title).orEmpty()
|
val title = getString(R.styleable.MaterialSpinnerView_title).orEmpty()
|
||||||
binding.title.text = title
|
binding.title.text = title
|
||||||
|
|
||||||
val viewEntries = (
|
val viewEntries = getTextArray(R.styleable.MaterialSpinnerView_android_entries)
|
||||||
getTextArray(R.styleable.MaterialSpinnerView_android_entries)
|
.orEmpty()
|
||||||
?: emptyArray()
|
.map { it.toString() }
|
||||||
).map { it.toString() }
|
|
||||||
entries = viewEntries
|
entries = viewEntries
|
||||||
binding.details.text = viewEntries.firstOrNull().orEmpty()
|
binding.details.text = viewEntries.firstOrNull().orEmpty()
|
||||||
}
|
}
|
||||||
|
|
|
@ -290,8 +290,8 @@ actual class LocalSource(
|
||||||
fun getFormat(chapter: SChapter): Format {
|
fun getFormat(chapter: SChapter): Format {
|
||||||
try {
|
try {
|
||||||
return fileSystem.getBaseDirectories()
|
return fileSystem.getBaseDirectories()
|
||||||
.map { directory -> File(directory, chapter.url) }
|
.map { dir -> File(dir, chapter.url) }
|
||||||
.find { chapterFile -> chapterFile.exists() }
|
.find { it.exists() }
|
||||||
?.let(Format.Companion::valueOf)
|
?.let(Format.Companion::valueOf)
|
||||||
?: throw Exception(context.getString(R.string.chapter_not_found))
|
?: throw Exception(context.getString(R.string.chapter_not_found))
|
||||||
} catch (e: Format.UnknownFormatException) {
|
} catch (e: Format.UnknownFormatException) {
|
||||||
|
|
Loading…
Reference in a new issue