aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/pl/treksoft/kvision/dropdown/Header.kt
blob: e09d0246375109cca8d9d764c60ebb76e7681934 (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.dropdown

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

/**
 * Menu header component.
 *
 * @constructor
 * @param content header content text
 * @param classes a set of CSS class names
 */
open class Header(content: String? = null, classes: Set<String> = setOf()) :
    Tag(TAG.LI, content, classes = classes + "dropdown-header") {


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

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