|
@@ -30,6 +30,7 @@ import eu.kanade.presentation.components.AppBar
|
|
import eu.kanade.presentation.components.ChapterDownloadAction
|
|
import eu.kanade.presentation.components.ChapterDownloadAction
|
|
import eu.kanade.presentation.components.EmptyScreen
|
|
import eu.kanade.presentation.components.EmptyScreen
|
|
import eu.kanade.presentation.components.LazyColumn
|
|
import eu.kanade.presentation.components.LazyColumn
|
|
|
|
+import eu.kanade.presentation.components.LoadingScreen
|
|
import eu.kanade.presentation.components.MangaBottomActionMenu
|
|
import eu.kanade.presentation.components.MangaBottomActionMenu
|
|
import eu.kanade.presentation.components.Scaffold
|
|
import eu.kanade.presentation.components.Scaffold
|
|
import eu.kanade.presentation.components.SwipeRefreshIndicator
|
|
import eu.kanade.presentation.components.SwipeRefreshIndicator
|
|
@@ -55,10 +56,7 @@ fun UpdateScreen(
|
|
presenter: UpdatesPresenter,
|
|
presenter: UpdatesPresenter,
|
|
onClickCover: (UpdatesItem) -> Unit,
|
|
onClickCover: (UpdatesItem) -> Unit,
|
|
onBackClicked: () -> Unit,
|
|
onBackClicked: () -> Unit,
|
|
- onDownloadChapter: (List<UpdatesItem>, ChapterDownloadAction) -> Unit,
|
|
|
|
) {
|
|
) {
|
|
- val updatesListState = rememberLazyListState()
|
|
|
|
-
|
|
|
|
val internalOnBackPressed = {
|
|
val internalOnBackPressed = {
|
|
if (presenter.selectionMode) {
|
|
if (presenter.selectionMode) {
|
|
presenter.toggleAllSelection(false)
|
|
presenter.toggleAllSelection(false)
|
|
@@ -69,7 +67,6 @@ fun UpdateScreen(
|
|
BackHandler(onBack = internalOnBackPressed)
|
|
BackHandler(onBack = internalOnBackPressed)
|
|
|
|
|
|
val context = LocalContext.current
|
|
val context = LocalContext.current
|
|
-
|
|
|
|
val onUpdateLibrary = {
|
|
val onUpdateLibrary = {
|
|
val started = LibraryUpdateService.start(context)
|
|
val started = LibraryUpdateService.start(context)
|
|
context.toast(if (started) R.string.updating_library else R.string.update_already_running)
|
|
context.toast(if (started) R.string.updating_library else R.string.update_already_running)
|
|
@@ -92,7 +89,7 @@ fun UpdateScreen(
|
|
bottomBar = {
|
|
bottomBar = {
|
|
UpdatesBottomBar(
|
|
UpdatesBottomBar(
|
|
selected = presenter.selected,
|
|
selected = presenter.selected,
|
|
- onDownloadChapter = onDownloadChapter,
|
|
|
|
|
|
+ onDownloadChapter = presenter::downloadChapters,
|
|
onMultiBookmarkClicked = presenter::bookmarkUpdates,
|
|
onMultiBookmarkClicked = presenter::bookmarkUpdates,
|
|
onMultiMarkAsReadClicked = presenter::markUpdatesRead,
|
|
onMultiMarkAsReadClicked = presenter::markUpdatesRead,
|
|
onMultiDeleteClicked = {
|
|
onMultiDeleteClicked = {
|
|
@@ -102,69 +99,93 @@ fun UpdateScreen(
|
|
)
|
|
)
|
|
},
|
|
},
|
|
) { contentPadding ->
|
|
) { contentPadding ->
|
|
- // During selection mode bottom nav is not visible
|
|
|
|
- val contentPaddingWithNavBar = contentPadding +
|
|
|
|
- if (presenter.selectionMode) {
|
|
|
|
- PaddingValues()
|
|
|
|
- } else {
|
|
|
|
- bottomNavPaddingValues
|
|
|
|
|
|
+ when {
|
|
|
|
+ presenter.isLoading -> LoadingScreen()
|
|
|
|
+ presenter.uiModels.isEmpty() -> EmptyScreen(textResource = R.string.information_no_recent)
|
|
|
|
+ else -> {
|
|
|
|
+ UpdateScreenContent(
|
|
|
|
+ presenter = presenter,
|
|
|
|
+ contentPadding = contentPadding,
|
|
|
|
+ onUpdateLibrary = onUpdateLibrary,
|
|
|
|
+ onClickCover = onClickCover,
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+@Composable
|
|
|
|
+private fun UpdateScreenContent(
|
|
|
|
+ presenter: UpdatesPresenter,
|
|
|
|
+ contentPadding: PaddingValues,
|
|
|
|
+ onUpdateLibrary: () -> Boolean,
|
|
|
|
+ onClickCover: (UpdatesItem) -> Unit,
|
|
|
|
+) {
|
|
|
|
+ val context = LocalContext.current
|
|
|
|
+ val updatesListState = rememberLazyListState()
|
|
|
|
|
|
- val scope = rememberCoroutineScope()
|
|
|
|
- var isRefreshing by remember { mutableStateOf(false) }
|
|
|
|
|
|
+ // During selection mode bottom nav is not visible
|
|
|
|
+ val contentPaddingWithNavBar = contentPadding +
|
|
|
|
+ if (presenter.selectionMode) {
|
|
|
|
+ PaddingValues()
|
|
|
|
+ } else {
|
|
|
|
+ bottomNavPaddingValues
|
|
|
|
+ }
|
|
|
|
|
|
- SwipeRefresh(
|
|
|
|
- state = rememberSwipeRefreshState(isRefreshing = isRefreshing),
|
|
|
|
- onRefresh = {
|
|
|
|
- val started = onUpdateLibrary()
|
|
|
|
- if (!started) return@SwipeRefresh
|
|
|
|
- scope.launch {
|
|
|
|
- // Fake refresh status but hide it after a second as it's a long running task
|
|
|
|
- isRefreshing = true
|
|
|
|
- delay(1000)
|
|
|
|
- isRefreshing = false
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- swipeEnabled = presenter.selectionMode.not(),
|
|
|
|
- indicatorPadding = contentPaddingWithNavBar,
|
|
|
|
- indicator = { s, trigger ->
|
|
|
|
- SwipeRefreshIndicator(
|
|
|
|
- state = s,
|
|
|
|
- refreshTriggerDistance = trigger,
|
|
|
|
- )
|
|
|
|
- },
|
|
|
|
- ) {
|
|
|
|
- if (presenter.uiModels.isEmpty()) {
|
|
|
|
- EmptyScreen(textResource = R.string.information_no_recent)
|
|
|
|
- } else {
|
|
|
|
- VerticalFastScroller(
|
|
|
|
- listState = updatesListState,
|
|
|
|
- topContentPadding = contentPaddingWithNavBar.calculateTopPadding(),
|
|
|
|
- endContentPadding = contentPaddingWithNavBar.calculateEndPadding(LocalLayoutDirection.current),
|
|
|
|
- ) {
|
|
|
|
- LazyColumn(
|
|
|
|
- modifier = Modifier.fillMaxHeight(),
|
|
|
|
- state = updatesListState,
|
|
|
|
- contentPadding = contentPaddingWithNavBar,
|
|
|
|
- ) {
|
|
|
|
- if (presenter.lastUpdated > 0L) {
|
|
|
|
- updatesLastUpdatedItem(presenter.lastUpdated)
|
|
|
|
- }
|
|
|
|
|
|
+ val scope = rememberCoroutineScope()
|
|
|
|
+ var isRefreshing by remember { mutableStateOf(false) }
|
|
|
|
|
|
- updatesUiItems(
|
|
|
|
- uiModels = presenter.uiModels,
|
|
|
|
- selectionMode = presenter.selectionMode,
|
|
|
|
- onUpdateSelected = presenter::toggleSelection,
|
|
|
|
- onClickCover = onClickCover,
|
|
|
|
- onClickUpdate = {
|
|
|
|
- val intent = ReaderActivity.newIntent(context, it.update.mangaId, it.update.chapterId)
|
|
|
|
- context.startActivity(intent)
|
|
|
|
- },
|
|
|
|
- onDownloadChapter = onDownloadChapter,
|
|
|
|
- relativeTime = presenter.relativeTime,
|
|
|
|
- dateFormat = presenter.dateFormat,
|
|
|
|
- )
|
|
|
|
|
|
+ SwipeRefresh(
|
|
|
|
+ state = rememberSwipeRefreshState(isRefreshing = isRefreshing),
|
|
|
|
+ onRefresh = {
|
|
|
|
+ val started = onUpdateLibrary()
|
|
|
|
+ if (!started) return@SwipeRefresh
|
|
|
|
+ scope.launch {
|
|
|
|
+ // Fake refresh status but hide it after a second as it's a long running task
|
|
|
|
+ isRefreshing = true
|
|
|
|
+ delay(1000)
|
|
|
|
+ isRefreshing = false
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ swipeEnabled = presenter.selectionMode.not(),
|
|
|
|
+ indicatorPadding = contentPaddingWithNavBar,
|
|
|
|
+ indicator = { s, trigger ->
|
|
|
|
+ SwipeRefreshIndicator(
|
|
|
|
+ state = s,
|
|
|
|
+ refreshTriggerDistance = trigger,
|
|
|
|
+ )
|
|
|
|
+ },
|
|
|
|
+ ) {
|
|
|
|
+ if (presenter.uiModels.isEmpty()) {
|
|
|
|
+ EmptyScreen(textResource = R.string.information_no_recent)
|
|
|
|
+ } else {
|
|
|
|
+ VerticalFastScroller(
|
|
|
|
+ listState = updatesListState,
|
|
|
|
+ topContentPadding = contentPaddingWithNavBar.calculateTopPadding(),
|
|
|
|
+ endContentPadding = contentPaddingWithNavBar.calculateEndPadding(LocalLayoutDirection.current),
|
|
|
|
+ ) {
|
|
|
|
+ LazyColumn(
|
|
|
|
+ modifier = Modifier.fillMaxHeight(),
|
|
|
|
+ state = updatesListState,
|
|
|
|
+ contentPadding = contentPaddingWithNavBar,
|
|
|
|
+ ) {
|
|
|
|
+ if (presenter.lastUpdated > 0L) {
|
|
|
|
+ updatesLastUpdatedItem(presenter.lastUpdated)
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ updatesUiItems(
|
|
|
|
+ uiModels = presenter.uiModels,
|
|
|
|
+ selectionMode = presenter.selectionMode,
|
|
|
|
+ onUpdateSelected = presenter::toggleSelection,
|
|
|
|
+ onClickCover = onClickCover,
|
|
|
|
+ onClickUpdate = {
|
|
|
|
+ val intent = ReaderActivity.newIntent(context, it.update.mangaId, it.update.chapterId)
|
|
|
|
+ context.startActivity(intent)
|
|
|
|
+ },
|
|
|
|
+ onDownloadChapter = presenter::downloadChapters,
|
|
|
|
+ relativeTime = presenter.relativeTime,
|
|
|
|
+ dateFormat = presenter.dateFormat,
|
|
|
|
+ )
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -193,7 +214,7 @@ fun UpdateScreen(
|
|
}
|
|
}
|
|
|
|
|
|
@Composable
|
|
@Composable
|
|
-fun UpdatesAppBar(
|
|
|
|
|
|
+private fun UpdatesAppBar(
|
|
modifier: Modifier = Modifier,
|
|
modifier: Modifier = Modifier,
|
|
incognitoMode: Boolean,
|
|
incognitoMode: Boolean,
|
|
downloadedOnlyMode: Boolean,
|
|
downloadedOnlyMode: Boolean,
|
|
@@ -239,7 +260,7 @@ fun UpdatesAppBar(
|
|
}
|
|
}
|
|
|
|
|
|
@Composable
|
|
@Composable
|
|
-fun UpdatesBottomBar(
|
|
|
|
|
|
+private fun UpdatesBottomBar(
|
|
selected: List<UpdatesUiModel.Item>,
|
|
selected: List<UpdatesUiModel.Item>,
|
|
onDownloadChapter: (List<UpdatesItem>, ChapterDownloadAction) -> Unit,
|
|
onDownloadChapter: (List<UpdatesItem>, ChapterDownloadAction) -> Unit,
|
|
onMultiBookmarkClicked: (List<UpdatesItem>, bookmark: Boolean) -> Unit,
|
|
onMultiBookmarkClicked: (List<UpdatesItem>, bookmark: Boolean) -> Unit,
|