/* * 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. * */ package code.name.monkey.retromusic.glide import android.graphics.drawable.Drawable import android.widget.ImageView import code.name.monkey.appthemehelper.util.ATHUtil import code.name.monkey.retromusic.App import code.name.monkey.retromusic.R import code.name.monkey.retromusic.glide.palette.BitmapPaletteTarget import code.name.monkey.retromusic.glide.palette.BitmapPaletteWrapper import code.name.monkey.retromusic.util.color.MediaNotificationProcessor import com.bumptech.glide.request.transition.Transition abstract class RetroMusicColoredTarget(view: ImageView) : BitmapPaletteTarget(view) { protected val defaultFooterColor: Int get() = ATHUtil.resolveColor(getView().context, R.attr.colorControlNormal) abstract fun onColorReady(colors: MediaNotificationProcessor) override fun onLoadFailed(errorDrawable: Drawable?) { super.onLoadFailed(errorDrawable) onColorReady(MediaNotificationProcessor.errorColor(App.getContext())) } override fun onResourceReady( resource: BitmapPaletteWrapper, transition: Transition? ) { super.onResourceReady(resource, transition) MediaNotificationProcessor(App.getContext()).getPaletteAsync({ onColorReady(it) }, resource.bitmap) } }