aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/iitems/GenericIItems.kt
blob: ca8bf35242648ff021dd2415128a51934ed1e739 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
 * Copyright 2018 Allan Wang
 *
 * This program 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 program 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.pitchedapps.frost.iitems

import android.content.Context
import android.view.View
import android.widget.TextView
import ca.allanwang.kau.iitems.KauIItem
import ca.allanwang.kau.ui.createSimpleRippleDrawable
import ca.allanwang.kau.utils.bindView
import com.mikepenz.fastadapter.FastAdapter
import com.mikepenz.fastadapter.GenericItem
import com.mikepenz.fastadapter.IAdapter
import com.mikepenz.fastadapter.select.selectExtension
import com.pitchedapps.frost.R
import com.pitchedapps.frost.utils.Prefs
import com.pitchedapps.frost.utils.launchWebOverlay

/**
 * Created by Allan Wang on 30/12/17.
 */

/**
 * Base contract for anything with a url that may be launched in a new overlay
 */
interface ClickableIItemContract {

    val url: String?

    fun click(context: Context) {
        val url = url ?: return
        context.launchWebOverlay(url)
    }

    companion object {
        fun bindEvents(adapter: IAdapter<GenericItem>) {
            adapter.fastAdapter?.apply {
                selectExtension {
                    isSelectable = false
                }
                onClickListener = { v, _, item, _ ->
                    if (item is ClickableIItemContract) {
                        item.click(v!!.context)
                        true
                    } else
                        false
                }
            }
        }
    }
}

/**
 * Generic header item
 * Not clickable with an accent color
 */
open class HeaderIItem(
    val text: String?,
    itemId: Int = R.layout.iitem_header
) : KauIItem<HeaderIItem.ViewHolder>(R.layout.iitem_header, ::ViewHolder, itemId) {

    class ViewHolder(itemView: View) : FastAdapter.ViewHolder<HeaderIItem>(itemView) {

        val text: TextView by bindView(R.id.item_header_text)

        override fun bindView(item: HeaderIItem, payloads: MutableList<Any>) {
            text.setTextColor(Prefs.accentColor)
            text.text = item.text
            text.setBackgroundColor(Prefs.nativeBgColor)
        }

        override fun unbindView(item: HeaderIItem) {
            text.text = null
        }
    }
}

/**
 * Generic text item
 * Clickable with text color
 */
open class TextIItem(
    val text: String?,
    override val url: String?,
    itemId: Int = R.layout.iitem_text
) : KauIItem<TextIItem.ViewHolder>(R.layout.iitem_text, ::ViewHolder, itemId),
    ClickableIItemContract {

    class ViewHolder(itemView: View) : FastAdapter.ViewHolder<TextIItem>(itemView) {

        val text: TextView by bindView(R.id.item_text_view)

        override fun bindView(item: TextIItem, payloads: MutableList<Any>) {
            text.setTextColor(Prefs.textColor)
            text.text = item.text
            text.background = createSimpleRippleDrawable(Prefs.bgColor, Prefs.nativeBgColor)
        }

        override fun unbindView(item: TextIItem) {
            text.text = null
        }
    }
}