2022-01-12 10:27:49 +00:00
|
|
|
package dev.inmo.jsuikit.elements
|
2021-12-22 08:38:12 +00:00
|
|
|
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
import androidx.compose.runtime.snapshots.SnapshotStateList
|
2022-01-12 10:30:45 +00:00
|
|
|
import dev.inmo.jsuikit.modifers.*
|
2021-12-22 08:38:12 +00:00
|
|
|
import org.jetbrains.compose.web.dom.*
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun <T> DefaultTable(
|
|
|
|
heading: List<String>,
|
|
|
|
dataList: SnapshotStateList<T>,
|
|
|
|
vararg tableModifiers: UIKitModifier,
|
|
|
|
cellFiller: @Composable (i: Int, t: T) -> Unit
|
|
|
|
) {
|
|
|
|
val headingIndexes = heading.indices
|
|
|
|
Table(
|
|
|
|
{
|
|
|
|
classes("uk-table")
|
|
|
|
include(*tableModifiers)
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
Thead {
|
|
|
|
Tr {
|
|
|
|
heading.forEach {
|
|
|
|
Th(
|
|
|
|
{
|
|
|
|
include(UIKitExtension.TextTransformUnset)
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
Text(it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Tbody {
|
|
|
|
dataList.forEach {
|
|
|
|
Tr {
|
|
|
|
headingIndexes.forEach { i ->
|
|
|
|
Td {
|
|
|
|
cellFiller(i, it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|