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
204
205
206
207
208
209
210
211
212
|
package pl.treksoft.kvision.dropdown
import com.github.snabbdom.VNode
import org.w3c.dom.CustomEvent
import pl.treksoft.kvision.core.Container
import pl.treksoft.kvision.core.ResString
import pl.treksoft.kvision.core.Widget
import pl.treksoft.kvision.html.BUTTONSIZE
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.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, size: BUTTONSIZE? = null,
block: Boolean = false, disabled: Boolean = false, image: ResString? = null,
dropup: Boolean = false, classes: Set<String> = setOf()) : Container(classes) {
var text
get() = button.text
set(value) {
button.text = value
}
var elements = elements
set(value) {
field = elements
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 = dropup
set(value) {
field = value
refresh()
}
private val idc = "kv_dropdown_" + counter
internal val button: DropDownButton = DropDownButton(idc, text, icon, style, size, block,
disabled, image, setOf("dropdown"))
internal val list: DropDownListTag = DropDownListTag(idc, setOf("dropdown-menu"))
init {
button.setEventListener {
click = {
if (!button.disabled) toggle()
}
}
list.hide()
setChildrenFromElements()
this.addInternal(button)
this.addInternal(list)
counter++
}
companion object {
var counter = 0
}
override fun add(child: Widget): Container {
list.add(child)
return this
}
override fun addAll(children: List<Widget>): Container {
list.addAll(children)
return this
}
private fun setChildrenFromElements() {
val elems = elements
if (elems != null) {
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)
} else {
list.removeAll()
}
}
@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, _ ->
list.visible = false
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() {
if (list.visible)
list.hideInternal()
else
list.show()
}
}
open class DropDownButton(id: String, text: String, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT,
size: BUTTONSIZE? = null, block: Boolean = false, disabled: Boolean = false,
image: ResString? = null, classes: Set<String> = setOf()) :
Button(text, icon, style, size, block, disabled, image, 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)
}
override fun hide(): Widget {
if (visible) hideInternal()
return super.hide()
}
override fun afterInsert(node: VNode) {
if (visible) showInternal()
}
@Suppress("UnsafeCastFromDynamic")
internal fun showInternal() {
if (getElementJQueryD()?.`is`(":hidden")) {
getElementJQueryD()?.dropdown("toggle")
}
}
@Suppress("UnsafeCastFromDynamic")
internal fun hideInternal() {
if (!getElementJQueryD()?.`is`(":hidden")) {
getElementJQueryD()?.dropdown("toggle")
}
}
}
|