2022-04-24 14:35:59 -04:00
|
|
|
package eu.kanade.presentation.source
|
|
|
|
|
|
|
|
import androidx.compose.foundation.Image
|
|
|
|
import androidx.compose.foundation.clickable
|
|
|
|
import androidx.compose.foundation.layout.Column
|
|
|
|
import androidx.compose.foundation.layout.WindowInsets
|
|
|
|
import androidx.compose.foundation.layout.asPaddingValues
|
|
|
|
import androidx.compose.foundation.layout.aspectRatio
|
|
|
|
import androidx.compose.foundation.layout.fillMaxWidth
|
|
|
|
import androidx.compose.foundation.layout.height
|
|
|
|
import androidx.compose.foundation.layout.navigationBars
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
import androidx.compose.foundation.lazy.LazyColumn
|
|
|
|
import androidx.compose.foundation.lazy.items
|
|
|
|
import androidx.compose.material.icons.Icons
|
|
|
|
import androidx.compose.material.icons.filled.PushPin
|
|
|
|
import androidx.compose.material.icons.outlined.PushPin
|
|
|
|
import androidx.compose.material3.AlertDialog
|
|
|
|
import androidx.compose.material3.Icon
|
|
|
|
import androidx.compose.material3.IconButton
|
2022-04-24 15:04:00 -04:00
|
|
|
import androidx.compose.material3.LocalTextStyle
|
2022-04-24 14:35:59 -04:00
|
|
|
import androidx.compose.material3.MaterialTheme
|
|
|
|
import androidx.compose.material3.Text
|
|
|
|
import androidx.compose.material3.TextButton
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
import androidx.compose.runtime.collectAsState
|
|
|
|
import androidx.compose.runtime.getValue
|
|
|
|
import androidx.compose.runtime.mutableStateOf
|
|
|
|
import androidx.compose.runtime.remember
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
import androidx.compose.ui.input.nestedscroll.NestedScrollConnection
|
|
|
|
import androidx.compose.ui.input.nestedscroll.nestedScroll
|
|
|
|
import androidx.compose.ui.platform.LocalContext
|
|
|
|
import androidx.compose.ui.res.painterResource
|
|
|
|
import androidx.compose.ui.res.stringResource
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
import eu.kanade.domain.source.model.Pin
|
|
|
|
import eu.kanade.domain.source.model.Source
|
|
|
|
import eu.kanade.presentation.components.EmptyScreen
|
2022-04-27 08:36:16 -04:00
|
|
|
import eu.kanade.presentation.components.LoadingScreen
|
|
|
|
import eu.kanade.presentation.source.components.BaseSourceItem
|
2022-04-24 14:35:59 -04:00
|
|
|
import eu.kanade.presentation.theme.header
|
|
|
|
import eu.kanade.presentation.util.horizontalPadding
|
|
|
|
import eu.kanade.tachiyomi.R
|
|
|
|
import eu.kanade.tachiyomi.source.LocalSource
|
|
|
|
import eu.kanade.tachiyomi.ui.browse.source.SourcePresenter
|
|
|
|
import eu.kanade.tachiyomi.ui.browse.source.UiModel
|
|
|
|
import eu.kanade.tachiyomi.util.system.LocaleHelper
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun SourceScreen(
|
|
|
|
nestedScrollInterop: NestedScrollConnection,
|
|
|
|
presenter: SourcePresenter,
|
|
|
|
onClickItem: (Source) -> Unit,
|
|
|
|
onClickDisable: (Source) -> Unit,
|
|
|
|
onClickLatest: (Source) -> Unit,
|
|
|
|
onClickPin: (Source) -> Unit,
|
|
|
|
) {
|
|
|
|
val state by presenter.state.collectAsState()
|
|
|
|
|
|
|
|
when {
|
2022-04-27 08:36:16 -04:00
|
|
|
state.isLoading -> LoadingScreen()
|
2022-04-24 14:35:59 -04:00
|
|
|
state.hasError -> Text(text = state.error!!.message!!)
|
|
|
|
state.isEmpty -> EmptyScreen(message = "")
|
|
|
|
else -> SourceList(
|
|
|
|
nestedScrollConnection = nestedScrollInterop,
|
|
|
|
list = state.sources,
|
|
|
|
onClickItem = onClickItem,
|
|
|
|
onClickDisable = onClickDisable,
|
|
|
|
onClickLatest = onClickLatest,
|
|
|
|
onClickPin = onClickPin,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun SourceList(
|
|
|
|
nestedScrollConnection: NestedScrollConnection,
|
|
|
|
list: List<UiModel>,
|
|
|
|
onClickItem: (Source) -> Unit,
|
|
|
|
onClickDisable: (Source) -> Unit,
|
|
|
|
onClickLatest: (Source) -> Unit,
|
|
|
|
onClickPin: (Source) -> Unit,
|
|
|
|
) {
|
|
|
|
val (sourceState, setSourceState) = remember { mutableStateOf<Source?>(null) }
|
|
|
|
LazyColumn(
|
|
|
|
modifier = Modifier
|
|
|
|
.nestedScroll(nestedScrollConnection),
|
|
|
|
contentPadding = WindowInsets.navigationBars.asPaddingValues(),
|
|
|
|
) {
|
|
|
|
items(
|
|
|
|
items = list,
|
|
|
|
contentType = {
|
|
|
|
when (it) {
|
|
|
|
is UiModel.Header -> "header"
|
|
|
|
is UiModel.Item -> "item"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
key = {
|
|
|
|
when (it) {
|
|
|
|
is UiModel.Header -> it.hashCode()
|
|
|
|
is UiModel.Item -> it.source.key()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
) { model ->
|
|
|
|
when (model) {
|
|
|
|
is UiModel.Header -> {
|
|
|
|
SourceHeader(
|
|
|
|
modifier = Modifier.animateItemPlacement(),
|
|
|
|
language = model.language
|
|
|
|
)
|
|
|
|
}
|
|
|
|
is UiModel.Item -> SourceItem(
|
|
|
|
modifier = Modifier.animateItemPlacement(),
|
2022-04-27 08:36:16 -04:00
|
|
|
source = model.source,
|
2022-04-24 14:35:59 -04:00
|
|
|
onClickItem = onClickItem,
|
|
|
|
onLongClickItem = {
|
|
|
|
setSourceState(it)
|
|
|
|
},
|
|
|
|
onClickLatest = onClickLatest,
|
|
|
|
onClickPin = onClickPin,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sourceState != null) {
|
|
|
|
SourceOptionsDialog(
|
|
|
|
source = sourceState,
|
|
|
|
onClickPin = {
|
|
|
|
onClickPin(sourceState)
|
|
|
|
setSourceState(null)
|
|
|
|
},
|
|
|
|
onClickDisable = {
|
|
|
|
onClickDisable(sourceState)
|
|
|
|
setSourceState(null)
|
|
|
|
},
|
|
|
|
onDismiss = { setSourceState(null) }
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun SourceHeader(
|
|
|
|
modifier: Modifier = Modifier,
|
|
|
|
language: String
|
|
|
|
) {
|
|
|
|
val context = LocalContext.current
|
|
|
|
Text(
|
|
|
|
text = LocaleHelper.getSourceDisplayName(language, context),
|
|
|
|
modifier = modifier
|
|
|
|
.padding(horizontal = horizontalPadding, vertical = 8.dp),
|
|
|
|
style = MaterialTheme.typography.header
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun SourceItem(
|
|
|
|
modifier: Modifier = Modifier,
|
2022-04-27 08:36:16 -04:00
|
|
|
source: Source,
|
2022-04-24 14:35:59 -04:00
|
|
|
onClickItem: (Source) -> Unit,
|
|
|
|
onLongClickItem: (Source) -> Unit,
|
|
|
|
onClickLatest: (Source) -> Unit,
|
|
|
|
onClickPin: (Source) -> Unit
|
|
|
|
) {
|
2022-04-27 08:36:16 -04:00
|
|
|
BaseSourceItem(
|
|
|
|
modifier = modifier,
|
|
|
|
source = source,
|
|
|
|
onClickItem = { onClickItem(source) },
|
|
|
|
onLongClickItem = { onLongClickItem(source) },
|
|
|
|
action = { source ->
|
|
|
|
if (source.supportsLatest) {
|
|
|
|
TextButton(onClick = { onClickLatest(source) }) {
|
|
|
|
Text(
|
|
|
|
text = stringResource(id = R.string.latest),
|
|
|
|
style = LocalTextStyle.current.copy(
|
|
|
|
color = MaterialTheme.colorScheme.primary
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
2022-04-24 14:35:59 -04:00
|
|
|
}
|
2022-04-27 08:36:16 -04:00
|
|
|
SourcePinButton(
|
|
|
|
isPinned = Pin.Pinned in source.pin,
|
|
|
|
onClick = { onClickPin(source) }
|
|
|
|
)
|
|
|
|
},
|
|
|
|
)
|
2022-04-24 14:35:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun SourceIcon(
|
|
|
|
source: Source
|
|
|
|
) {
|
|
|
|
val icon = source.icon
|
|
|
|
val modifier = Modifier
|
|
|
|
.height(40.dp)
|
|
|
|
.aspectRatio(1f)
|
|
|
|
if (icon != null) {
|
|
|
|
Image(
|
|
|
|
bitmap = icon,
|
|
|
|
contentDescription = "",
|
|
|
|
modifier = modifier,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
Image(
|
|
|
|
painter = painterResource(id = R.mipmap.ic_local_source),
|
|
|
|
contentDescription = "",
|
|
|
|
modifier = modifier,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun SourcePinButton(
|
|
|
|
isPinned: Boolean,
|
|
|
|
onClick: () -> Unit
|
|
|
|
) {
|
|
|
|
val icon = if (isPinned) Icons.Filled.PushPin else Icons.Outlined.PushPin
|
|
|
|
val tint = if (isPinned) MaterialTheme.colorScheme.primary else MaterialTheme.colorScheme.onBackground
|
|
|
|
IconButton(onClick = onClick) {
|
|
|
|
Icon(
|
|
|
|
imageVector = icon,
|
|
|
|
contentDescription = "",
|
|
|
|
tint = tint
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun SourceOptionsDialog(
|
|
|
|
source: Source,
|
|
|
|
onClickPin: () -> Unit,
|
|
|
|
onClickDisable: () -> Unit,
|
|
|
|
onDismiss: () -> Unit,
|
|
|
|
) {
|
|
|
|
AlertDialog(
|
|
|
|
title = {
|
|
|
|
Text(text = source.nameWithLanguage)
|
|
|
|
},
|
|
|
|
text = {
|
|
|
|
Column {
|
|
|
|
val textId = if (Pin.Pinned in source.pin) R.string.action_unpin else R.string.action_pin
|
|
|
|
Text(
|
|
|
|
text = stringResource(id = textId),
|
|
|
|
modifier = Modifier
|
|
|
|
.clickable(onClick = onClickPin)
|
|
|
|
.fillMaxWidth()
|
|
|
|
.padding(vertical = 16.dp)
|
|
|
|
)
|
|
|
|
if (source.id != LocalSource.ID) {
|
|
|
|
Text(
|
|
|
|
text = stringResource(id = R.string.action_disable),
|
|
|
|
modifier = Modifier
|
|
|
|
.clickable(onClick = onClickDisable)
|
|
|
|
.fillMaxWidth()
|
|
|
|
.padding(vertical = 16.dp)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onDismissRequest = onDismiss,
|
|
|
|
confirmButton = {},
|
|
|
|
)
|
|
|
|
}
|