|
@@ -34,6 +34,10 @@ import rx.Subscription
|
|
|
import rx.android.schedulers.AndroidSchedulers
|
|
|
import rx.subjects.PublishSubject
|
|
|
import java.util.concurrent.TimeUnit.MILLISECONDS
|
|
|
+import android.widget.Toast
|
|
|
+import eu.kanade.tachiyomi.data.database.models.Category
|
|
|
+import eu.kanade.tachiyomi.data.preference.PreferencesHelper
|
|
|
+import uy.kohesive.injekt.injectLazy
|
|
|
|
|
|
/**
|
|
|
* Fragment that shows the manga from the catalogue.
|
|
@@ -45,6 +49,11 @@ open class CatalogueFragment : BaseRxFragment<CataloguePresenter>(),
|
|
|
FlexibleAdapter.OnItemLongClickListener,
|
|
|
FlexibleAdapter.EndlessScrollListener<ProgressItem> {
|
|
|
|
|
|
+ /**
|
|
|
+ * Preferences helper.
|
|
|
+ */
|
|
|
+ private val preferences: PreferencesHelper by injectLazy()
|
|
|
+
|
|
|
/**
|
|
|
* Spinner shown in the toolbar to change the selected source.
|
|
|
*/
|
|
@@ -530,23 +539,62 @@ open class CatalogueFragment : BaseRxFragment<CataloguePresenter>(),
|
|
|
/**
|
|
|
* Called when a manga is long clicked.
|
|
|
*
|
|
|
+ * Adds the manga to the default category if none is set it shows a list of categories for the user to put the manga
|
|
|
+ * in, the list consists of the default category plus the user's categories. The default category is preselected on
|
|
|
+ * new manga, and on already favorited manga the manga's categories are preselected.
|
|
|
+ *
|
|
|
* @param position the position of the element clicked.
|
|
|
*/
|
|
|
override fun onItemLongClick(position: Int) {
|
|
|
val manga = (adapter.getItem(position) as? CatalogueItem?)?.manga ?: return
|
|
|
+ val categories = presenter.getCategories()
|
|
|
|
|
|
- val textRes = if (manga.favorite) R.string.remove_from_library else R.string.add_to_library
|
|
|
-
|
|
|
- MaterialDialog.Builder(activity)
|
|
|
- .items(getString(textRes))
|
|
|
- .itemsCallback { dialog, itemView, which, text ->
|
|
|
- when (which) {
|
|
|
- 0 -> {
|
|
|
- presenter.changeMangaFavorite(manga)
|
|
|
- adapter.notifyItemChanged(position)
|
|
|
+ val defaultCategory = categories.find { it.id == preferences.defaultCategory()}
|
|
|
+ if(defaultCategory != null) {
|
|
|
+ if(!manga.favorite) {
|
|
|
+ presenter.changeMangaFavorite(manga)
|
|
|
+ }
|
|
|
+ presenter.moveMangaToCategory(defaultCategory, manga)
|
|
|
+ } else {
|
|
|
+ MaterialDialog.Builder(activity)
|
|
|
+ .title(R.string.action_move_category)
|
|
|
+ .items(categories.map { it.name })
|
|
|
+ .itemsCallbackMultiChoice(presenter.getMangaCategoryIds(manga)) { dialog, position, _ ->
|
|
|
+ if (defaultSelectedWithOtherCategory(position)) {
|
|
|
+ // Deselect default category
|
|
|
+ dialog.setSelectedIndices(position.filter {it > 0}.toTypedArray())
|
|
|
+ Toast.makeText(dialog.context, R.string.invalid_combination, Toast.LENGTH_SHORT).show()
|
|
|
}
|
|
|
+
|
|
|
+ true
|
|
|
+ }
|
|
|
+ .alwaysCallMultiChoiceCallback()
|
|
|
+ .positiveText(android.R.string.ok)
|
|
|
+ .negativeText(android.R.string.cancel)
|
|
|
+ .onPositive { dialog, _ ->
|
|
|
+ updateMangaCategories(manga, dialog, categories, position)
|
|
|
}
|
|
|
- }.show()
|
|
|
+ .build()
|
|
|
+ .show()
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private fun defaultSelectedWithOtherCategory(position: Array<Int>): Boolean {
|
|
|
+ return position.contains(0) && position.count() > 1
|
|
|
+ }
|
|
|
+
|
|
|
+ private fun updateMangaCategories(manga: Manga, dialog: MaterialDialog, categories: List<Category>, position: Int) {
|
|
|
+ val selectedCategories = dialog.selectedIndices?.map { categories[it] } ?: emptyList()
|
|
|
+
|
|
|
+ if(!selectedCategories.isEmpty()) {
|
|
|
+ if(!manga.favorite) {
|
|
|
+ presenter.changeMangaFavorite(manga)
|
|
|
+ }
|
|
|
+ presenter.moveMangaToCategories(selectedCategories.filter { it.id != 0}, manga)
|
|
|
+ } else {
|
|
|
+ presenter.changeMangaFavorite(manga)
|
|
|
+ }
|
|
|
+ adapter.notifyItemChanged(position)
|
|
|
}
|
|
|
|
|
|
}
|