aboutsummaryrefslogtreecommitdiff
path: root/kpref-activity/src/main/kotlin/ca/allanwang/kau/kpref/activity/items/KPrefText.kt
blob: 45c9a5dd075b628e4317bbb8b5f61f425a83c435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package ca.allanwang.kau.kpref.activity.items

import android.view.View
import android.widget.TextView
import ca.allanwang.kau.kpref.activity.GlobalOptions
import ca.allanwang.kau.kpref.activity.R
import ca.allanwang.kau.utils.toast

/**
 * Created by Allan Wang on 2017-06-14.
 *
 * Text preference
 * Holds a textview to display data on the right
 * This is still a generic preference
 *
 */
open class KPrefText<T>(val builder: KPrefTextContract<T>) : KPrefItemBase<T>(builder) {

    /**
     * Automatically reload on set
     */
    override var pref: T
        get() = base.getter.invoke()
        set(value) {
            base.setter.invoke(value)
            builder.reloadSelf()
        }

    override fun defaultOnClick(itemView: View, innerContent: View?): Boolean {
        itemView.context.toast("No click function set")
        return true
    }

    override fun onPostBindView(viewHolder: ViewHolder, textColor: Int?, accentColor: Int?) {
        super.onPostBindView(viewHolder, textColor, accentColor)
        val textview = viewHolder.bindInnerView<TextView>(R.layout.kau_pref_text)
        if (textColor != null) textview.setTextColor(textColor)
        textview.text = builder.textGetter.invoke(pref)
    }

    /**
     * Extension of the base contract with an optional text getter
     */
    interface KPrefTextContract<T> : BaseContract<T> {
        var textGetter: (T) -> String?
    }

    /**
     * Default implementation of [KPrefTextContract]
     */
    class KPrefTextBuilder<T>(
            globalOptions: GlobalOptions,
            titleRes: Int,
            getter: () -> T,
            setter: (value: T) -> Unit
    ) : KPrefTextContract<T>, BaseContract<T> by BaseBuilder<T>(globalOptions, titleRes, getter, setter) {
        override var textGetter: (T) -> String? = { it?.toString() }
    }

    override fun getType(): Int = R.id.kau_item_pref_text

}