aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/pl/treksoft/kvision/dropdown
diff options
context:
space:
mode:
authorRobert Jaros <rjaros@finn.pl>2018-03-11 23:47:07 +0100
committerRobert Jaros <rjaros@finn.pl>2018-03-12 00:03:27 +0100
commit567a42eb216381b951fe5c6bcc199bcba835ffa6 (patch)
treeec49858d37556ff37cd156f401cb680c26558482 /src/main/kotlin/pl/treksoft/kvision/dropdown
parent0c9f1189a40f361484cf29fd89e74d9b83aba321 (diff)
downloadkvision-567a42eb216381b951fe5c6bcc199bcba835ffa6.tar.gz
kvision-567a42eb216381b951fe5c6bcc199bcba835ffa6.tar.bz2
kvision-567a42eb216381b951fe5c6bcc199bcba835ffa6.zip
Bootstrap Navbar component.
Diffstat (limited to 'src/main/kotlin/pl/treksoft/kvision/dropdown')
-rw-r--r--src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt47
1 files changed, 38 insertions, 9 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt b/src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt
index 44396951..9a349707 100644
--- a/src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt
+++ b/src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt
@@ -22,16 +22,17 @@
package pl.treksoft.kvision.dropdown
import com.github.snabbdom.VNode
+import pl.treksoft.kvision.KVManager
import pl.treksoft.kvision.core.Component
import pl.treksoft.kvision.core.Container
import pl.treksoft.kvision.core.CssSize
import pl.treksoft.kvision.core.StringBoolPair
import pl.treksoft.kvision.core.StringPair
-import pl.treksoft.kvision.html.ButtonStyle
import pl.treksoft.kvision.html.Button
-import pl.treksoft.kvision.html.ListType
+import pl.treksoft.kvision.html.ButtonStyle
import pl.treksoft.kvision.html.Link
import pl.treksoft.kvision.html.ListTag
+import pl.treksoft.kvision.html.ListType
import pl.treksoft.kvision.html.TAG
import pl.treksoft.kvision.html.Tag
import pl.treksoft.kvision.panel.SimplePanel
@@ -55,11 +56,12 @@ enum class DD(val option: String) {
* @param icon the icon of the dropdown button
* @param style the style of the dropdown button
* @param disabled determines if the component is disabled on start
+ * @param forNavbar determines if the component will be used in a navbar
* @param classes a set of CSS class names
*/
open class DropDown(
text: String, elements: List<StringPair>? = null, icon: String? = null,
- style: ButtonStyle = ButtonStyle.DEFAULT, disabled: Boolean = false,
+ style: ButtonStyle = ButtonStyle.DEFAULT, disabled: Boolean = false, val forNavbar: Boolean = false,
classes: Set<String> = setOf()
) : SimplePanel(classes) {
/**
@@ -136,7 +138,7 @@ open class DropDown(
private val idc = "kv_dropdown_$counter"
internal val button: DropDownButton = DropDownButton(
idc, text, icon, style,
- disabled, setOf("dropdown")
+ disabled, forNavbar, setOf("dropdown")
)
internal val list: DropDownListTag = DropDownListTag(idc, setOf("dropdown-menu"))
@@ -147,6 +149,14 @@ open class DropDown(
counter++
}
+ override fun render(): VNode {
+ return if (forNavbar) {
+ render("li", childrenVNodes())
+ } else {
+ render("div", childrenVNodes())
+ }
+ }
+
override fun add(child: Component): SimplePanel {
list.add(child)
return this
@@ -171,7 +181,6 @@ open class DropDown(
return list.getChildren()
}
-
private fun setChildrenFromElements() {
list.removeAll()
elements?.let { elems ->
@@ -237,10 +246,10 @@ open class DropDown(
*/
fun Container.dropDown(
text: String, elements: List<StringPair>? = null, icon: String? = null,
- style: ButtonStyle = ButtonStyle.DEFAULT, disabled: Boolean = false,
+ style: ButtonStyle = ButtonStyle.DEFAULT, disabled: Boolean = false, navbar: Boolean = false,
classes: Set<String> = setOf(), init: (DropDown.() -> Unit)? = null
): DropDown {
- val dropDown = DropDown(text, elements, icon, style, disabled, classes).apply { init?.invoke(this) }
+ val dropDown = DropDown(text, elements, icon, style, disabled, navbar, classes).apply { init?.invoke(this) }
this.add(dropDown)
return dropDown
}
@@ -249,7 +258,7 @@ open class DropDown(
internal class DropDownButton(
id: String, text: String, icon: String? = null, style: ButtonStyle = ButtonStyle.DEFAULT,
- disabled: Boolean = false, classes: Set<String> = setOf()
+ disabled: Boolean = false, val forNavbar: Boolean = false, classes: Set<String> = setOf()
) :
Button(text, icon, style, disabled, classes) {
@@ -257,10 +266,30 @@ internal class DropDownButton(
this.id = id
}
+ override fun render(): VNode {
+ val text = createLabelWithIcon(text, icon, image)
+ return if (forNavbar) {
+ val textWithCarret = text.toMutableList()
+ textWithCarret.add(" ")
+ textWithCarret.add(KVManager.virtualize("<span class='caret'></span>"))
+ render("a", textWithCarret.toTypedArray())
+ } else {
+ render("button", text)
+ }
+ }
+
+ override fun getSnClass(): List<StringBoolPair> {
+ return if (forNavbar) {
+ listOf("dropdown" to true)
+ } else {
+ super.getSnClass()
+ }
+ }
+
override fun getSnAttrs(): List<StringPair> {
return super.getSnAttrs() + listOf(
"data-toggle" to "dropdown", "aria-haspopup" to "true",
- "aria-expanded" to "false"
+ "aria-expanded" to "false", "role" to "button", "href" to "#"
)
}
}