PlayerAndroid/app/src/main/java/code/name/monkey/retromusic/activities/base/AbsSlidingMusicPanelActivit...

404 lines
16 KiB
Kotlin
Raw Normal View History

2020-10-06 08:46:04 +00:00
/*
* Copyright (c) 2020 Hemanth Savarla.
*
* 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.
*
*/
2019-04-20 05:29:45 +00:00
package code.name.monkey.retromusic.activities.base
2018-11-30 01:06:16 +00:00
import android.content.res.ColorStateList
import android.graphics.Color
2018-11-30 01:06:16 +00:00
import android.os.Bundle
2019-12-01 11:28:57 +00:00
import android.view.View
import android.view.ViewGroup
import android.view.ViewTreeObserver
2020-05-11 09:51:22 +00:00
import android.widget.FrameLayout
import androidx.core.animation.doOnEnd
2020-08-13 08:24:36 +00:00
import androidx.core.view.ViewCompat
2021-10-13 07:38:25 +00:00
import androidx.core.view.WindowInsetsCompat
2020-08-13 08:24:36 +00:00
import androidx.core.view.isVisible
import androidx.fragment.app.Fragment
2020-10-02 18:05:09 +00:00
import androidx.fragment.app.commit
import code.name.monkey.appthemehelper.util.ATHUtil
import code.name.monkey.appthemehelper.util.ColorUtil
2019-02-23 17:39:02 +00:00
import code.name.monkey.retromusic.R
2020-05-09 05:55:42 +00:00
import code.name.monkey.retromusic.RetroBottomSheetBehavior
import code.name.monkey.retromusic.databinding.SlidingMusicPanelLayoutBinding
2020-10-11 17:22:34 +00:00
import code.name.monkey.retromusic.extensions.*
2020-07-28 19:18:34 +00:00
import code.name.monkey.retromusic.fragments.LibraryViewModel
2019-12-01 11:28:57 +00:00
import code.name.monkey.retromusic.fragments.NowPlayingScreen
import code.name.monkey.retromusic.fragments.NowPlayingScreen.*
import code.name.monkey.retromusic.fragments.base.AbsPlayerFragment
import code.name.monkey.retromusic.fragments.other.MiniPlayerFragment
import code.name.monkey.retromusic.fragments.player.adaptive.AdaptiveFragment
import code.name.monkey.retromusic.fragments.player.blur.BlurPlayerFragment
import code.name.monkey.retromusic.fragments.player.card.CardFragment
import code.name.monkey.retromusic.fragments.player.cardblur.CardBlurFragment
import code.name.monkey.retromusic.fragments.player.circle.CirclePlayerFragment
2020-10-02 12:56:17 +00:00
import code.name.monkey.retromusic.fragments.player.classic.ClassicPlayerFragment
import code.name.monkey.retromusic.fragments.player.color.ColorFragment
import code.name.monkey.retromusic.fragments.player.fit.FitFragment
import code.name.monkey.retromusic.fragments.player.flat.FlatPlayerFragment
import code.name.monkey.retromusic.fragments.player.full.FullPlayerFragment
import code.name.monkey.retromusic.fragments.player.gradient.GradientPlayerFragment
import code.name.monkey.retromusic.fragments.player.material.MaterialFragment
import code.name.monkey.retromusic.fragments.player.normal.PlayerFragment
2020-09-23 21:10:16 +00:00
import code.name.monkey.retromusic.fragments.player.peak.PeakPlayerFragment
import code.name.monkey.retromusic.fragments.player.plain.PlainPlayerFragment
import code.name.monkey.retromusic.fragments.player.simple.SimplePlayerFragment
import code.name.monkey.retromusic.fragments.player.tiny.TinyPlayerFragment
import code.name.monkey.retromusic.fragments.queue.PlayingQueueFragment
2019-05-19 17:10:21 +00:00
import code.name.monkey.retromusic.helper.MusicPlayerRemote
2019-12-01 15:27:01 +00:00
import code.name.monkey.retromusic.model.CategoryInfo
2020-06-06 18:57:28 +00:00
import code.name.monkey.retromusic.util.PreferenceUtil
2021-10-22 14:53:23 +00:00
import code.name.monkey.retromusic.util.RetroUtil
import com.google.android.material.bottomsheet.BottomSheetBehavior.*
2020-07-28 19:18:34 +00:00
import org.koin.androidx.viewmodel.ext.android.viewModel
2019-02-23 17:39:02 +00:00
2020-08-21 14:19:15 +00:00
abstract class AbsSlidingMusicPanelActivity : AbsMusicServiceActivity() {
2019-12-01 11:28:57 +00:00
companion object {
val TAG: String = AbsSlidingMusicPanelActivity::class.java.simpleName
}
2021-10-13 07:38:25 +00:00
private var windowInsets: WindowInsetsCompat? = null
protected val libraryViewModel by viewModel<LibraryViewModel>()
private lateinit var bottomSheetBehavior: RetroBottomSheetBehavior<FrameLayout>
2020-10-02 12:56:17 +00:00
private var playerFragment: AbsPlayerFragment? = null
2019-12-01 11:28:57 +00:00
private var miniPlayerFragment: MiniPlayerFragment? = null
private var nowPlayingScreen: NowPlayingScreen? = null
2019-12-01 11:28:57 +00:00
private var taskColor: Int = 0
private var paletteColor: Int = Color.WHITE
protected abstract fun createContentView(): SlidingMusicPanelLayoutBinding
2019-12-01 11:28:57 +00:00
private val panelState: Int
get() = bottomSheetBehavior.state
private lateinit var binding: SlidingMusicPanelLayoutBinding
private val bottomSheetCallbackList = object : BottomSheetCallback() {
2019-12-01 11:28:57 +00:00
override fun onSlide(bottomSheet: View, slideOffset: Float) {
setMiniPlayerAlphaProgress(slideOffset)
}
override fun onStateChanged(bottomSheet: View, newState: Int) {
when (newState) {
STATE_EXPANDED -> {
2019-12-01 11:28:57 +00:00
onPanelExpanded()
}
STATE_COLLAPSED -> {
2019-12-01 11:28:57 +00:00
onPanelCollapsed()
}
else -> {
println("Do something")
2019-12-01 11:28:57 +00:00
}
}
}
}
2020-09-23 21:10:16 +00:00
fun getBottomSheetBehavior() = bottomSheetBehavior
2019-12-01 11:28:57 +00:00
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = createContentView()
setContentView(binding.root)
2021-10-13 07:38:25 +00:00
ViewCompat.setOnApplyWindowInsetsListener(
binding.root
) { _, insets ->
windowInsets = insets
insets
}
2021-11-11 14:51:57 +00:00
bottomNavigationView.drawAboveSystemBarsWithPadding()
2021-10-22 14:53:23 +00:00
if (RetroUtil.isLandscape()) {
binding.slidingPanel.drawAboveSystemBarsWithPadding(true)
2021-10-22 14:53:23 +00:00
}
2019-12-01 11:28:57 +00:00
chooseFragmentForTheme()
setupSlidingUpPanel()
2020-07-28 19:18:34 +00:00
setupBottomSheet()
updateColor()
binding.slidingPanel.backgroundTintList = ColorStateList.valueOf(darkAccentColor())
bottomNavigationView.backgroundTintList = ColorStateList.valueOf(darkAccentColor())
2020-09-23 21:10:16 +00:00
}
2020-05-11 09:51:22 +00:00
2020-07-28 19:18:34 +00:00
private fun setupBottomSheet() {
bottomSheetBehavior = from(binding.slidingPanel) as RetroBottomSheetBehavior
bottomSheetBehavior.addBottomSheetCallback(bottomSheetCallbackList)
2021-10-25 12:38:10 +00:00
bottomSheetBehavior.isHideable = false
2021-10-11 06:16:29 +00:00
setMiniPlayerAlphaProgress(0F)
2019-12-01 11:28:57 +00:00
}
override fun onResume() {
super.onResume()
if (nowPlayingScreen != PreferenceUtil.nowPlayingScreen) {
2019-12-01 11:28:57 +00:00
postRecreate()
}
2020-12-03 20:57:44 +00:00
if (bottomSheetBehavior.state == STATE_EXPANDED) {
setMiniPlayerAlphaProgress(1f)
}
2019-12-01 11:28:57 +00:00
}
override fun onDestroy() {
super.onDestroy()
bottomSheetBehavior.removeBottomSheetCallback(bottomSheetCallbackList)
2019-12-01 11:28:57 +00:00
}
protected fun wrapSlidingMusicPanel(): SlidingMusicPanelLayoutBinding {
return SlidingMusicPanelLayoutBinding.inflate(layoutInflater)
2019-12-01 11:28:57 +00:00
}
2020-08-11 21:31:09 +00:00
fun collapsePanel() {
bottomSheetBehavior.state = STATE_COLLAPSED
2019-12-01 11:28:57 +00:00
}
fun expandPanel() {
bottomSheetBehavior.state = STATE_EXPANDED
2019-12-01 11:28:57 +00:00
}
private fun setMiniPlayerAlphaProgress(progress: Float) {
if (progress < 0) return
2019-12-01 11:28:57 +00:00
val alpha = 1 - progress
miniPlayerFragment?.view?.alpha = 1 - (progress / 0.2F)
2019-12-01 11:28:57 +00:00
miniPlayerFragment?.view?.visibility = if (alpha == 0f) View.GONE else View.VISIBLE
binding.bottomNavigationView.translationY = progress * 500
binding.bottomNavigationView.alpha = alpha
binding.playerFragmentContainer.alpha = (progress - 0.2F) / 0.2F
2019-12-01 11:28:57 +00:00
}
open fun onPanelCollapsed() {
setMiniPlayerAlphaProgress(0F)
2019-12-01 11:28:57 +00:00
// restore values
setLightStatusBarAuto(surfaceColor())
setLightNavigationAuto()
setTaskDescriptionColor(taskColor)
2019-12-01 11:28:57 +00:00
}
open fun onPanelExpanded() {
setMiniPlayerAlphaProgress(1F)
onPaletteColorChanged()
2019-12-01 11:28:57 +00:00
}
private fun setupSlidingUpPanel() {
binding.slidingPanel.viewTreeObserver.addOnGlobalLayoutListener(object :
ViewTreeObserver.OnGlobalLayoutListener {
2019-12-01 11:28:57 +00:00
override fun onGlobalLayout() {
binding.slidingPanel.viewTreeObserver.removeOnGlobalLayoutListener(this)
2020-09-23 21:10:16 +00:00
if (nowPlayingScreen != Peak) {
val params = binding.slidingPanel.layoutParams as ViewGroup.LayoutParams
2020-09-23 21:10:16 +00:00
params.height = ViewGroup.LayoutParams.MATCH_PARENT
binding.slidingPanel.layoutParams = params
2020-09-23 21:10:16 +00:00
}
2019-12-01 11:28:57 +00:00
when (panelState) {
STATE_EXPANDED -> onPanelExpanded()
STATE_COLLAPSED -> onPanelCollapsed()
2020-07-28 19:18:34 +00:00
else -> {
2020-10-06 08:46:04 +00:00
// playerFragment!!.onHide()
2020-07-28 19:18:34 +00:00
}
2019-12-01 11:28:57 +00:00
}
}
})
}
2021-11-11 14:51:57 +00:00
val bottomNavigationView get() = binding.bottomNavigationView
2019-12-01 11:28:57 +00:00
override fun onServiceConnected() {
super.onServiceConnected()
if (MusicPlayerRemote.playingQueue.isNotEmpty()) {
binding.slidingPanel.viewTreeObserver.addOnGlobalLayoutListener(object :
ViewTreeObserver.OnGlobalLayoutListener {
2019-12-01 11:28:57 +00:00
override fun onGlobalLayout() {
binding.slidingPanel.viewTreeObserver.removeOnGlobalLayoutListener(this)
2021-10-25 12:38:10 +00:00
hideBottomSheet(false)
2019-12-01 11:28:57 +00:00
}
})
2021-10-25 12:38:10 +00:00
} // don't call hideBottomSheet(true) here as it causes a bug with the SlidingUpPanelLayout
2019-12-01 11:28:57 +00:00
}
override fun onQueueChanged() {
super.onQueueChanged()
// Mini player should be hidden in Playing Queue
2021-10-25 12:38:10 +00:00
// it may pop up if hideBottomSheet is called
if (currentFragment(R.id.fragment_container) !is PlayingQueueFragment &&
bottomSheetBehavior.state != STATE_EXPANDED
) {
2021-10-25 12:38:10 +00:00
hideBottomSheet(MusicPlayerRemote.playingQueue.isEmpty())
}
2019-12-01 11:28:57 +00:00
}
override fun onBackPressed() {
if (!handleBackPress()) super.onBackPressed()
}
private fun handleBackPress(): Boolean {
if (bottomSheetBehavior.peekHeight != 0 && playerFragment!!.onBackPressed()) return true
if (panelState == STATE_EXPANDED) {
2019-12-01 11:28:57 +00:00
collapsePanel()
return true
2020-01-24 17:27:43 +00:00
}
2019-12-01 11:28:57 +00:00
return false
}
private fun onPaletteColorChanged() {
if (panelState == STATE_EXPANDED) {
setTaskDescColor(paletteColor)
val isColorLight = ColorUtil.isColorLight(paletteColor)
if (PreferenceUtil.isAdaptiveColor && (nowPlayingScreen == Normal || nowPlayingScreen == Flat)) {
setLightNavigationBar(true)
setLightStatusBar(isColorLight)
} else if (nowPlayingScreen == Card || nowPlayingScreen == Blur || nowPlayingScreen == BlurCard) {
setLightStatusBar(false)
setLightNavigationBar(true)
} else if (nowPlayingScreen == Color || nowPlayingScreen == Tiny || nowPlayingScreen == Gradient) {
setLightNavigationBar(isColorLight)
setLightStatusBar(isColorLight)
} else if (nowPlayingScreen == Full) {
setLightNavigationBar(isColorLight)
setLightStatusBar(false)
} else if (nowPlayingScreen == Classic) {
setLightStatusBar(false)
} else if (nowPlayingScreen == Fit) {
setLightStatusBar(false)
} else {
setLightStatusBar(
ColorUtil.isColorLight(
ATHUtil.resolveColor(
this,
android.R.attr.windowBackground
)
)
)
setLightNavigationBar(true)
}
2019-12-01 11:28:57 +00:00
}
}
private fun setTaskDescColor(color: Int) {
2019-12-01 11:28:57 +00:00
taskColor = color
if (panelState == STATE_COLLAPSED) {
setTaskDescriptionColor(color)
2019-12-01 11:28:57 +00:00
}
}
2020-05-11 09:51:22 +00:00
fun updateTabs() {
binding.bottomNavigationView.menu.clear()
2020-06-06 18:57:28 +00:00
val currentTabs: List<CategoryInfo> = PreferenceUtil.libraryCategory
2019-12-01 11:28:57 +00:00
for (tab in currentTabs) {
if (tab.visible) {
val menu = tab.category
binding.bottomNavigationView.menu.add(0, menu.id, 0, menu.stringRes)
.setIcon(menu.icon)
2019-12-01 11:28:57 +00:00
}
}
if (binding.bottomNavigationView.menu.size() == 1) {
binding.bottomNavigationView.hide()
2019-12-01 15:27:01 +00:00
}
2019-12-01 11:28:57 +00:00
}
2020-09-17 17:56:59 +00:00
private fun updateColor() {
libraryViewModel.paletteColor.observe(this, { color ->
this.paletteColor = color
onPaletteColorChanged()
})
}
2021-10-25 12:38:10 +00:00
fun setBottomNavVisibility(visible: Boolean, animate: Boolean = false) {
binding.bottomNavigationView.translateYAnimate(if (visible) 0F else dip(R.dimen.bottom_nav_height).toFloat() + windowInsets.safeGetBottomInsets())
.apply {
doOnEnd {
binding.bottomNavigationView.bringToFront()
}
hideBottomSheet(
hide = MusicPlayerRemote.playingQueue.isEmpty(),
animate = animate,
isBottomNavVisible = visible
)
}
}
fun hideBottomSheet(
hide: Boolean,
animate: Boolean = false,
isBottomNavVisible: Boolean = bottomNavigationView.isVisible
) {
2021-10-13 07:38:25 +00:00
val heightOfBar =
windowInsets.safeGetBottomInsets() +
if (MusicPlayerRemote.isCasting) dip(R.dimen.cast_mini_player_height) else dip(R.dimen.mini_player_height)
2021-09-24 07:31:53 +00:00
val heightOfBarWithTabs = heightOfBar + dip(R.dimen.bottom_nav_height)
if (hide) {
2021-10-25 12:38:10 +00:00
bottomSheetBehavior.peekHeight = -windowInsets.safeGetBottomInsets()
bottomSheetBehavior.state = STATE_COLLAPSED
libraryViewModel.setFabMargin(if (isBottomNavVisible) dip(R.dimen.bottom_nav_height) else 0)
ViewCompat.setElevation(binding.slidingPanel, 0f)
ViewCompat.setElevation(binding.bottomNavigationView, 10f)
} else {
if (MusicPlayerRemote.playingQueue.isNotEmpty()) {
ViewCompat.setElevation(binding.slidingPanel, 10f)
ViewCompat.setElevation(binding.bottomNavigationView, 10f)
if (isBottomNavVisible) {
2020-12-03 20:57:44 +00:00
println("List")
2021-10-25 12:38:10 +00:00
if (animate) {
bottomSheetBehavior.peekHeightAnimate(heightOfBarWithTabs)
} else {
bottomSheetBehavior.peekHeight = heightOfBarWithTabs
}
binding.bottomNavigationView.bringToFront()
libraryViewModel.setFabMargin(dip(R.dimen.mini_player_height_expanded))
} else {
2020-12-03 20:57:44 +00:00
println("Details")
2021-10-25 12:38:10 +00:00
if (animate) {
bottomSheetBehavior.peekHeightAnimate(heightOfBar).doOnEnd {
2021-10-25 12:38:10 +00:00
binding.slidingPanel.bringToFront()
}
} else {
bottomSheetBehavior.peekHeight = heightOfBar
binding.slidingPanel.bringToFront()
}
libraryViewModel.setFabMargin(dip(R.dimen.mini_player_height))
2020-09-17 17:56:59 +00:00
}
}
}
2020-09-17 17:56:59 +00:00
}
2020-09-23 21:10:16 +00:00
fun setAllowDragging(allowDragging: Boolean) {
bottomSheetBehavior.setAllowDragging(allowDragging)
2021-10-25 12:38:10 +00:00
hideBottomSheet(false)
}
private fun chooseFragmentForTheme() {
nowPlayingScreen = PreferenceUtil.nowPlayingScreen
val fragment: Fragment = when (nowPlayingScreen) {
Blur -> BlurPlayerFragment()
Adaptive -> AdaptiveFragment()
Normal -> PlayerFragment()
Card -> CardFragment()
BlurCard -> CardBlurFragment()
Fit -> FitFragment()
Flat -> FlatPlayerFragment()
Full -> FullPlayerFragment()
Plain -> PlainPlayerFragment()
Simple -> SimplePlayerFragment()
Material -> MaterialFragment()
Color -> ColorFragment()
Gradient -> GradientPlayerFragment()
Tiny -> TinyPlayerFragment()
2020-09-23 21:10:16 +00:00
Peak -> PeakPlayerFragment()
Circle -> CirclePlayerFragment()
2020-10-02 12:56:17 +00:00
Classic -> ClassicPlayerFragment()
else -> PlayerFragment()
} // must implement AbsPlayerFragment
2020-10-02 18:05:09 +00:00
supportFragmentManager.commit {
replace(R.id.playerFragmentContainer, fragment)
}
supportFragmentManager.executePendingTransactions()
2020-10-02 18:05:09 +00:00
playerFragment = whichFragment<AbsPlayerFragment>(R.id.playerFragmentContainer)
miniPlayerFragment = whichFragment<MiniPlayerFragment>(R.id.miniPlayerFragment)
miniPlayerFragment?.view?.setOnClickListener { expandPanel() }
}
2020-10-06 08:46:04 +00:00
}