LibrarySettingsDialog.kt 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. package eu.kanade.presentation.library
  2. import androidx.compose.foundation.layout.Column
  3. import androidx.compose.foundation.layout.ColumnScope
  4. import androidx.compose.foundation.layout.padding
  5. import androidx.compose.foundation.rememberScrollState
  6. import androidx.compose.foundation.verticalScroll
  7. import androidx.compose.runtime.Composable
  8. import androidx.compose.runtime.getValue
  9. import androidx.compose.ui.Modifier
  10. import androidx.compose.ui.res.stringResource
  11. import eu.kanade.presentation.components.TabbedDialog
  12. import eu.kanade.presentation.components.TabbedDialogPaddings
  13. import eu.kanade.presentation.components.TriStateItem
  14. import eu.kanade.presentation.util.collectAsState
  15. import eu.kanade.tachiyomi.R
  16. import eu.kanade.tachiyomi.ui.library.LibrarySettingsScreenModel
  17. import tachiyomi.domain.category.model.Category
  18. import tachiyomi.domain.library.model.LibraryDisplayMode
  19. import tachiyomi.domain.library.model.LibrarySort
  20. import tachiyomi.domain.library.model.display
  21. import tachiyomi.domain.library.model.sort
  22. import tachiyomi.domain.library.service.LibraryPreferences
  23. import tachiyomi.domain.manga.model.TriStateFilter
  24. import tachiyomi.presentation.core.components.CheckboxItem
  25. import tachiyomi.presentation.core.components.HeadingItem
  26. import tachiyomi.presentation.core.components.RadioItem
  27. import tachiyomi.presentation.core.components.SortItem
  28. @Composable
  29. fun LibrarySettingsDialog(
  30. onDismissRequest: () -> Unit,
  31. screenModel: LibrarySettingsScreenModel,
  32. category: Category,
  33. ) {
  34. TabbedDialog(
  35. onDismissRequest = onDismissRequest,
  36. tabTitles = listOf(
  37. stringResource(R.string.action_filter),
  38. stringResource(R.string.action_sort),
  39. stringResource(R.string.action_display),
  40. ),
  41. ) { contentPadding, page ->
  42. Column(
  43. modifier = Modifier
  44. .padding(contentPadding)
  45. .padding(vertical = TabbedDialogPaddings.Vertical)
  46. .verticalScroll(rememberScrollState()),
  47. ) {
  48. when (page) {
  49. 0 -> FilterPage(
  50. screenModel = screenModel,
  51. )
  52. 1 -> SortPage(
  53. category = category,
  54. screenModel = screenModel,
  55. )
  56. 2 -> DisplayPage(
  57. category = category,
  58. screenModel = screenModel,
  59. )
  60. }
  61. }
  62. }
  63. }
  64. @Composable
  65. private fun ColumnScope.FilterPage(
  66. screenModel: LibrarySettingsScreenModel,
  67. ) {
  68. val filterDownloaded by screenModel.libraryPreferences.filterDownloaded().collectAsState()
  69. val downloadedOnly by screenModel.preferences.downloadedOnly().collectAsState()
  70. TriStateItem(
  71. label = stringResource(R.string.label_downloaded),
  72. state = if (downloadedOnly) {
  73. TriStateFilter.ENABLED_IS
  74. } else {
  75. filterDownloaded
  76. },
  77. enabled = !downloadedOnly,
  78. onClick = { screenModel.toggleFilter(LibraryPreferences::filterDownloaded) },
  79. )
  80. val filterUnread by screenModel.libraryPreferences.filterUnread().collectAsState()
  81. TriStateItem(
  82. label = stringResource(R.string.action_filter_unread),
  83. state = filterUnread,
  84. onClick = { screenModel.toggleFilter(LibraryPreferences::filterUnread) },
  85. )
  86. val filterStarted by screenModel.libraryPreferences.filterStarted().collectAsState()
  87. TriStateItem(
  88. label = stringResource(R.string.label_started),
  89. state = filterStarted,
  90. onClick = { screenModel.toggleFilter(LibraryPreferences::filterStarted) },
  91. )
  92. val filterBookmarked by screenModel.libraryPreferences.filterBookmarked().collectAsState()
  93. TriStateItem(
  94. label = stringResource(R.string.action_filter_bookmarked),
  95. state = filterBookmarked,
  96. onClick = { screenModel.toggleFilter(LibraryPreferences::filterBookmarked) },
  97. )
  98. val filterCompleted by screenModel.libraryPreferences.filterCompleted().collectAsState()
  99. TriStateItem(
  100. label = stringResource(R.string.completed),
  101. state = filterCompleted,
  102. onClick = { screenModel.toggleFilter(LibraryPreferences::filterCompleted) },
  103. )
  104. when (screenModel.trackServices.size) {
  105. 0 -> {
  106. // No trackers
  107. }
  108. 1 -> {
  109. val service = screenModel.trackServices[0]
  110. val filterTracker by screenModel.libraryPreferences.filterTracking(service.id.toInt()).collectAsState()
  111. TriStateItem(
  112. label = stringResource(R.string.action_filter_tracked),
  113. state = filterTracker,
  114. onClick = { screenModel.toggleTracker(service.id.toInt()) },
  115. )
  116. }
  117. else -> {
  118. HeadingItem(R.string.action_filter_tracked)
  119. screenModel.trackServices.map { service ->
  120. val filterTracker by screenModel.libraryPreferences.filterTracking(service.id.toInt()).collectAsState()
  121. TriStateItem(
  122. label = stringResource(service.nameRes()),
  123. state = filterTracker,
  124. onClick = { screenModel.toggleTracker(service.id.toInt()) },
  125. )
  126. }
  127. }
  128. }
  129. }
  130. @Composable
  131. private fun ColumnScope.SortPage(
  132. category: Category,
  133. screenModel: LibrarySettingsScreenModel,
  134. ) {
  135. val sortingMode = category.sort.type
  136. val sortDescending = !category.sort.isAscending
  137. listOf(
  138. R.string.action_sort_alpha to LibrarySort.Type.Alphabetical,
  139. R.string.action_sort_total to LibrarySort.Type.TotalChapters,
  140. R.string.action_sort_last_read to LibrarySort.Type.LastRead,
  141. R.string.action_sort_last_manga_update to LibrarySort.Type.LastUpdate,
  142. R.string.action_sort_unread_count to LibrarySort.Type.UnreadCount,
  143. R.string.action_sort_latest_chapter to LibrarySort.Type.LatestChapter,
  144. R.string.action_sort_chapter_fetch_date to LibrarySort.Type.ChapterFetchDate,
  145. R.string.action_sort_date_added to LibrarySort.Type.DateAdded,
  146. ).map { (titleRes, mode) ->
  147. SortItem(
  148. label = stringResource(titleRes),
  149. sortDescending = sortDescending.takeIf { sortingMode == mode },
  150. onClick = {
  151. val isTogglingDirection = sortingMode == mode
  152. val direction = when {
  153. isTogglingDirection -> if (sortDescending) LibrarySort.Direction.Ascending else LibrarySort.Direction.Descending
  154. else -> if (sortDescending) LibrarySort.Direction.Descending else LibrarySort.Direction.Ascending
  155. }
  156. screenModel.setSort(category, mode, direction)
  157. },
  158. )
  159. }
  160. }
  161. @Composable
  162. private fun ColumnScope.DisplayPage(
  163. category: Category,
  164. screenModel: LibrarySettingsScreenModel,
  165. ) {
  166. HeadingItem(R.string.action_display_mode)
  167. listOf(
  168. R.string.action_display_grid to LibraryDisplayMode.CompactGrid,
  169. R.string.action_display_comfortable_grid to LibraryDisplayMode.ComfortableGrid,
  170. R.string.action_display_cover_only_grid to LibraryDisplayMode.CoverOnlyGrid,
  171. R.string.action_display_list to LibraryDisplayMode.List,
  172. ).map { (titleRes, mode) ->
  173. RadioItem(
  174. label = stringResource(titleRes),
  175. selected = category.display == mode,
  176. onClick = { screenModel.setDisplayMode(category, mode) },
  177. )
  178. }
  179. HeadingItem(R.string.complications_header)
  180. val downloadBadge by screenModel.libraryPreferences.downloadBadge().collectAsState()
  181. CheckboxItem(
  182. label = stringResource(R.string.action_display_download_badge),
  183. checked = downloadBadge,
  184. onClick = {
  185. screenModel.togglePreference(LibraryPreferences::downloadBadge)
  186. },
  187. )
  188. val localBadge by screenModel.libraryPreferences.localBadge().collectAsState()
  189. CheckboxItem(
  190. label = stringResource(R.string.action_display_local_badge),
  191. checked = localBadge,
  192. onClick = {
  193. screenModel.togglePreference(LibraryPreferences::localBadge)
  194. },
  195. )
  196. val languageBadge by screenModel.libraryPreferences.languageBadge().collectAsState()
  197. CheckboxItem(
  198. label = stringResource(R.string.action_display_language_badge),
  199. checked = languageBadge,
  200. onClick = {
  201. screenModel.togglePreference(LibraryPreferences::languageBadge)
  202. },
  203. )
  204. val showContinueReadingButton by screenModel.libraryPreferences.showContinueReadingButton().collectAsState()
  205. CheckboxItem(
  206. label = stringResource(R.string.action_display_show_continue_reading_button),
  207. checked = showContinueReadingButton,
  208. onClick = {
  209. screenModel.togglePreference(LibraryPreferences::showContinueReadingButton)
  210. },
  211. )
  212. HeadingItem(R.string.tabs_header)
  213. val categoryTabs by screenModel.libraryPreferences.categoryTabs().collectAsState()
  214. CheckboxItem(
  215. label = stringResource(R.string.action_display_show_tabs),
  216. checked = categoryTabs,
  217. onClick = {
  218. screenModel.togglePreference(LibraryPreferences::categoryTabs)
  219. },
  220. )
  221. val categoryNumberOfItems by screenModel.libraryPreferences.categoryNumberOfItems().collectAsState()
  222. CheckboxItem(
  223. label = stringResource(R.string.action_display_show_number_of_items),
  224. checked = categoryNumberOfItems,
  225. onClick = {
  226. screenModel.togglePreference(LibraryPreferences::categoryNumberOfItems)
  227. },
  228. )
  229. }