MangaToolbar.kt 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. package eu.kanade.presentation.manga.components
  2. import androidx.compose.foundation.layout.Box
  3. import androidx.compose.foundation.layout.Column
  4. import androidx.compose.material.icons.Icons
  5. import androidx.compose.material.icons.outlined.ArrowBack
  6. import androidx.compose.material.icons.outlined.Close
  7. import androidx.compose.material.icons.outlined.Download
  8. import androidx.compose.material.icons.outlined.FilterList
  9. import androidx.compose.material.icons.outlined.FlipToBack
  10. import androidx.compose.material.icons.outlined.SelectAll
  11. import androidx.compose.material3.DropdownMenuItem
  12. import androidx.compose.material3.Icon
  13. import androidx.compose.material3.IconButton
  14. import androidx.compose.material3.LocalContentColor
  15. import androidx.compose.material3.MaterialTheme
  16. import androidx.compose.material3.Text
  17. import androidx.compose.material3.TopAppBar
  18. import androidx.compose.material3.TopAppBarDefaults
  19. import androidx.compose.material3.surfaceColorAtElevation
  20. import androidx.compose.runtime.Composable
  21. import androidx.compose.runtime.mutableStateOf
  22. import androidx.compose.runtime.remember
  23. import androidx.compose.ui.Modifier
  24. import androidx.compose.ui.draw.alpha
  25. import androidx.compose.ui.res.stringResource
  26. import androidx.compose.ui.text.style.TextOverflow
  27. import androidx.compose.ui.unit.dp
  28. import eu.kanade.presentation.components.DownloadDropdownMenu
  29. import eu.kanade.presentation.components.OverflowMenu
  30. import eu.kanade.presentation.manga.DownloadAction
  31. import eu.kanade.tachiyomi.R
  32. import tachiyomi.presentation.core.theme.active
  33. @Composable
  34. fun MangaToolbar(
  35. modifier: Modifier = Modifier,
  36. title: String,
  37. titleAlphaProvider: () -> Float,
  38. backgroundAlphaProvider: () -> Float = titleAlphaProvider,
  39. hasFilters: Boolean,
  40. onBackClicked: () -> Unit,
  41. onClickFilter: () -> Unit,
  42. onClickShare: (() -> Unit)?,
  43. onClickDownload: ((DownloadAction) -> Unit)?,
  44. onClickEditCategory: (() -> Unit)?,
  45. onClickMigrate: (() -> Unit)?,
  46. // For action mode
  47. actionModeCounter: Int,
  48. onSelectAll: () -> Unit,
  49. onInvertSelection: () -> Unit,
  50. ) {
  51. Column(
  52. modifier = modifier,
  53. ) {
  54. val isActionMode = actionModeCounter > 0
  55. TopAppBar(
  56. title = {
  57. Text(
  58. text = if (isActionMode) actionModeCounter.toString() else title,
  59. maxLines = 1,
  60. overflow = TextOverflow.Ellipsis,
  61. modifier = Modifier.alpha(if (isActionMode) 1f else titleAlphaProvider()),
  62. )
  63. },
  64. navigationIcon = {
  65. IconButton(onClick = onBackClicked) {
  66. Icon(
  67. imageVector = if (isActionMode) Icons.Outlined.Close else Icons.Outlined.ArrowBack,
  68. contentDescription = stringResource(R.string.abc_action_bar_up_description),
  69. )
  70. }
  71. },
  72. actions = {
  73. if (isActionMode) {
  74. IconButton(onClick = onSelectAll) {
  75. Icon(
  76. imageVector = Icons.Outlined.SelectAll,
  77. contentDescription = stringResource(R.string.action_select_all),
  78. )
  79. }
  80. IconButton(onClick = onInvertSelection) {
  81. Icon(
  82. imageVector = Icons.Outlined.FlipToBack,
  83. contentDescription = stringResource(R.string.action_select_inverse),
  84. )
  85. }
  86. } else {
  87. if (onClickDownload != null) {
  88. val (downloadExpanded, onDownloadExpanded) = remember { mutableStateOf(false) }
  89. Box {
  90. IconButton(onClick = { onDownloadExpanded(!downloadExpanded) }) {
  91. Icon(
  92. imageVector = Icons.Outlined.Download,
  93. contentDescription = stringResource(R.string.manga_download),
  94. )
  95. }
  96. val onDismissRequest = { onDownloadExpanded(false) }
  97. DownloadDropdownMenu(
  98. expanded = downloadExpanded,
  99. onDismissRequest = onDismissRequest,
  100. onDownloadClicked = onClickDownload,
  101. )
  102. }
  103. }
  104. val filterTint = if (hasFilters) MaterialTheme.colorScheme.active else LocalContentColor.current
  105. IconButton(onClick = onClickFilter) {
  106. Icon(Icons.Outlined.FilterList, contentDescription = stringResource(R.string.action_filter), tint = filterTint)
  107. }
  108. if (onClickEditCategory != null || onClickMigrate != null || onClickShare != null) {
  109. OverflowMenu { closeMenu ->
  110. if (onClickEditCategory != null) {
  111. DropdownMenuItem(
  112. text = { Text(text = stringResource(R.string.action_edit_categories)) },
  113. onClick = {
  114. onClickEditCategory()
  115. closeMenu()
  116. },
  117. )
  118. }
  119. if (onClickMigrate != null) {
  120. DropdownMenuItem(
  121. text = { Text(text = stringResource(R.string.action_migrate)) },
  122. onClick = {
  123. onClickMigrate()
  124. closeMenu()
  125. },
  126. )
  127. }
  128. if (onClickShare != null) {
  129. DropdownMenuItem(
  130. text = { Text(text = stringResource(R.string.action_share)) },
  131. onClick = {
  132. onClickShare()
  133. closeMenu()
  134. },
  135. )
  136. }
  137. }
  138. }
  139. }
  140. },
  141. colors = TopAppBarDefaults.smallTopAppBarColors(
  142. containerColor = MaterialTheme.colorScheme
  143. .surfaceColorAtElevation(3.dp)
  144. .copy(alpha = if (isActionMode) 1f else backgroundAlphaProvider()),
  145. ),
  146. )
  147. }
  148. }