mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-05 07:53:57 +00:00
commit
41b8063c72
@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.32
|
||||
|
||||
* Support of `UIKitHeight`
|
||||
* New builder `AttributesBuilder`
|
||||
* New `Percents`/`Pixels` abstractions
|
||||
* Fixes in `UIKitWidth#Fixed` classnames
|
||||
|
||||
## 0.0.31
|
||||
|
||||
* Support of `UIKitVisibility`
|
||||
|
@ -9,4 +9,4 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.0.31
|
||||
version=0.0.32
|
||||
|
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() }
|
||||
}
|
||||
)
|
||||
)
|
||||
|
||||
}
|
@ -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) {
|
||||
|
@ -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")
|
||||
|
21
src/jsMain/kotlin/dev/inmo/jsuikit/utils/AttributeBuilder.kt
Normal file
21
src/jsMain/kotlin/dev/inmo/jsuikit/utils/AttributeBuilder.kt
Normal file
@ -0,0 +1,21 @@
|
||||
package dev.inmo.jsuikit.utils
|
||||
|
||||
class AttributeBuilder (
|
||||
val attributeName: String,
|
||||
private val parametersPreset: MutableMap<String, String?> = mutableMapOf()
|
||||
) {
|
||||
|
||||
fun add(k: String, v: String? = null) = parametersPreset.set(k, v)
|
||||
infix fun String.to(value: String?) = 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, block: AttributeBuilder.() -> Unit) = AttributeBuilder(
|
||||
attributeName
|
||||
).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"
|
||||
}
|
Loading…
Reference in New Issue
Block a user