aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/pl/treksoft/kvision/toolbar/Toolbar.kt
blob: a1651a22be12cd2afd93b71d0f35eef66be131ce (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
/*
 * 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
        }
    }
}