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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
package pl.treksoft.kvision.dropdown
import com.github.snabbdom.VNode
import pl.treksoft.kvision.core.Component
import pl.treksoft.kvision.core.CssSize
import pl.treksoft.kvision.html.BUTTONSTYLE
import pl.treksoft.kvision.html.Button
import pl.treksoft.kvision.html.LIST
import pl.treksoft.kvision.html.Link
import pl.treksoft.kvision.html.ListTag
import pl.treksoft.kvision.html.TAG
import pl.treksoft.kvision.html.Tag
import pl.treksoft.kvision.panel.SimplePanel
import pl.treksoft.kvision.snabbdom.StringBoolPair
import pl.treksoft.kvision.snabbdom.StringPair
import pl.treksoft.kvision.snabbdom.obj
enum class DD(val type: String) {
HEADER("DD#HEADER"),
DISABLED("DD#DISABLED"),
SEPARATOR("DD#SEPARATOR")
}
open class DropDown(
text: String, elements: List<StringPair>? = null, icon: String? = null,
style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false,
classes: Set<String> = setOf()
) : SimplePanel(classes) {
var text
get() = button.text
set(value) {
button.text = value
}
private var elements = elements
set(value) {
field = value
setChildrenFromElements()
}
var icon
get() = button.icon
set(value) {
button.icon = value
}
var style
get() = button.style
set(value) {
button.style = value
}
var size
get() = button.size
set(value) {
button.size = value
}
var block
get() = button.block
set(value) {
button.block = value
}
var disabled
get() = button.disabled
set(value) {
button.disabled = value
}
var image
get() = button.image
set(value) {
button.image = value
}
var dropup = false
set(value) {
field = value
refresh()
}
override var width: CssSize?
get() = super.width
set(value) {
super.width = value
button.width = value
}
private val idc = "kv_dropdown_" + counter
internal val button: DropDownButton = DropDownButton(
idc, text, icon, style,
disabled, setOf("dropdown")
)
internal val list: DropDownListTag = DropDownListTag(idc, setOf("dropdown-menu"))
init {
setChildrenFromElements()
this.addInternal(button)
this.addInternal(list)
counter++
}
companion object {
var counter = 0
}
override fun add(child: Component): SimplePanel {
list.add(child)
return this
}
override fun addAll(children: List<Component>): SimplePanel {
list.addAll(children)
return this
}
override fun remove(child: Component): SimplePanel {
list.remove(child)
return this
}
override fun removeAll(): SimplePanel {
list.removeAll()
return this
}
override fun getChildren(): List<Component> {
return list.getChildren()
}
private fun setChildrenFromElements() {
list.removeAll()
elements?.let { elems ->
val c = elems.map {
when (it.second) {
DD.HEADER.type -> Tag(TAG.LI, it.first, classes = setOf("dropdown-header"))
DD.SEPARATOR.type -> {
val tag = Tag(TAG.LI, it.first, classes = setOf("divider"))
tag.role = "separator"
tag
}
DD.DISABLED.type -> {
val tag = Tag(TAG.LI, classes = setOf("disabled"))
tag.add(Link(it.first, "#"))
tag
}
else -> Link(it.first, it.second)
}
}
list.addAll(c)
}
}
@Suppress("UnsafeCastFromDynamic")
override fun afterInsert(node: VNode) {
this.getElementJQuery()?.on("show.bs.dropdown", { e, _ ->
this.dispatchEvent("showBsDropdown", obj { detail = e })
})
this.getElementJQuery()?.on("shown.bs.dropdown", { e, _ ->
this.dispatchEvent("shownBsDropdown", obj { detail = e })
})
this.getElementJQuery()?.on("hide.bs.dropdown", { e, _ ->
this.dispatchEvent("hideBsDropdown", obj { detail = e })
})
this.getElementJQuery()?.on("hidden.bs.dropdown", { e, _ ->
this.dispatchEvent("hiddenBsDropdown", obj { detail = e })
})
}
override fun getSnClass(): List<StringBoolPair> {
val cl = super.getSnClass().toMutableList()
if (dropup)
cl.add("dropup" to true)
else
cl.add("dropdown" to true)
return cl
}
open fun toggle() {
this.list.getElementJQueryD()?.dropdown("toggle")
}
}
open class DropDownButton(
id: String, text: String, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT,
disabled: Boolean = false, classes: Set<String> = setOf()
) :
Button(text, icon, style, disabled, classes) {
init {
this.id = id
}
override fun getSnAttrs(): List<StringPair> {
return super.getSnAttrs() + listOf(
"data-toggle" to "dropdown", "aria-haspopup" to "true",
"aria-expanded" to "false"
)
}
}
open class DropDownListTag(private val ariaId: String, classes: Set<String> = setOf()) : ListTag(
LIST.UL, null,
false, classes
) {
override fun getSnAttrs(): List<StringPair> {
return super.getSnAttrs() + listOf("aria-labelledby" to ariaId)
}
}
|