mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Add shortcut to edit categories screen from category setting dialog (closes #6280)
This commit is contained in:
parent
86016de6cb
commit
a72098b862
1 changed files with 11 additions and 8 deletions
|
@ -56,21 +56,24 @@ class ChangeMangaCategoriesDialog<T>(bundle: Bundle? = null) :
|
||||||
.filterNotNull()
|
.filterNotNull()
|
||||||
(targetController as? Listener)?.updateCategoriesForMangas(mangas, add, remove)
|
(targetController as? Listener)?.updateCategoriesForMangas(mangas, add, remove)
|
||||||
}
|
}
|
||||||
|
setNeutralButton(R.string.action_edit) { _, _ -> openCategoryController() }
|
||||||
} else {
|
} else {
|
||||||
setMessage(R.string.information_empty_category_dialog)
|
setMessage(R.string.information_empty_category_dialog)
|
||||||
setPositiveButton(R.string.action_edit_categories) { _, _ ->
|
setPositiveButton(R.string.action_edit_categories) { _, _ -> openCategoryController() }
|
||||||
if (targetController is LibraryController) {
|
|
||||||
val libController = targetController as LibraryController
|
|
||||||
libController.clearSelection()
|
|
||||||
}
|
|
||||||
router.popCurrentController()
|
|
||||||
router.pushController(CategoryController().withFadeTransaction())
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.create()
|
.create()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun openCategoryController() {
|
||||||
|
if (targetController is LibraryController) {
|
||||||
|
val libController = targetController as LibraryController
|
||||||
|
libController.clearSelection()
|
||||||
|
}
|
||||||
|
router.popCurrentController()
|
||||||
|
router.pushController(CategoryController().withFadeTransaction())
|
||||||
|
}
|
||||||
|
|
||||||
interface Listener {
|
interface Listener {
|
||||||
fun updateCategoriesForMangas(mangas: List<Manga>, addCategories: List<Category>, removeCategories: List<Category> = emptyList<Category>())
|
fun updateCategoriesForMangas(mangas: List<Manga>, addCategories: List<Category>, removeCategories: List<Category> = emptyList<Category>())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue