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

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

/**
 * HTML table row component.
 *
 * @constructor
 * @param classes a set of CSS class names
 * @param init an initializer extension function
 */
open class Row(classes: Set<String> = setOf(), init: (Row.() -> Unit)? = null) : Tag(
    TAG.TR, classes = classes
) {

    init {
        init?.invoke(this)
    }

    companion object {
        /**
         * DSL builder extension function.
         *
         * It takes the same parameters as the constructor of the built component.
         */
        fun Table.row(
            classes: Set<String> = setOf(), init: (Row.() -> Unit)? = null
        ): Row {
            val row = Row(classes, init)
            this.add(row)
            return row
        }
    }

}