mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2025-12-04 13:26:27 +00:00
Compare commits
43 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a304dcf5df | |||
| a88562d3c4 | |||
| d9a01a8ab8 | |||
| 56b1268172 | |||
| a3c8cdcc96 | |||
| 68d1ba6a37 | |||
| 1cf9655575 | |||
| 4a7101697a | |||
| 17badd4724 | |||
| 39e54e8ca3 | |||
| ed31eb01e5 | |||
| 9d06725221 | |||
| d8d4a7fcf1 | |||
| 252fe4a295 | |||
| 6dbff07692 | |||
| e94585fc7e | |||
| b449caae13 | |||
| 95edaf1cfe | |||
| cb2fbe9f42 | |||
| 598e481f75 | |||
| 2a76519843 | |||
| 8e9ff07b71 | |||
| 13556a293c | |||
| a4d4ec3db8 | |||
| 6f095de81d | |||
| 6b60d22e1e | |||
| 4e0cc3621c | |||
| 4943490910 | |||
| b60a3bc279 | |||
| 228138757d | |||
| f1dedf1e09 | |||
| 936bb2d6fd | |||
| 0da87743e8 | |||
| 36eeb012c6 | |||
| 58f8f99e10 | |||
| d1c03e5c48 | |||
| bd19572d78 | |||
| 9449eccec1 | |||
| f518933195 | |||
| 23f3ecb0d4 | |||
| c6023d3075 | |||
| 7b72f99f66 | |||
| 66c3f97f65 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -11,6 +11,7 @@ out/
|
||||
|
||||
secret.gradle
|
||||
local.properties
|
||||
local.*
|
||||
|
||||
kotlin-js-store/
|
||||
|
||||
|
||||
60
CHANGELOG.md
60
CHANGELOG.md
@@ -1,5 +1,65 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.29
|
||||
|
||||
* Unfilling of `UIKitText`
|
||||
|
||||
## 0.0.28
|
||||
|
||||
* Fixes in `UIKitWidth`
|
||||
|
||||
## 0.0.27
|
||||
|
||||
* `TextField` has been renamed to `StandardInput`
|
||||
* `StandardInput` now will look for changes in state
|
||||
|
||||
## 0.0.26
|
||||
|
||||
* Add UIKitColumn
|
||||
|
||||
## 0.0.25
|
||||
|
||||
* Full including of divider
|
||||
|
||||
## 0.0.24
|
||||
|
||||
* Add opportunity to fill space between header and body of table
|
||||
|
||||
## 0.0.23
|
||||
|
||||
* New parameter of tables `headerCustomizer`
|
||||
|
||||
## 0.0.22
|
||||
|
||||
* Add opportunity to customize table header cells
|
||||
|
||||
## 0.0.21
|
||||
|
||||
* Upfill `UIKitWidth`
|
||||
* New extension `UIKitModifier#applyWhenScreenSizeIs`
|
||||
|
||||
## 0.0.20
|
||||
|
||||
* Remove type of button from `DefaultButton` and add companion to `UIKitButton` to be able to use `uk-button` class
|
||||
|
||||
## 0.0.19
|
||||
|
||||
* Create `Card`s implementation
|
||||
* Upgrade `Label` composable draw and create `UIKitLabel` modifiers
|
||||
|
||||
## 0.0.18
|
||||
|
||||
* Add base companion for `UIKitFlex` with result class `uk-flex`
|
||||
|
||||
## 0.0.17
|
||||
|
||||
* In `DefaultTable` `headingCustomizer` has been renamed to `headerCellCustomizer`
|
||||
* Add index and title parameters for `headerCellCustomizer` in `DefaultTable`
|
||||
|
||||
## 0.0.16
|
||||
|
||||
* Add opportunity to customize `NavDivider`
|
||||
|
||||
## 0.0.15
|
||||
|
||||
* Add support of link icons
|
||||
|
||||
@@ -9,4 +9,4 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.0.15
|
||||
version=0.0.29
|
||||
|
||||
1
local.make_version.sh
Executable file
1
local.make_version.sh
Executable file
@@ -0,0 +1 @@
|
||||
git add -A && git stash && git checkout master && git pull && git checkout -b "$1" && nano gradle.properties CHANGELOG.md && git add -A && git commit -m "start $1" && git stash pop && git add -A && nano CHANGELOG.md && git add -A && git commit -m "$2" && git push --set-upstream origin "$1" && ./gradlew clean && ./gradlew publishToMavenLocal
|
||||
@@ -14,7 +14,6 @@ import org.w3c.dom.events.Event
|
||||
fun DefaultButton(
|
||||
vararg modifiers: UIKitModifier,
|
||||
disabled: Boolean = false,
|
||||
buttonType: UIKitButton.Type = UIKitButton.Type.Default,
|
||||
onClick: ((SyntheticMouseEvent) -> Unit)? = null,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLButtonElement> = {},
|
||||
contentAllocator: ContentBuilder<HTMLButtonElement>
|
||||
@@ -22,8 +21,7 @@ fun DefaultButton(
|
||||
Button(
|
||||
{
|
||||
onClick ?.let { onClick(it) }
|
||||
classes("uk-button")
|
||||
include(*modifiers, buttonType)
|
||||
include(UIKitButton, *modifiers)
|
||||
if (disabled) {
|
||||
disabled()
|
||||
}
|
||||
@@ -39,12 +37,11 @@ fun DefaultButton(
|
||||
text: String,
|
||||
vararg modifiers: UIKitModifier,
|
||||
disabled: Boolean = false,
|
||||
buttonType: UIKitButton.Type = UIKitButton.Type.Default,
|
||||
preTextContentAllocator: ContentBuilder<HTMLButtonElement>? = null,
|
||||
afterTextContentAllocator: ContentBuilder<HTMLButtonElement>? = null,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLButtonElement> = {},
|
||||
onClick: ((SyntheticMouseEvent) -> Unit)? = null
|
||||
) = DefaultButton(*modifiers, disabled = disabled, buttonType = buttonType, onClick = onClick, attributesCustomizer = attributesCustomizer) {
|
||||
) = DefaultButton(*modifiers, disabled = disabled, onClick = onClick, attributesCustomizer = attributesCustomizer) {
|
||||
preTextContentAllocator ?.apply { preTextContentAllocator() }
|
||||
Text(text)
|
||||
afterTextContentAllocator ?.apply { afterTextContentAllocator() }
|
||||
|
||||
79
src/jsMain/kotlin/dev/inmo/jsuikit/elements/Card.kt
Normal file
79
src/jsMain/kotlin/dev/inmo/jsuikit/elements/Card.kt
Normal file
@@ -0,0 +1,79 @@
|
||||
package dev.inmo.jsuikit.elements
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import dev.inmo.jsuikit.modifiers.*
|
||||
import dev.inmo.jsuikit.utils.Attrs
|
||||
import org.jetbrains.compose.web.dom.*
|
||||
import org.w3c.dom.*
|
||||
|
||||
@Composable
|
||||
fun Card(
|
||||
cardAttrs: Attrs<HTMLDivElement> = Attrs.empty(),
|
||||
headerAttrs: Attrs<HTMLDivElement> = Attrs.empty(),
|
||||
header: ContentBuilder<HTMLDivElement>? = null,
|
||||
footerAttrs: Attrs<HTMLDivElement> = Attrs.empty(),
|
||||
footer: ContentBuilder<HTMLDivElement>? = null,
|
||||
bodyAttrs: Attrs<HTMLDivElement> = Attrs.empty(),
|
||||
body: ContentBuilder<HTMLDivElement>
|
||||
) {
|
||||
Div(
|
||||
{
|
||||
include(UIKitCard)
|
||||
cardAttrs.builder(this)
|
||||
}
|
||||
) {
|
||||
header ?.let {
|
||||
Div(
|
||||
{
|
||||
include(UIKitCard.Parts.Header)
|
||||
headerAttrs.builder(this)
|
||||
},
|
||||
header
|
||||
)
|
||||
}
|
||||
Div(
|
||||
{
|
||||
include(UIKitCard.Parts.Body)
|
||||
bodyAttrs.builder(this)
|
||||
},
|
||||
body
|
||||
)
|
||||
footer ?.let {
|
||||
Div(
|
||||
{
|
||||
include(UIKitCard.Parts.Footer)
|
||||
footerAttrs.builder(this)
|
||||
},
|
||||
footer
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun CardTitle(
|
||||
titleAttrs: Attrs<HTMLHeadingElement> = Attrs.empty(),
|
||||
title: ContentBuilder<HTMLHeadingElement>
|
||||
) {
|
||||
H3(
|
||||
{
|
||||
include(UIKitCard.Title)
|
||||
titleAttrs.builder(this)
|
||||
},
|
||||
title
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun CardBadge(
|
||||
badgeAttrs: Attrs<HTMLDivElement> = Attrs.empty(),
|
||||
badge: ContentBuilder<HTMLDivElement>
|
||||
) {
|
||||
Div(
|
||||
{
|
||||
include(UIKitCard.Badge, UIKitLabel)
|
||||
badgeAttrs.builder(this)
|
||||
},
|
||||
badge
|
||||
)
|
||||
}
|
||||
@@ -1,7 +1,40 @@
|
||||
package dev.inmo.jsuikit.elements
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import dev.inmo.jsuikit.modifiers.*
|
||||
import org.jetbrains.compose.web.dom.AttrBuilderContext
|
||||
import org.jetbrains.compose.web.dom.Hr
|
||||
import org.w3c.dom.HTMLHRElement
|
||||
|
||||
object Divider {
|
||||
@Composable
|
||||
fun Common(
|
||||
vararg modifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLHRElement> = {}
|
||||
) = Hr {
|
||||
include(*modifiers)
|
||||
attributesCustomizer()
|
||||
}
|
||||
@Composable
|
||||
fun Icon(
|
||||
vararg modifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLHRElement> = {}
|
||||
) = Common(
|
||||
*(modifiers + UIKitDivider.Icon), attributesCustomizer = attributesCustomizer
|
||||
)
|
||||
@Composable
|
||||
fun Small(
|
||||
vararg modifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLHRElement> = {}
|
||||
) = Common(
|
||||
*(modifiers + UIKitDivider.Small), attributesCustomizer = attributesCustomizer
|
||||
)
|
||||
@Composable
|
||||
fun Vertical(
|
||||
vararg modifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLHRElement> = {}
|
||||
) = Common(
|
||||
*(modifiers + UIKitDivider.Vertical), attributesCustomizer = attributesCustomizer
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun Divider() = Hr({ classes("uk-divider-icon") })
|
||||
|
||||
@@ -1,41 +1,20 @@
|
||||
package dev.inmo.jsuikit.elements
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import dev.inmo.jsuikit.modifiers.UIKitModifier
|
||||
import dev.inmo.jsuikit.modifiers.include
|
||||
import dev.inmo.jsuikit.modifiers.*
|
||||
import dev.inmo.jsuikit.utils.Attrs
|
||||
import org.jetbrains.compose.web.dom.*
|
||||
import org.w3c.dom.HTMLSpanElement
|
||||
|
||||
sealed interface Label {
|
||||
val suffix: String
|
||||
|
||||
@Composable
|
||||
fun draw(
|
||||
text: String,
|
||||
vararg modifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLSpanElement> = {},
|
||||
) = Span(
|
||||
{
|
||||
classes("uk-label", "uk-label-$suffix")
|
||||
include(*modifiers)
|
||||
attributesCustomizer()
|
||||
}
|
||||
) {
|
||||
Text(text)
|
||||
}
|
||||
|
||||
object Success : Label {
|
||||
override val suffix: String
|
||||
get() = "success"
|
||||
}
|
||||
|
||||
object Warning : Label {
|
||||
override val suffix: String
|
||||
get() = "warning"
|
||||
}
|
||||
|
||||
object Error : Label {
|
||||
override val suffix: String
|
||||
get() = "danger"
|
||||
@Composable
|
||||
fun Label(
|
||||
text: String,
|
||||
attrs: Attrs<HTMLSpanElement>
|
||||
) = Span(
|
||||
{
|
||||
include(UIKitLabel)
|
||||
attrs.builder(this)
|
||||
}
|
||||
) {
|
||||
Text(text)
|
||||
}
|
||||
|
||||
@@ -269,6 +269,9 @@ fun NavElement(
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun NavDivider() {
|
||||
Li({ include(UIKitNav.Divider) })
|
||||
fun NavDivider(
|
||||
vararg modifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLLIElement> = {},
|
||||
) {
|
||||
Li({ include(UIKitNav.Divider, *modifiers);attributesCustomizer() })
|
||||
}
|
||||
|
||||
@@ -23,4 +23,4 @@ fun Spinner(
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun DefaultSpinner() = Spinner(UIKitAlign.Center, UIKitMargin.Small, UIKitText.Alignment.Center)
|
||||
fun DefaultSpinner() = Spinner(UIKitAlign.Center, UIKitMargin.Small, UIKitText.Alignment.Horizontal.Center, UIKitText.Alignment.Vertical.Middle)
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.jetbrains.compose.web.dom.Input
|
||||
import org.w3c.dom.HTMLInputElement
|
||||
|
||||
@Composable
|
||||
fun <T> TextField(
|
||||
fun <T> StandardInput(
|
||||
type: InputType<T>,
|
||||
state: MutableState<T>,
|
||||
disabledState: State<Boolean>? = null,
|
||||
@@ -23,7 +23,16 @@ fun <T> TextField(
|
||||
|
||||
placeholder ?.let(::placeholder)
|
||||
|
||||
onChange { state.value = it.value }
|
||||
state.value.let {
|
||||
when (it) {
|
||||
is String -> value(it)
|
||||
is Number -> value(it)
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
|
||||
onInput { state.value = it.value }
|
||||
|
||||
disabledState ?.let {
|
||||
if (it.value) {
|
||||
disabled()
|
||||
@@ -32,3 +41,14 @@ fun <T> TextField(
|
||||
attributesCustomizer()
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Deprecated("Renamed", ReplaceWith("StandardInput", "dev.inmo.jsuikit.elements.StandardInput"))
|
||||
fun <T> TextField(
|
||||
type: InputType<T>,
|
||||
state: MutableState<T>,
|
||||
disabledState: State<Boolean>? = null,
|
||||
placeholder: String? = null,
|
||||
vararg modifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLInputElement> = {},
|
||||
) = StandardInput(type, state, disabledState, placeholder, modifiers = modifiers, attributesCustomizer)
|
||||
@@ -10,16 +10,18 @@ import org.w3c.dom.*
|
||||
|
||||
@Composable
|
||||
fun <T> DefaultTable(
|
||||
heading: List<String>,
|
||||
headerBuilders: List<ContentBuilder<HTMLTableCellElement>>,
|
||||
dataList: SnapshotStateList<T>,
|
||||
vararg tableModifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
|
||||
headingCustomizer: AttrBuilderContext<HTMLTableCellElement> = {},
|
||||
headerCustomizer: AttrBuilderContext<HTMLTableSectionElement> = {},
|
||||
headerCellCustomizer: AttrsBuilder<HTMLTableCellElement>.(i: Int) -> Unit = {},
|
||||
rowAttributes: AttrsBuilder<HTMLTableRowElement>.(t: T) -> Unit = {},
|
||||
cellCustomizer: AttrsBuilder<HTMLTableCellElement>.(i: Int, t: T) -> Unit = { _, _ -> },
|
||||
betweenHeaderAndBodyFiller: ContentBuilder<HTMLTableElement> = {},
|
||||
cellFiller: @Composable ElementScope<HTMLTableCellElement>.(i: Int, t: T) -> Unit
|
||||
) {
|
||||
val headingIndexes = heading.indices
|
||||
val headingIndexes = headerBuilders.indices
|
||||
Table(
|
||||
{
|
||||
classes("uk-table")
|
||||
@@ -27,19 +29,20 @@ fun <T> DefaultTable(
|
||||
attributesCustomizer()
|
||||
}
|
||||
) {
|
||||
Thead {
|
||||
Thead(headerCustomizer) {
|
||||
Tr {
|
||||
heading.forEach {
|
||||
headerBuilders.forEachIndexed { i, t ->
|
||||
Th(
|
||||
{
|
||||
headingCustomizer()
|
||||
headerCellCustomizer(i)
|
||||
}
|
||||
) {
|
||||
Text(it)
|
||||
t()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
betweenHeaderAndBodyFiller()
|
||||
Tbody {
|
||||
dataList.forEach {
|
||||
Tr(
|
||||
@@ -61,3 +64,41 @@ fun <T> DefaultTable(
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun <T> DefaultTable(
|
||||
heading: List<String>,
|
||||
dataList: SnapshotStateList<T>,
|
||||
vararg tableModifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
|
||||
headerCustomizer: AttrBuilderContext<HTMLTableSectionElement> = {},
|
||||
headerCellCustomizer: AttrsBuilder<HTMLTableCellElement>.(i: Int, title: String) -> Unit = { _, _ -> },
|
||||
rowAttributes: AttrsBuilder<HTMLTableRowElement>.(t: T) -> Unit = {},
|
||||
cellCustomizer: AttrsBuilder<HTMLTableCellElement>.(i: Int, t: T) -> Unit = { _, _ -> },
|
||||
betweenHeaderAndBodyFiller: ContentBuilder<HTMLTableElement> = {},
|
||||
cellFiller: @Composable ElementScope<HTMLTableCellElement>.(i: Int, t: T) -> Unit
|
||||
) {
|
||||
val headersByIndex = heading.mapIndexed { index, s -> index to s }.toMap()
|
||||
val headerCellCustomizer: AttrsBuilder<HTMLTableCellElement>.(i: Int) -> Unit = { i ->
|
||||
val header = headersByIndex[i]
|
||||
if (header != null) {
|
||||
headerCellCustomizer(i, header)
|
||||
}
|
||||
}
|
||||
inline fun headerFactory(header: String): ContentBuilder<HTMLTableCellElement> = {
|
||||
Text(header)
|
||||
}
|
||||
val headerBuilders = heading.map(::headerFactory)
|
||||
return DefaultTable(
|
||||
headerBuilders,
|
||||
dataList,
|
||||
tableModifiers = tableModifiers,
|
||||
attributesCustomizer,
|
||||
headerCustomizer,
|
||||
headerCellCustomizer,
|
||||
rowAttributes,
|
||||
cellCustomizer,
|
||||
betweenHeaderAndBodyFiller,
|
||||
cellFiller
|
||||
)
|
||||
}
|
||||
|
||||
14
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitBase.kt
Normal file
14
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitBase.kt
Normal file
@@ -0,0 +1,14 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitBase(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
sealed class Heading(suffix: String) : UIKitBase("uk-h$suffix") {
|
||||
object H1 : Heading("1")
|
||||
object H2 : Heading("2")
|
||||
object H3 : Heading("3")
|
||||
object H4 : Heading("4")
|
||||
object H5 : Heading("5")
|
||||
object H6 : Heading("6")
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitButton(suffix: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-button-$suffix")
|
||||
sealed class UIKitButton(suffix: String?) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-button${suffix?.let { "-$it" } ?: ""}")
|
||||
|
||||
sealed class Type(suffix: String) : UIKitButton(suffix) {
|
||||
object Default : Type("default")
|
||||
@@ -11,4 +11,6 @@ sealed class UIKitButton(suffix: String) : UIKitModifier {
|
||||
object Text : Type("text")
|
||||
object Link : Type("link")
|
||||
}
|
||||
|
||||
companion object : UIKitButton(null)
|
||||
}
|
||||
|
||||
35
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitCard.kt
Normal file
35
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitCard.kt
Normal file
@@ -0,0 +1,35 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitCard(suffix: String?) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-card${suffix ?.let { "-$it" } ?: ""}")
|
||||
|
||||
object Title : UIKitCard("title")
|
||||
object Hover : UIKitCard("hover")
|
||||
object Badge : Parts("badge")
|
||||
|
||||
sealed class Parts(suffix: String) : UIKitCard(suffix) {
|
||||
object Header : Parts("header")
|
||||
object Body : Parts("body")
|
||||
object Footer : Parts("footer")
|
||||
}
|
||||
|
||||
sealed class Style(suffix: String) : UIKitCard(suffix) {
|
||||
object Default : Style("default")
|
||||
object Primary : Style("primary")
|
||||
object Secondary : Style("secondary")
|
||||
}
|
||||
|
||||
sealed class Size(suffix: String) : UIKitCard(suffix) {
|
||||
object Small : Size("small")
|
||||
object Large : Size("large")
|
||||
}
|
||||
|
||||
sealed class Media(suffix: String) : UIKitCard("media-$suffix") {
|
||||
object Top : Media("top")
|
||||
object Right : Media("right")
|
||||
object Bottom : Media("bottom")
|
||||
object Left : Media("left")
|
||||
}
|
||||
|
||||
companion object : UIKitCard(null)
|
||||
}
|
||||
15
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitColumn.kt
Normal file
15
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitColumn.kt
Normal file
@@ -0,0 +1,15 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitColumn(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
object Two : UIKitColumn("uk-column-1-2")
|
||||
object Three : UIKitColumn("uk-column-1-3")
|
||||
object Four : UIKitColumn("uk-column-1-4")
|
||||
object Five : UIKitColumn("uk-column-1-5")
|
||||
object Six : UIKitColumn("uk-column-1-6")
|
||||
|
||||
object Divider : UIKitColumn("uk-column-divider")
|
||||
|
||||
object Span : UIKitColumn("uk-column-span")
|
||||
}
|
||||
10
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitDivider.kt
Normal file
10
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitDivider.kt
Normal file
@@ -0,0 +1,10 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitDivider(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
object Icon : UIKitDivider("uk-divider-icon")
|
||||
object Small : UIKitDivider("uk-divider-small")
|
||||
object Vertical : UIKitDivider("uk-divider-vertical")
|
||||
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitFlex(suffix: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-flex-$suffix")
|
||||
sealed class UIKitFlex(suffix: String?) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-flex${suffix ?.let { "-$it" } ?: ""}")
|
||||
|
||||
object Inline : UIKitFlex("inline")
|
||||
|
||||
@@ -76,4 +76,6 @@ sealed class UIKitFlex(suffix: String) : UIKitModifier {
|
||||
|
||||
object NoWrap : UIKitFlex("nowrap")
|
||||
|
||||
companion object : UIKitFlex(null)
|
||||
|
||||
}
|
||||
|
||||
11
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitLabel.kt
Normal file
11
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitLabel.kt
Normal file
@@ -0,0 +1,11 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitLabel(suffix: String?) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-label${suffix?.let { "-$it" } ?: ""}")
|
||||
|
||||
object Success : UIKitLabel("success")
|
||||
object Warning : UIKitLabel("warning")
|
||||
object Error : UIKitLabel("danger")
|
||||
|
||||
companion object : UIKitLabel(null)
|
||||
}
|
||||
@@ -18,3 +18,5 @@ sealed class UIKitScreenSizeModifier(val name: String) {
|
||||
modifier
|
||||
)
|
||||
}
|
||||
|
||||
fun UIKitModifier.applyWhenScreenSizeIs(size: UIKitScreenSizeModifier) = size.modify(this)
|
||||
|
||||
@@ -3,16 +3,34 @@ package dev.inmo.jsuikit.modifiers
|
||||
sealed class UIKitText(suffix: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-text-$suffix")
|
||||
|
||||
object Lead : UIKitText("lead")
|
||||
object Meta : UIKitText("meta")
|
||||
|
||||
sealed class Alignment(suffix: String) : UIKitText(suffix) {
|
||||
object Left : Alignment("left")
|
||||
object Right : Alignment("right")
|
||||
object Center : Alignment("center")
|
||||
object Justify : Alignment("justify")
|
||||
sealed class Style(suffix: String) : UIKitText(suffix) {
|
||||
object Lead : Style("lead")
|
||||
object Meta : Style("meta")
|
||||
object Italic : Style("italic")
|
||||
}
|
||||
|
||||
sealed class Size(suffix: String) : UIKitText(suffix) {
|
||||
object Small : Size("small")
|
||||
object Default : Size("default")
|
||||
object Large : Size("large")
|
||||
}
|
||||
|
||||
sealed class Weight(suffix: String) : UIKitText(suffix) {
|
||||
object Light : Weight("light")
|
||||
object Normal : Weight("normal")
|
||||
object Bold : Weight("bold")
|
||||
object Lighter : Weight("lighter")
|
||||
object Bolder : Weight("bolder")
|
||||
}
|
||||
|
||||
sealed class Transform(suffix: String) : UIKitText(suffix) {
|
||||
object Capitalize : Transform("capitalize")
|
||||
object Uppercase : Transform("uppercase")
|
||||
object Lowercase : Transform("lowercase")
|
||||
}
|
||||
|
||||
object DecorationNone : UIKitText("decoration-none")
|
||||
|
||||
sealed class Color(suffix: String) : UIKitText(suffix) {
|
||||
object Muted : Color("muted")
|
||||
object Emphasis : Color("emphasis")
|
||||
@@ -22,4 +40,32 @@ sealed class UIKitText(suffix: String) : UIKitModifier {
|
||||
object Warning : Color("warning")
|
||||
object Danger : Color("danger")
|
||||
}
|
||||
|
||||
object Background : UIKitText("background")
|
||||
|
||||
sealed class Alignment(suffix: String) : UIKitText(suffix) {
|
||||
|
||||
sealed class Horizontal(suffix: String) : Alignment(suffix) {
|
||||
object Left : Horizontal("left")
|
||||
object Right : Horizontal("right")
|
||||
object Center : Horizontal("center")
|
||||
object Justify : Horizontal("justify")
|
||||
}
|
||||
|
||||
sealed class Vertical(suffix: String) : Alignment(suffix) {
|
||||
object Top : Vertical("top")
|
||||
object Middle : Vertical("middle")
|
||||
object Bottom : Vertical("bottom")
|
||||
object Baseline : Vertical("baseline")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
sealed class Wrapping(suffix: String) : UIKitText(suffix) {
|
||||
|
||||
object Truncate : Wrapping("truncate")
|
||||
object Break : Wrapping("break")
|
||||
object NoWrap : Wrapping("nowrap")
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,33 +1,82 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitWidth(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-width-$classname")
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
object Full : UIKitWidth("1-1")
|
||||
object Expand : UIKitWidth("expand")
|
||||
object Auto : UIKitWidth("uk-width-auto")
|
||||
object Expand : UIKitWidth("uk-width-expand")
|
||||
object Full : UIKitWidth("uk-width-1-1")
|
||||
|
||||
object Half : UIKitWidth("1-2")
|
||||
object Half : UIKitWidth("uk-width-1-2")
|
||||
|
||||
object OneThird : UIKitWidth("1-3")
|
||||
object TwoThird : UIKitWidth("2-3")
|
||||
object OneThird : UIKitWidth("uk-width-1-3")
|
||||
object TwoThird : UIKitWidth("uk-width-2-3")
|
||||
|
||||
object OneFourth : UIKitWidth("1-4")
|
||||
val TwoFourth get() = Half
|
||||
object ThreeFourth : UIKitWidth("3-4")
|
||||
val FourFourth get() = Full
|
||||
object OneFourth : UIKitWidth("uk-width-1-4")
|
||||
object ThreeFourth : UIKitWidth("uk-width-3-4")
|
||||
|
||||
object OneFifth : UIKitWidth("1-5")
|
||||
object TwoFifth : UIKitWidth("2-5")
|
||||
object ThreeFifth : UIKitWidth("3-5")
|
||||
object FourFifth : UIKitWidth("4-5")
|
||||
val FiveFifth get() = Full
|
||||
object OneFifth : UIKitWidth("uk-width-1-5")
|
||||
object TwoFifth : UIKitWidth("uk-width-2-5")
|
||||
object ThreeFifth : UIKitWidth("uk-width-3-5")
|
||||
object FourFifth : UIKitWidth("uk-width-4-5")
|
||||
|
||||
object OneSixth : UIKitWidth("1-6")
|
||||
val TwoSixth get() = OneThird
|
||||
val ThreeSixth get() = Half
|
||||
val FourSixth get() = TwoThird
|
||||
object FiveSixth : UIKitWidth("5-6")
|
||||
val SixSixth get() = Full
|
||||
object OneSixth : UIKitWidth("uk-width-1-6")
|
||||
object FiveSixth : UIKitWidth("uk-width-5-6")
|
||||
|
||||
sealed class Child(suffix: String) : UIKitWidth("uk-child-width-$suffix") {
|
||||
object Full : Child("1-1")
|
||||
|
||||
object Half : Child("1-2")
|
||||
|
||||
object OneThird : Child("1-3")
|
||||
object TwoThird : Child("2-3")
|
||||
|
||||
object OneFourth : Child("1-4")
|
||||
object ThreeFourth : Child("3-4")
|
||||
|
||||
object OneFifth : Child("1-5")
|
||||
object TwoFifth : Child("2-5")
|
||||
object ThreeFifth : Child("3-5")
|
||||
object FourFifth : Child("4-5")
|
||||
|
||||
object OneSixth : Child("1-6")
|
||||
object FiveSixth : Child("5-6")
|
||||
|
||||
object Auto : Child("auto")
|
||||
object Expand : Child("expand")
|
||||
|
||||
companion object {
|
||||
|
||||
val TwoFourth get() = Half
|
||||
val TwoSixth get() = OneThird
|
||||
val ThreeSixth get() = Half
|
||||
val FourSixth get() = TwoThird
|
||||
val FourFourth get() = Full
|
||||
val FiveFifth get() = Full
|
||||
val SixSixth get() = Full
|
||||
}
|
||||
}
|
||||
|
||||
sealed class Fixed(suffix: String) : UIKitWidth("uk-width-fixed-$suffix") {
|
||||
|
||||
object Small : Fixed("small")
|
||||
object Medium : Fixed("medium")
|
||||
object Large : Fixed("large")
|
||||
object XLarge : Fixed("xlarge")
|
||||
object XXLarge : Fixed("2xlarge")
|
||||
|
||||
}
|
||||
|
||||
override fun toString() = classes.first()
|
||||
|
||||
companion object {
|
||||
|
||||
val TwoFourth get() = Half
|
||||
val TwoSixth get() = OneThird
|
||||
val ThreeSixth get() = Half
|
||||
val FourSixth get() = TwoThird
|
||||
val FourFourth get() = Full
|
||||
val FiveFifth get() = Full
|
||||
val SixSixth get() = Full
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
package dev.inmo.jsuikit.utils
|
||||
|
||||
import dev.inmo.jsuikit.modifiers.UIKitModifier
|
||||
import dev.inmo.jsuikit.modifiers.include
|
||||
import org.jetbrains.compose.web.attributes.AttrsBuilder
|
||||
import org.jetbrains.compose.web.dom.AttrBuilderContext
|
||||
import org.w3c.dom.Element
|
||||
|
||||
class AttributesCollection<T : Element> (
|
||||
private vararg val modifiers: UIKitModifier,
|
||||
private val attrs: AttrBuilderContext<T> = {}
|
||||
) {
|
||||
val builder: AttrBuilderContext<T> = {
|
||||
include(*modifiers)
|
||||
attrs()
|
||||
}
|
||||
|
||||
companion object {
|
||||
val Empty = Attrs<Element>()
|
||||
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
fun <T : Element> empty() = Empty as Attrs<T>
|
||||
}
|
||||
}
|
||||
|
||||
typealias Attrs<T> = AttributesCollection<T>
|
||||
Reference in New Issue
Block a user