aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/pl/treksoft/kvision/dropdown/Separator.kt
blob: f417ff849d41c312f8110e8aa2d9febf6fc91935 (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
45
/*
 * Copyright (c) 2018. Robert Jaros
 */
package pl.treksoft.kvision.dropdown

import pl.treksoft.kvision.html.ListTag
import pl.treksoft.kvision.html.TAG
import pl.treksoft.kvision.html.Tag

/**
 * Menu separator component.
 *
 * @constructor
 * @param classes a set of CSS class names
 */
open class Separator(classes: Set<String> = setOf()) : Tag(TAG.LI, classes = classes + "divider") {

    init {
        role = "separator"
    }

    companion object {
        /**
         * DSL builder extension function.
         *
         * It takes the same parameters as the constructor of the built component.
         */
        fun ListTag.separator(classes: Set<String> = setOf()): Separator {
            val separator = Separator(classes)
            this.add(separator)
            return separator
        }

        /**
         * DSL builder extension function.
         *
         * It takes the same parameters as the constructor of the built component.
         */
        fun DropDown.separator(classes: Set<String> = setOf()): Separator {
            val separator = Separator(classes)
            this.add(separator)
            return separator
        }
    }
}