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
51
|
/*
* 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 cell component.
*
* @constructor
* @param content text content of the cell
* @param rich determines if [content] can contain HTML code
* @param align text align
* @param classes a set of CSS class names
* @param init an initializer extension function
*/
open class Cell(
content: String? = null,
rich: Boolean = false,
align: Align? = null,
classes: Set<String> = setOf(),
init: (Cell.() -> Unit)? = null
) : Tag(TAG.TD, content, rich, align, classes) {
init {
@Suppress("LeakingThis")
init?.invoke(this)
}
companion object {
/**
* DSL builder extension function.
*
* It takes the same parameters as the constructor of the built component.
*/
fun Row.cell(
content: String? = null,
rich: Boolean = false,
align: Align? = null,
classes: Set<String> = setOf(), init: (Cell.() -> Unit)? = null
): Cell {
val cell = Cell(content, rich, align, classes, init)
this.add(cell)
return cell
}
}
}
|