diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-03-23 12:41:39 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-03-23 12:41:39 +0100 |
commit | 0041051ee910aa90b917309fb5cc5d7cd60176de (patch) | |
tree | 5106d6ed6de5021d2ad99ff8d2b112c79693c1e9 /src/main/kotlin | |
parent | 4f9d464f69e1ca1a793710fa47808df55cdea749 (diff) | |
download | kvision-0041051ee910aa90b917309fb5cc5d7cd60176de.tar.gz kvision-0041051ee910aa90b917309fb5cc5d7cd60176de.tar.bz2 kvision-0041051ee910aa90b917309fb5cc5d7cd60176de.zip |
Support fo toolbar and button group componenets.
Diffstat (limited to 'src/main/kotlin')
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/toolbar/ButtonGroup.kt | 89 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/toolbar/Toolbar.kt | 44 |
2 files changed, 133 insertions, 0 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/toolbar/ButtonGroup.kt b/src/main/kotlin/pl/treksoft/kvision/toolbar/ButtonGroup.kt new file mode 100644 index 00000000..ddb3bca4 --- /dev/null +++ b/src/main/kotlin/pl/treksoft/kvision/toolbar/ButtonGroup.kt @@ -0,0 +1,89 @@ +/* + * Copyright (c) 2018. Robert Jaros + */ +package pl.treksoft.kvision.toolbar + +import pl.treksoft.kvision.core.Container +import pl.treksoft.kvision.core.StringBoolPair +import pl.treksoft.kvision.core.StringPair +import pl.treksoft.kvision.panel.SimplePanel + +/** + * Button group sizes. + */ +enum class ButtonGroupSize(internal val className: String) { + LARGE("btn-group-lg"), + SMALL("btn-group-sm"), + XSMALL("btn-group-xs") +} + +/** + * Button group styles. + */ +enum class ButtonGroupStyle(internal val className: String) { + VERTICAL("btn-group-vertical"), + JUSTIFIED("btn-group-justified") +} + +/** + * The Bootstrap button group. + * + * @constructor + * @param size button group size + * @param style button group style + * @param classes a set of CSS class names + * @param init an initializer extension function + */ +open class ButtonGroup( + size: ButtonGroupSize? = null, style: ButtonGroupStyle? = null, + classes: Set<String> = setOf(), init: (ButtonGroup.() -> Unit)? = null +) : SimplePanel(classes) { + + /** + * Button group size. + */ + var size by refreshOnUpdate(size) + /** + * Button group style. + */ + var style by refreshOnUpdate(style) + + init { + @Suppress("LeakingThis") + init?.invoke(this) + } + + override fun getSnClass(): List<StringBoolPair> { + val cl = super.getSnClass().toMutableList() + if (style != ButtonGroupStyle.VERTICAL) { + cl.add("btn-group" to true) + } + style?.let { + cl.add(it.className to true) + } + size?.let { + cl.add(it.className to true) + } + return cl + } + + override fun getSnAttrs(): List<StringPair> { + return super.getSnAttrs() + ("role" to "group") + } + + companion object { + /** + * DSL builder extension function. + * + * It takes the same parameters as the constructor of the built component. + */ + fun Container.buttonGroup( + size: ButtonGroupSize? = null, style: ButtonGroupStyle? = null, + classes: Set<String> = setOf(), init: (ButtonGroup.() -> Unit)? = null + ): ButtonGroup { + val group = ButtonGroup(size, style, classes).apply { init?.invoke(this) } + this.add(group) + return group + } + } +} diff --git a/src/main/kotlin/pl/treksoft/kvision/toolbar/Toolbar.kt b/src/main/kotlin/pl/treksoft/kvision/toolbar/Toolbar.kt new file mode 100644 index 00000000..a1651a22 --- /dev/null +++ b/src/main/kotlin/pl/treksoft/kvision/toolbar/Toolbar.kt @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2018. Robert Jaros + */ +package pl.treksoft.kvision.toolbar + +import pl.treksoft.kvision.core.Container +import pl.treksoft.kvision.core.StringPair +import pl.treksoft.kvision.panel.SimplePanel + +/** + * The Bootstrap toolbar. + * + * @constructor + * @param classes a set of CSS class names + * @param init an initializer extension function + */ +open class Toolbar( + classes: Set<String> = setOf(), init: (Toolbar.() -> Unit)? = null +) : SimplePanel(classes + "btn-toolbar") { + + init { + @Suppress("LeakingThis") + init?.invoke(this) + } + + override fun getSnAttrs(): List<StringPair> { + return super.getSnAttrs() + ("role" to "toolbar") + } + + companion object { + /** + * DSL builder extension function. + * + * It takes the same parameters as the constructor of the built component. + */ + fun Container.toolbar( + classes: Set<String> = setOf(), init: (Toolbar.() -> Unit)? = null + ): Toolbar { + val toolbar = Toolbar(classes).apply { init?.invoke(this) } + this.add(toolbar) + return toolbar + } + } +} |