aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/pl/treksoft/kvision/table/HeaderCell.kt
blob: 26ea24d2189c63f6ad51d8104f721045a2e524f1 (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
46
47
48
49
50
/*
 * Copyright (c) 2018. Robert Jaros
 */
package pl.treksoft.kvision.table

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

/**
 * HTML table header cell component.
 *
 * @constructor
 * @param text text content of the cell
 * @param rich determines if [text] can contain HTML code
 * @param align text align
 * @param classes a set of CSS class names
 * @param init an initializer extension function
 */
open class HeaderCell(
    text: String? = null,
    rich: Boolean = false,
    align: Align? = null,
    classes: Set<String> = setOf(),
    init: (HeaderCell.() -> Unit)? = null
) : Tag(TAG.TH, text, rich, align, classes) {

    init {
        init?.invoke(this)
    }

    companion object {
        /**
         * DSL builder extension function.
         *
         * It takes the same parameters as the constructor of the built component.
         */
        fun Row.headerCell(
            text: String? = null,
            rich: Boolean = false,
            align: Align? = null,
            classes: Set<String> = setOf(), init: (HeaderCell.() -> Unit)? = null
        ): HeaderCell {
            val cell = HeaderCell(text, rich, align, classes, init)
            this.add(cell)
            return cell
        }
    }

}