mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2025-12-04 05:15:56 +00:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e4c2622115 | |||
| 1a655810bd | |||
| dcc8646f18 | |||
| 53c728d7bc | |||
| 01349d2fac | |||
| 5ac4242b68 | |||
| c1c1f847a9 | |||
| 1f8298f626 | |||
| 94698a0468 | |||
| ca8f927304 | |||
| a856545471 | |||
| 41b8063c72 | |||
| 6f4f1776c4 | |||
| e10bbdeaa0 | |||
| 9dd486090a | |||
| 4479d9b0f9 | |||
| cef131b1d0 | |||
| 15340eadb1 | |||
| 36ab3fe52e |
20
CHANGELOG.md
20
CHANGELOG.md
@@ -1,5 +1,25 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.34
|
||||
|
||||
* Add `Alert`
|
||||
* Add `Animation#KenBurns`
|
||||
|
||||
## 0.0.33
|
||||
|
||||
* Fixes in attributes building and related things
|
||||
|
||||
## 0.0.32
|
||||
|
||||
* Support of `UIKitHeight`
|
||||
* New builder `AttributesBuilder`
|
||||
* New `Percents`/`Pixels` abstractions
|
||||
* Fixes in `UIKitWidth#Fixed` classnames
|
||||
|
||||
## 0.0.31
|
||||
|
||||
* Support of `UIKitVisibility`
|
||||
|
||||
## 0.0.30
|
||||
|
||||
* Add `UIKitComment`
|
||||
|
||||
@@ -9,4 +9,4 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.0.30
|
||||
version=0.0.34
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
package dev.inmo.jsuikit
|
||||
|
||||
import dev.inmo.jsuikit.modifiers.AttributeValue
|
||||
import dev.inmo.jsuikit.utils.AttributeBuilder
|
||||
import dev.inmo.jsuikit.utils.buildAttribute
|
||||
import org.jetbrains.compose.web.attributes.AttrsBuilder
|
||||
|
||||
@Deprecated("Will be removed soon")
|
||||
class UIKitAttributeValueBuilder {
|
||||
private val attrs = mutableListOf<Pair<String, String>>()
|
||||
|
||||
@@ -21,7 +24,10 @@ class UIKitAttributeValueBuilder {
|
||||
|
||||
fun AttrsBuilder<*>.buildAndAddAttribute(
|
||||
attributeName: String,
|
||||
block: UIKitAttributeValueBuilder.() -> Unit
|
||||
skipNullValues: Boolean = true,
|
||||
block: AttributeBuilder.() -> Unit
|
||||
) {
|
||||
attr(attributeName, UIKitAttributeValueBuilder().apply(block).build())
|
||||
buildAttribute(attributeName, skipNullValues, block).let {
|
||||
attr(it.first, it.second)
|
||||
}
|
||||
}
|
||||
|
||||
49
src/jsMain/kotlin/dev/inmo/jsuikit/elements/Alert.kt
Normal file
49
src/jsMain/kotlin/dev/inmo/jsuikit/elements/Alert.kt
Normal file
@@ -0,0 +1,49 @@
|
||||
package dev.inmo.jsuikit.elements
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import dev.inmo.jsuikit.buildAndAddAttribute
|
||||
import dev.inmo.jsuikit.modifiers.*
|
||||
import dev.inmo.jsuikit.utils.Attrs
|
||||
import dev.inmo.jsuikit.utils.Milliseconds
|
||||
import org.jetbrains.compose.web.dom.*
|
||||
import org.w3c.dom.HTMLAnchorElement
|
||||
import org.w3c.dom.HTMLDivElement
|
||||
|
||||
@Composable
|
||||
fun Alert(
|
||||
attrs: Attrs<HTMLDivElement> = Attrs.empty(),
|
||||
animation: UIKitAnimation? = UIKitAnimation.Fade,
|
||||
duration: Milliseconds? = null,
|
||||
selClose: String? = null,
|
||||
content: ContentBuilder<HTMLDivElement>
|
||||
) = Div(
|
||||
{
|
||||
attrs.builder(this)
|
||||
include(UIKitAlert)
|
||||
|
||||
buildAndAddAttribute("uk-alert") {
|
||||
"animation" to animation ?.classes ?.firstOrNull()
|
||||
"duration" to duration
|
||||
"sel-close" to selClose
|
||||
}
|
||||
},
|
||||
content
|
||||
)
|
||||
|
||||
@Composable
|
||||
fun AlertCloseButton(
|
||||
attrs: Attrs<HTMLAnchorElement> = Attrs.empty(),
|
||||
content: ContentBuilder<HTMLAnchorElement> = @Composable {}
|
||||
) {
|
||||
A(
|
||||
null,
|
||||
{
|
||||
include(UIKitAlert.Close, UIKitIcon)
|
||||
attr("uk-close", "")
|
||||
classes("uk-close")
|
||||
attrs.builder(this)
|
||||
},
|
||||
content
|
||||
)
|
||||
|
||||
}
|
||||
@@ -4,6 +4,7 @@ import androidx.compose.runtime.Composable
|
||||
import dev.inmo.jsuikit.buildAndAddAttribute
|
||||
import dev.inmo.jsuikit.modifiers.*
|
||||
import dev.inmo.jsuikit.utils.Milliseconds
|
||||
import dev.inmo.jsuikit.utils.buildAttribute
|
||||
import org.jetbrains.compose.web.dom.*
|
||||
import org.w3c.dom.HTMLDivElement
|
||||
|
||||
|
||||
@@ -211,8 +211,7 @@ sealed class Icon(val name: String) {
|
||||
onClick: ((Event) -> Unit)? = null
|
||||
) {
|
||||
val configurer: AttrBuilderContext<out HTMLElement> = {
|
||||
classes("uk-icon")
|
||||
include(*modifiers, type)
|
||||
include(*modifiers, type, UIKitIcon)
|
||||
attr("uk-icon", "icon: $name${if (ratio != null) { "; ratio: $ratio" } else ""}")
|
||||
onClick ?.let { _ ->
|
||||
onClick { onClick(it.nativeEvent) }
|
||||
|
||||
18
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitAlert.kt
Normal file
18
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitAlert.kt
Normal file
@@ -0,0 +1,18 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitAlert(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
sealed class Style(classname: String) : UIKitAlert(classname) {
|
||||
|
||||
object Primary : Style("uk-alert-primary")
|
||||
object Success : Style("uk-alert-success")
|
||||
object Warning : Style("uk-alert-warning")
|
||||
object Danger : Style("uk-alert-danger")
|
||||
|
||||
}
|
||||
|
||||
object Close : UIKitAlert("uk-alert-close")
|
||||
|
||||
companion object : UIKitAlert("uk-alert")
|
||||
}
|
||||
@@ -60,4 +60,6 @@ sealed class UIKitAnimation (name: String) : UIKitModifier, AttributeValue(name)
|
||||
|
||||
object Fast : UIKitAnimation("fast")
|
||||
|
||||
object KenBurns : UIKitAnimation("kenburns")
|
||||
|
||||
}
|
||||
|
||||
80
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitHeight.kt
Normal file
80
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitHeight.kt
Normal file
@@ -0,0 +1,80 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
import dev.inmo.jsuikit.utils.*
|
||||
import org.jetbrains.compose.web.css.CSSKeyframe
|
||||
|
||||
sealed class UIKitHeight(
|
||||
classname: String?,
|
||||
override val otherAttrs: Map<String, String> = emptyMap()
|
||||
) : UIKitModifier {
|
||||
override val classes: Array<String> = classname ?.let { arrayOf(it) } ?: emptyArray()
|
||||
|
||||
object Full : UIKitHeight("uk-height-1-1")
|
||||
|
||||
sealed class Size(classname: String) : UIKitHeight(classname) {
|
||||
|
||||
sealed class Small(classname: String = "uk-height-small") : Size(classname) {
|
||||
object Max : Small("uk-height-max-small")
|
||||
|
||||
companion object : Small()
|
||||
}
|
||||
|
||||
sealed class Medium(classname: String = "uk-height-medium") : Size(classname) {
|
||||
object Max : Medium("uk-height-max-medium")
|
||||
|
||||
companion object : Medium()
|
||||
}
|
||||
|
||||
sealed class Large(classname: String = "uk-height-large") : Size(classname) {
|
||||
object Max : Large("uk-height-max-large")
|
||||
|
||||
companion object : Large()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class Viewport(offsetTop: Boolean? = null, offsetBottom: String? = null, expand: Boolean? = null, minHeight: Int? = null) : UIKitHeight(
|
||||
null,
|
||||
mapOf(
|
||||
buildAttribute("uk-height-viewport") {
|
||||
offsetTop ?.let { "offset-top" to it.toString() }
|
||||
offsetBottom ?.let { "offset-bottom" to it }
|
||||
expand ?.let { "expand" to it.toString() }
|
||||
minHeight ?.let { "min-height" to it.toString() }
|
||||
}
|
||||
)
|
||||
)
|
||||
|
||||
fun Viewport(
|
||||
offsetTop: Boolean? = null,
|
||||
offsetBottom: Boolean,
|
||||
expand: Boolean? = null,
|
||||
minHeight: Int? = null
|
||||
) = Viewport(offsetTop, offsetBottom.toString(), expand, minHeight)
|
||||
|
||||
fun Viewport(
|
||||
offsetTop: Boolean? = null,
|
||||
offsetBottom: Pixels,
|
||||
expand: Boolean? = null,
|
||||
minHeight: Int? = null
|
||||
) = Viewport(offsetTop, offsetBottom.toString(), expand, minHeight)
|
||||
|
||||
fun Viewport(
|
||||
offsetTop: Boolean? = null,
|
||||
offsetBottom: Percents,
|
||||
expand: Boolean? = null,
|
||||
minHeight: Int? = null
|
||||
) = Viewport(offsetTop, offsetBottom.toString(), expand, minHeight)
|
||||
|
||||
|
||||
class Match(target: String? = null, row: Boolean? = null) : UIKitHeight(
|
||||
null,
|
||||
mapOf(
|
||||
buildAttribute("uk-height-match") {
|
||||
target ?.let { "target" to it }
|
||||
row ?.let { "row" to it.toString() }
|
||||
}
|
||||
)
|
||||
)
|
||||
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitIcon(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
companion object : UIKitIcon("uk-icon")
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
import dev.inmo.jsuikit.utils.buildAttribute
|
||||
|
||||
class UIKitTooltipModifier(
|
||||
text: String,
|
||||
align: Align? = null,
|
||||
@@ -8,16 +10,15 @@ class UIKitTooltipModifier(
|
||||
duration: Int? = null,
|
||||
animation: UIKitAnimation? = null
|
||||
) : UIKitModifier {
|
||||
private val parametersMap = listOfNotNull(
|
||||
"title" to text,
|
||||
align ?.let { it.k to it.v },
|
||||
delay ?.let { "delay" to it.toString() },
|
||||
offset ?.let { "offset" to it.toString() },
|
||||
duration ?.let { "duration" to it.toString() },
|
||||
animation ?.let { "animation" to it.name },
|
||||
)
|
||||
override val otherAttrs: Map<String, String> = mapOf(
|
||||
"uk-tooltip" to parametersMap.joinToString(";") { (k, v) -> "$k: $v" }
|
||||
buildAttribute("uk-tooltip") {
|
||||
"title" to text
|
||||
align ?.let { it.k to it.v }
|
||||
delay ?.let { "delay" to it.toString() }
|
||||
offset ?.let { "offset" to it.toString() }
|
||||
duration ?.let { "duration" to it.toString() }
|
||||
animation ?.let { "animation" to it.name }
|
||||
}
|
||||
)
|
||||
|
||||
sealed class Align(name: String) {
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitVisibility(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
sealed class Hidden(suffix: String?) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-hidden${suffix ?.let { "-$it" } ?: ""}")
|
||||
|
||||
object Hover : Hidden("hover")
|
||||
sealed class Touch(suffix: String?) : Hidden(suffix) {
|
||||
override val classes: Array<String> = arrayOf("${suffix ?: ""}touch")
|
||||
|
||||
object No : Touch("no")
|
||||
|
||||
companion object : Touch(null)
|
||||
}
|
||||
|
||||
companion object : Hidden(null) {
|
||||
val NoTouch = Touch.No
|
||||
}
|
||||
}
|
||||
|
||||
sealed class Invisible(suffix: String?) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-invisible${suffix ?.let { "-$it" } ?: ""}")
|
||||
|
||||
object Hover : Invisible("hover")
|
||||
|
||||
companion object : Invisible(null)
|
||||
}
|
||||
}
|
||||
@@ -57,7 +57,7 @@ sealed class UIKitWidth(classname: String) : UIKitModifier {
|
||||
}
|
||||
}
|
||||
|
||||
sealed class Fixed(suffix: String) : UIKitWidth("uk-width-fixed-$suffix") {
|
||||
sealed class Fixed(suffix: String) : UIKitWidth("uk-width-$suffix") {
|
||||
|
||||
object Small : Fixed("small")
|
||||
object Medium : Fixed("medium")
|
||||
|
||||
27
src/jsMain/kotlin/dev/inmo/jsuikit/utils/AttributeBuilder.kt
Normal file
27
src/jsMain/kotlin/dev/inmo/jsuikit/utils/AttributeBuilder.kt
Normal file
@@ -0,0 +1,27 @@
|
||||
package dev.inmo.jsuikit.utils
|
||||
|
||||
class AttributeBuilder (
|
||||
val attributeName: String,
|
||||
val skipNullValues: Boolean = true,
|
||||
private val parametersPreset: MutableMap<String, String?> = mutableMapOf()
|
||||
) {
|
||||
|
||||
fun add(k: String, v: Any? = null) {
|
||||
if (v != null || !skipNullValues) {
|
||||
parametersPreset[k] = v ?.toString()
|
||||
}
|
||||
}
|
||||
infix fun String.to(value: Any?) = add(this, value)
|
||||
operator fun String.unaryPlus() = add(this, null)
|
||||
|
||||
fun build(): Pair<String, String> = Pair(
|
||||
attributeName, parametersPreset.toList().joinToString(";") {
|
||||
"${it.first}${it.second ?.let { ": $it" } ?: ""}"
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
inline fun buildAttribute(attributeName: String, skipNullValues: Boolean = true, block: AttributeBuilder.() -> Unit) = AttributeBuilder(
|
||||
attributeName,
|
||||
skipNullValues
|
||||
).apply(block).build()
|
||||
5
src/jsMain/kotlin/dev/inmo/jsuikit/utils/Percents.kt
Normal file
5
src/jsMain/kotlin/dev/inmo/jsuikit/utils/Percents.kt
Normal file
@@ -0,0 +1,5 @@
|
||||
package dev.inmo.jsuikit.utils
|
||||
|
||||
value class Percents(val int: Int) {
|
||||
override fun toString(): String = "${int}%"
|
||||
}
|
||||
5
src/jsMain/kotlin/dev/inmo/jsuikit/utils/Pixels.kt
Normal file
5
src/jsMain/kotlin/dev/inmo/jsuikit/utils/Pixels.kt
Normal file
@@ -0,0 +1,5 @@
|
||||
package dev.inmo.jsuikit.utils
|
||||
|
||||
value class Pixels(val int: Int) {
|
||||
override fun toString(): String = "${int}px"
|
||||
}
|
||||
Reference in New Issue
Block a user