Use kotlin.time extensions in some more places

(cherry picked from commit 5c868d784679b55e413366c5d4bdea75253bf8f4)

# Conflicts:
#	app/src/main/java/eu/kanade/tachiyomi/ui/main/MainActivity.kt
This commit is contained in:
arkon 2022-10-22 19:57:55 -04:00 committed by Jobobby04
parent f367a121ac
commit 6d46283aee
8 changed files with 20 additions and 12 deletions

View File

@ -15,6 +15,7 @@ import androidx.compose.ui.focus.focusRequester
import androidx.compose.ui.res.stringResource
import eu.kanade.tachiyomi.R
import kotlinx.coroutines.delay
import kotlin.time.Duration.Companion.seconds
@Composable
fun CategoryCreateDialog(
@ -71,7 +72,7 @@ fun CategoryCreateDialog(
LaunchedEffect(focusRequester) {
// TODO: https://issuetracker.google.com/issues/204502668
delay(100)
delay(0.1.seconds)
focusRequester.requestFocus()
}
}
@ -118,7 +119,7 @@ fun CategoryRenameDialog(
LaunchedEffect(focusRequester) {
// TODO: https://issuetracker.google.com/issues/204502668
delay(100)
delay(0.1.seconds)
focusRequester.requestFocus()
}
}

View File

@ -60,6 +60,7 @@ import kotlinx.coroutines.Job
import kotlinx.coroutines.delay
import kotlinx.coroutines.isActive
import kotlinx.coroutines.launch
import kotlin.time.Duration.Companion.seconds
@Composable
fun MangaBottomActionMenu(
@ -92,7 +93,7 @@ fun MangaBottomActionMenu(
(0 until 7).forEach { i -> confirm[i] = i == toConfirmIndex }
resetJob?.cancel()
resetJob = scope.launch {
delay(1000)
delay(1.seconds)
if (isActive) confirm[toConfirmIndex] = false
}
}
@ -244,7 +245,7 @@ fun LibraryBottomActionMenu(
(0 until 5).forEach { i -> confirm[i] = i == toConfirmIndex }
resetJob?.cancel()
resetJob = scope.launch {
delay(1000)
delay(1.seconds)
if (isActive) confirm[toConfirmIndex] = false
}
}

View File

@ -27,6 +27,7 @@ import eu.kanade.presentation.library.LibraryState
import eu.kanade.tachiyomi.ui.library.LibraryItem
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import kotlin.time.Duration.Companion.seconds
@Composable
fun LibraryContent(
@ -112,7 +113,7 @@ fun LibraryContent(
scope.launch {
// Fake refresh status but hide it after a second as it's a long running task
isRefreshing = true
delay(1000)
delay(1.seconds)
isRefreshing = false
}
},

View File

@ -15,6 +15,7 @@ import eu.kanade.presentation.components.ScrollbarLazyColumn
import eu.kanade.presentation.more.settings.screen.SearchableSettings
import eu.kanade.presentation.more.settings.widget.PreferenceGroupHeader
import kotlinx.coroutines.delay
import kotlin.time.Duration.Companion.seconds
/**
* Preference Screen composable which contains a list of [Preference] items
@ -33,7 +34,7 @@ fun PreferenceScreen(
LaunchedEffect(Unit) {
val i = items.findHighlightedIndex(highlightKey)
if (i >= 0) {
delay(500)
delay(0.5.seconds)
state.animateScrollToItem(i)
}
SearchableSettings.highlightKey = null

View File

@ -32,6 +32,7 @@ import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import eu.kanade.presentation.more.settings.LocalPreferenceHighlighted
import kotlinx.coroutines.delay
import kotlin.time.Duration.Companion.seconds
@Composable
internal fun BasePreferenceWidget(
@ -89,7 +90,7 @@ internal fun Modifier.highlightBackground(highlighted: Boolean): Modifier = comp
LaunchedEffect(Unit) {
if (highlighted) {
highlightFlag = true
delay(3000)
delay(3.seconds)
highlightFlag = false
}
}

View File

@ -48,6 +48,7 @@ import kotlinx.coroutines.delay
import kotlinx.coroutines.flow.collectLatest
import kotlinx.coroutines.launch
import java.util.Date
import kotlin.time.Duration.Companion.seconds
@Composable
fun UpdateScreen(
@ -135,7 +136,7 @@ private fun UpdateScreenContent(
scope.launch {
// Fake refresh status but hide it after a second as it's a long running task
isRefreshing = true
delay(1000)
delay(1.seconds)
isRefreshing = false
}
},

View File

@ -25,6 +25,7 @@ import uy.kohesive.injekt.Injekt
import uy.kohesive.injekt.api.get
import java.util.concurrent.ConcurrentHashMap
import java.util.concurrent.TimeUnit
import kotlin.time.Duration.Companion.seconds
/**
* Cache where we dump the downloads directory from the filesystem. This class is needed because
@ -258,13 +259,13 @@ class DownloadCache(
var sources = getSources()
// Try to wait until extensions and sources have loaded
withTimeout(30000L) {
withTimeout(30.seconds) {
while (!extensionManager.isInitialized) {
delay(2000L)
delay(2.seconds)
}
while (sources.isEmpty()) {
delay(2000L)
delay(2.seconds)
sources = getSources()
}
}

View File

@ -87,6 +87,7 @@ import uy.kohesive.injekt.Injekt
import uy.kohesive.injekt.api.get
import uy.kohesive.injekt.injectLazy
import java.util.LinkedList
import kotlin.time.Duration.Companion.seconds
class MainActivity : BaseActivity() {
@ -609,7 +610,7 @@ class MainActivity : BaseActivity() {
private suspend fun resetExitConfirmation() {
isConfirmingExit = true
val toast = toast(R.string.confirm_exit, Toast.LENGTH_LONG)
delay(2000)
delay(2.seconds)
toast.cancel()
isConfirmingExit = false
}