123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- package eu.kanade.presentation.manga.components
- import androidx.compose.foundation.layout.Box
- import androidx.compose.foundation.layout.Column
- import androidx.compose.material.icons.Icons
- import androidx.compose.material.icons.outlined.ArrowBack
- import androidx.compose.material.icons.outlined.Close
- import androidx.compose.material.icons.outlined.Download
- import androidx.compose.material.icons.outlined.FilterList
- import androidx.compose.material.icons.outlined.FlipToBack
- import androidx.compose.material.icons.outlined.SelectAll
- import androidx.compose.material3.DropdownMenuItem
- import androidx.compose.material3.Icon
- import androidx.compose.material3.IconButton
- import androidx.compose.material3.LocalContentColor
- import androidx.compose.material3.MaterialTheme
- import androidx.compose.material3.Text
- import androidx.compose.material3.TopAppBar
- import androidx.compose.material3.TopAppBarDefaults
- import androidx.compose.material3.surfaceColorAtElevation
- import androidx.compose.runtime.Composable
- import androidx.compose.runtime.mutableStateOf
- import androidx.compose.runtime.remember
- import androidx.compose.ui.Modifier
- import androidx.compose.ui.draw.alpha
- import androidx.compose.ui.res.stringResource
- import androidx.compose.ui.text.style.TextOverflow
- import androidx.compose.ui.unit.dp
- import eu.kanade.presentation.components.DownloadDropdownMenu
- import eu.kanade.presentation.components.OverflowMenu
- import eu.kanade.presentation.manga.DownloadAction
- import eu.kanade.tachiyomi.R
- import tachiyomi.presentation.core.theme.active
- @Composable
- fun MangaToolbar(
- modifier: Modifier = Modifier,
- title: String,
- titleAlphaProvider: () -> Float,
- backgroundAlphaProvider: () -> Float = titleAlphaProvider,
- hasFilters: Boolean,
- onBackClicked: () -> Unit,
- onClickFilter: () -> Unit,
- onClickShare: (() -> Unit)?,
- onClickDownload: ((DownloadAction) -> Unit)?,
- onClickEditCategory: (() -> Unit)?,
- onClickMigrate: (() -> Unit)?,
- // For action mode
- actionModeCounter: Int,
- onSelectAll: () -> Unit,
- onInvertSelection: () -> Unit,
- ) {
- Column(
- modifier = modifier,
- ) {
- val isActionMode = actionModeCounter > 0
- TopAppBar(
- title = {
- Text(
- text = if (isActionMode) actionModeCounter.toString() else title,
- maxLines = 1,
- overflow = TextOverflow.Ellipsis,
- modifier = Modifier.alpha(if (isActionMode) 1f else titleAlphaProvider()),
- )
- },
- navigationIcon = {
- IconButton(onClick = onBackClicked) {
- Icon(
- imageVector = if (isActionMode) Icons.Outlined.Close else Icons.Outlined.ArrowBack,
- contentDescription = stringResource(R.string.abc_action_bar_up_description),
- )
- }
- },
- actions = {
- if (isActionMode) {
- IconButton(onClick = onSelectAll) {
- Icon(
- imageVector = Icons.Outlined.SelectAll,
- contentDescription = stringResource(R.string.action_select_all),
- )
- }
- IconButton(onClick = onInvertSelection) {
- Icon(
- imageVector = Icons.Outlined.FlipToBack,
- contentDescription = stringResource(R.string.action_select_inverse),
- )
- }
- } else {
- if (onClickDownload != null) {
- val (downloadExpanded, onDownloadExpanded) = remember { mutableStateOf(false) }
- Box {
- IconButton(onClick = { onDownloadExpanded(!downloadExpanded) }) {
- Icon(
- imageVector = Icons.Outlined.Download,
- contentDescription = stringResource(R.string.manga_download),
- )
- }
- val onDismissRequest = { onDownloadExpanded(false) }
- DownloadDropdownMenu(
- expanded = downloadExpanded,
- onDismissRequest = onDismissRequest,
- onDownloadClicked = onClickDownload,
- )
- }
- }
- val filterTint = if (hasFilters) MaterialTheme.colorScheme.active else LocalContentColor.current
- IconButton(onClick = onClickFilter) {
- Icon(Icons.Outlined.FilterList, contentDescription = stringResource(R.string.action_filter), tint = filterTint)
- }
- if (onClickEditCategory != null || onClickMigrate != null || onClickShare != null) {
- OverflowMenu { closeMenu ->
- if (onClickEditCategory != null) {
- DropdownMenuItem(
- text = { Text(text = stringResource(R.string.action_edit_categories)) },
- onClick = {
- onClickEditCategory()
- closeMenu()
- },
- )
- }
- if (onClickMigrate != null) {
- DropdownMenuItem(
- text = { Text(text = stringResource(R.string.action_migrate)) },
- onClick = {
- onClickMigrate()
- closeMenu()
- },
- )
- }
- if (onClickShare != null) {
- DropdownMenuItem(
- text = { Text(text = stringResource(R.string.action_share)) },
- onClick = {
- onClickShare()
- closeMenu()
- },
- )
- }
- }
- }
- }
- },
- colors = TopAppBarDefaults.smallTopAppBarColors(
- containerColor = MaterialTheme.colorScheme
- .surfaceColorAtElevation(3.dp)
- .copy(alpha = if (isActionMode) 1f else backgroundAlphaProvider()),
- ),
- )
- }
- }
|