mihon/app/src/main/java/eu/kanade/tachiyomi/widget/EmptyView.kt

82 lines
2.2 KiB
Kotlin
Raw Normal View History

2016-05-13 15:45:36 +02:00
package eu.kanade.tachiyomi.widget
import android.content.Context
import android.util.AttributeSet
import android.view.LayoutInflater
import android.widget.LinearLayout
2016-05-13 15:45:36 +02:00
import android.widget.RelativeLayout
2020-03-09 23:59:17 +01:00
import androidx.annotation.StringRes
2020-03-29 18:10:36 +02:00
import androidx.appcompat.widget.AppCompatButton
import androidx.core.view.isVisible
import eu.kanade.tachiyomi.databinding.CommonViewEmptyBinding
import kotlin.random.Random
2016-05-13 15:45:36 +02:00
class EmptyView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null) :
2020-04-25 20:24:45 +02:00
RelativeLayout(context, attrs) {
2016-05-13 15:45:36 +02:00
private val binding: CommonViewEmptyBinding
2016-05-13 15:45:36 +02:00
init {
binding = CommonViewEmptyBinding.inflate(LayoutInflater.from(context), this, true)
2016-05-13 15:45:36 +02:00
}
/**
* Hide the information view
*/
fun hide() {
this.isVisible = false
2016-05-13 15:45:36 +02:00
}
/**
* Show the information view
* @param textResource text of information view
*/
fun show(@StringRes textResource: Int, actions: List<Action>? = null) {
show(context.getString(textResource), actions)
}
fun show(message: String, actions: List<Action>? = null) {
binding.textFace.text = getRandomErrorFace()
binding.textLabel.text = message
binding.actionsContainer.removeAllViews()
if (!actions.isNullOrEmpty()) {
actions.forEach {
2020-03-29 18:10:36 +02:00
val button = AppCompatButton(context).apply {
layoutParams = LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
2020-04-25 20:24:45 +02:00
LinearLayout.LayoutParams.WRAP_CONTENT
)
setText(it.resId)
setOnClickListener(it.listener)
}
binding.actionsContainer.addView(button)
}
}
this.isVisible = true
2020-03-09 23:59:17 +01:00
}
companion object {
private val ERROR_FACES = listOf(
"(・o・;)",
"Σ(ಠ_ಠ)",
"ಥ_ಥ",
"(˘・_・˘)",
"(; ̄Д ̄)",
"(・Д・。"
2020-03-09 23:59:17 +01:00
)
fun getRandomErrorFace(): String {
return ERROR_FACES[Random.nextInt(ERROR_FACES.size)]
}
2016-05-13 15:45:36 +02:00
}
data class Action(
@StringRes val resId: Int,
val listener: OnClickListener
)
2016-05-13 15:45:36 +02:00
}