|
@@ -1,6 +1,8 @@
|
|
|
package eu.kanade.tachiyomi.ui.extension
|
|
|
|
|
|
import android.view.View
|
|
|
+import androidx.core.content.ContextCompat
|
|
|
+import androidx.vectordrawable.graphics.drawable.VectorDrawableCompat
|
|
|
import eu.kanade.tachiyomi.R
|
|
|
import eu.kanade.tachiyomi.data.glide.GlideApp
|
|
|
import eu.kanade.tachiyomi.extension.model.Extension
|
|
@@ -52,11 +54,15 @@ class ExtensionHolder(view: View, override val adapter: ExtensionAdapter) :
|
|
|
bindButton(item)
|
|
|
}
|
|
|
|
|
|
+ @Suppress("ResourceType")
|
|
|
fun bindButton(item: ExtensionItem) = with(ext_button) {
|
|
|
isEnabled = true
|
|
|
isClickable = true
|
|
|
isActivated = false
|
|
|
|
|
|
+ background = VectorDrawableCompat.create(resources!!, R.drawable.button_bg_transparent, null)
|
|
|
+ setTextColor(ContextCompat.getColorStateList(context, R.drawable.button_bg_transparent))
|
|
|
+
|
|
|
val extension = item.extension
|
|
|
|
|
|
val installStep = item.installStep
|
|
@@ -73,11 +79,21 @@ class ExtensionHolder(view: View, override val adapter: ExtensionAdapter) :
|
|
|
isClickable = false
|
|
|
}
|
|
|
} else if (extension is Extension.Installed) {
|
|
|
- if (extension.hasUpdate) {
|
|
|
- isActivated = true
|
|
|
- setText(R.string.ext_update)
|
|
|
- } else {
|
|
|
- setText(R.string.ext_details)
|
|
|
+ when {
|
|
|
+ extension.hasUpdate -> {
|
|
|
+ isActivated = true
|
|
|
+ setText(R.string.ext_update)
|
|
|
+ }
|
|
|
+ extension.isObsolete -> {
|
|
|
+ // Red outline
|
|
|
+ background = VectorDrawableCompat.create(resources, R.drawable.button_bg_error, null)
|
|
|
+ setTextColor(ContextCompat.getColorStateList(context, R.drawable.button_bg_error))
|
|
|
+
|
|
|
+ setText(R.string.ext_obsolete)
|
|
|
+ }
|
|
|
+ else -> {
|
|
|
+ setText(R.string.ext_details)
|
|
|
+ }
|
|
|
}
|
|
|
} else if (extension is Extension.Untrusted) {
|
|
|
setText(R.string.ext_trust)
|