PlayerAndroid/app/src/main/java/code/name/monkey/retromusic/preferences/LibraryPreference.kt

112 lines
3.9 KiB
Kotlin
Raw Normal View History

2019-07-22 15:26:37 +00:00
/*
* Copyright (c) 2019 Hemanth Savarala.
*
* Licensed under the GNU General Public License v3
*
* This is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by
* the Free Software Foundation either version 3 of the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*/
package code.name.monkey.retromusic.preferences
import android.app.Dialog
import android.content.Context
import android.os.Bundle
import android.util.AttributeSet
import android.view.LayoutInflater
2019-07-22 15:26:37 +00:00
import android.widget.Toast
2020-02-22 12:10:12 +00:00
import androidx.core.graphics.BlendModeColorFilterCompat
import androidx.core.graphics.BlendModeCompat.SRC_IN
import androidx.preference.PreferenceDialogFragmentCompat
2019-07-22 15:26:37 +00:00
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import code.name.monkey.appthemehelper.common.prefs.supportv7.ATEDialogPreference
2019-11-04 18:43:54 +00:00
import code.name.monkey.retromusic.R
2019-07-22 15:26:37 +00:00
import code.name.monkey.retromusic.adapter.CategoryInfoAdapter
2020-02-22 12:10:12 +00:00
import code.name.monkey.retromusic.extensions.colorControlNormal
2019-07-22 15:26:37 +00:00
import code.name.monkey.retromusic.model.CategoryInfo
import code.name.monkey.retromusic.util.PreferenceUtilKT
2019-07-22 15:26:37 +00:00
import com.afollestad.materialdialogs.MaterialDialog
import com.afollestad.materialdialogs.customview.customView
2020-02-22 12:10:12 +00:00
class LibraryPreference @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = -1,
defStyleRes: Int = -1
) :
ATEDialogPreference(context, attrs, defStyleAttr, defStyleRes) {
2019-07-22 15:26:37 +00:00
init {
2020-02-22 12:10:12 +00:00
icon?.colorFilter =
BlendModeColorFilterCompat.createBlendModeColorFilterCompat(
2020-05-20 20:28:38 +00:00
context.colorControlNormal(),
SRC_IN
)
2019-07-22 15:26:37 +00:00
}
}
class LibraryPreferenceDialog : PreferenceDialogFragmentCompat() {
override fun onDialogClosed(positiveResult: Boolean) {
}
2019-07-22 15:26:37 +00:00
lateinit var adapter: CategoryInfoAdapter
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
val view = LayoutInflater.from(requireContext())
.inflate(R.layout.preference_dialog_library_categories, null)
adapter = CategoryInfoAdapter(PreferenceUtilKT.libraryCategory)
2019-07-22 15:26:37 +00:00
2019-11-04 18:43:54 +00:00
val recyclerView = view.findViewById<RecyclerView>(R.id.recycler_view)
2019-07-22 15:26:37 +00:00
recyclerView.layoutManager = LinearLayoutManager(activity)
recyclerView.adapter = adapter
adapter.attachToRecyclerView(recyclerView)
return MaterialDialog(requireContext())
2020-02-22 12:10:12 +00:00
.title(R.string.library_categories)
.customView(view = view)
.positiveButton(android.R.string.ok) {
updateCategories(adapter.categoryInfos)
dismiss()
}
.negativeButton(android.R.string.cancel) {
dismiss()
}
.neutralButton(R.string.reset_action) {
adapter.categoryInfos = PreferenceUtilKT.defaultCategories
2020-02-22 12:10:12 +00:00
}
.noAutoDismiss()
2019-07-22 15:26:37 +00:00
}
private fun updateCategories(categories: List<CategoryInfo>) {
if (getSelected(categories) == 0) return
if (getSelected(categories) > 5) {
Toast.makeText(context, "Not more than 5 items", Toast.LENGTH_SHORT).show()
return
}
PreferenceUtilKT.libraryCategory = categories
2019-07-22 15:26:37 +00:00
}
private fun getSelected(categories: List<CategoryInfo>): Int {
var selected = 0
for (categoryInfo in categories) {
if (categoryInfo.visible)
selected++
}
return selected
}
companion object {
fun newInstance(): LibraryPreferenceDialog {
return LibraryPreferenceDialog()
2019-07-22 15:26:37 +00:00
}
}
}