mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2025-12-04 05:15:56 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cef131b1d0 | |||
| 15340eadb1 | |||
| 36ab3fe52e | |||
| 029a7804ad | |||
| 7edea7bf74 | |||
| b1ea6d3a61 | |||
| a304dcf5df | |||
| a88562d3c4 | |||
| d9a01a8ab8 | |||
| 56b1268172 |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1,5 +1,19 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.31
|
||||
|
||||
* Support of `UIKitVisibility`
|
||||
|
||||
## 0.0.30
|
||||
|
||||
* Add `UIKitComment`
|
||||
* Including of `Comment` element
|
||||
* Upfill `UIKitSubNav`
|
||||
|
||||
## 0.0.29
|
||||
|
||||
* Unfilling of `UIKitText`
|
||||
|
||||
## 0.0.28
|
||||
|
||||
* Fixes in `UIKitWidth`
|
||||
|
||||
@@ -9,4 +9,4 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.0.28
|
||||
version=0.0.31
|
||||
|
||||
106
src/jsMain/kotlin/dev/inmo/jsuikit/elements/Comment.kt
Normal file
106
src/jsMain/kotlin/dev/inmo/jsuikit/elements/Comment.kt
Normal file
@@ -0,0 +1,106 @@
|
||||
package dev.inmo.jsuikit.elements
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import dev.inmo.jsuikit.modifiers.*
|
||||
import dev.inmo.jsuikit.utils.*
|
||||
import org.jetbrains.compose.web.dom.*
|
||||
import org.w3c.dom.*
|
||||
|
||||
@Composable
|
||||
fun Comment(
|
||||
rootAttrs: Attrs<HTMLElement> = Attrs.empty(),
|
||||
headerAttrs: Attrs<HTMLElement>? = null,
|
||||
headerContent: ContentBuilder<HTMLElement>? = null,
|
||||
bodyAttrs: Attrs<HTMLDivElement>? = null,
|
||||
bodyContent: ContentBuilder<HTMLDivElement>? = null,
|
||||
) {
|
||||
Article(
|
||||
{
|
||||
include(UIKitComment)
|
||||
rootAttrs.builder(this)
|
||||
}
|
||||
) {
|
||||
if (headerAttrs != null || headerContent != null) {
|
||||
Header (
|
||||
{
|
||||
include(UIKitComment.Header)
|
||||
headerAttrs ?.builder ?.invoke(this)
|
||||
}
|
||||
) {
|
||||
headerContent ?.let { it(this) }
|
||||
}
|
||||
}
|
||||
if (bodyAttrs != null || bodyContent != null) {
|
||||
Div(
|
||||
{
|
||||
include(UIKitComment.Body)
|
||||
bodyAttrs ?.builder ?.invoke(this)
|
||||
}
|
||||
) {
|
||||
bodyContent ?.let { it(this) }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun DefaultComment(
|
||||
headerGridAttrs: Attrs<HTMLDivElement>? = null,
|
||||
avatarUrl: String? = null,
|
||||
avatarAttrs: Attrs<HTMLImageElement>? = null,
|
||||
titleAttrs: Attrs<HTMLHeadingElement>? = null,
|
||||
titleContent: ContentBuilder<HTMLHeadingElement>? = null,
|
||||
metaAttrs: Attrs<HTMLUListElement>? = null,
|
||||
metaContent: ContentBuilder<HTMLUListElement>? = null,
|
||||
rootAttrs: Attrs<HTMLElement> = Attrs.empty(),
|
||||
headerAttrs: Attrs<HTMLElement>? = null,
|
||||
additionalHeaderContent: ContentBuilder<HTMLElement>? = null,
|
||||
bodyAttrs: Attrs<HTMLDivElement>? = null,
|
||||
bodyContent: ContentBuilder<HTMLDivElement>? = null,
|
||||
) {
|
||||
Comment(
|
||||
rootAttrs = rootAttrs,
|
||||
headerAttrs = headerAttrs,
|
||||
headerContent = {
|
||||
if (arrayOf(headerGridAttrs, avatarUrl, avatarAttrs, titleAttrs, titleContent, metaAttrs, metaContent).anyNotNull()) {
|
||||
Grid(
|
||||
UIKitGrid.Gap.Medium, UIKitFlex.Alignment.Vertical.Middle,
|
||||
attributesCustomizer = headerGridAttrs ?.builder ?: {}
|
||||
) {
|
||||
if (avatarUrl != null) {
|
||||
Div({ include(UIKitWidth.Auto) }) {
|
||||
Img(avatarUrl, attrs = avatarAttrs ?.builder)
|
||||
}
|
||||
}
|
||||
if (arrayOf(titleAttrs, titleContent, metaAttrs, metaContent).anyNotNull()) {
|
||||
Div({ include(UIKitWidth.Expand) }) {
|
||||
optionallyDraw(titleAttrs, titleContent) {
|
||||
H4(
|
||||
{
|
||||
include(UIKitComment.Title, UIKitMargin.Remove)
|
||||
titleAttrs ?.builder ?.invoke(this)
|
||||
}
|
||||
) {
|
||||
titleContent ?.invoke(this)
|
||||
}
|
||||
}
|
||||
optionallyDraw(metaAttrs, metaContent) {
|
||||
Ul (
|
||||
{
|
||||
include(UIKitComment.Meta, UIKitSubNav, UIKitSubNav.Divider, UIKitMargin.Remove.Top)
|
||||
metaAttrs ?.builder ?.invoke(this)
|
||||
}
|
||||
) {
|
||||
metaContent ?.invoke(this)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
additionalHeaderContent ?.let { it(this) }
|
||||
},
|
||||
bodyAttrs = bodyAttrs,
|
||||
bodyContent = bodyContent
|
||||
)
|
||||
}
|
||||
@@ -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)
|
||||
|
||||
17
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitComment.kt
Normal file
17
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitComment.kt
Normal file
@@ -0,0 +1,17 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitComment(suffix: String?) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-comment${suffix ?.let { "-$it" } ?: ""}")
|
||||
|
||||
object Body : UIKitComment("body")
|
||||
object Header : UIKitComment("header")
|
||||
object Title : UIKitComment("title")
|
||||
object Meta : UIKitComment("meta")
|
||||
object Avatar : UIKitComment("avatar")
|
||||
|
||||
object Primary : UIKitComment("primary")
|
||||
|
||||
object List : UIKitComment("list")
|
||||
|
||||
companion object : UIKitComment(null)
|
||||
}
|
||||
@@ -4,7 +4,6 @@ sealed class UIKitNav(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
object ParentIcon : UIKitNav("uk-nav-parent-icon")
|
||||
object SubNav : UIKitNav("uk-nav-sub")
|
||||
|
||||
object Header : UIKitNav("uk-nav-header")
|
||||
object Divider : UIKitNav("uk-nav-divider")
|
||||
@@ -15,5 +14,7 @@ sealed class UIKitNav(classname: String) : UIKitModifier {
|
||||
|
||||
object Center : UIKitNav("uk-nav-center")
|
||||
|
||||
companion object : UIKitNav("uk-nav")
|
||||
companion object : UIKitNav("uk-nav") {
|
||||
val SubNav = UIKitSubNav
|
||||
}
|
||||
}
|
||||
|
||||
10
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitSubNav.kt
Normal file
10
src/jsMain/kotlin/dev/inmo/jsuikit/modifiers/UIKitSubNav.kt
Normal file
@@ -0,0 +1,10 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitSubNav(classname: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf(classname)
|
||||
|
||||
object Divider : UIKitSubNav("uk-subnav-divider")
|
||||
object Pill : UIKitSubNav("uk-subnav-pill")
|
||||
|
||||
companion object : UIKitSubNav("uk-subnav")
|
||||
}
|
||||
@@ -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")
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
}
|
||||
11
src/jsMain/kotlin/dev/inmo/jsuikit/utils/AnyNotNull.kt
Normal file
11
src/jsMain/kotlin/dev/inmo/jsuikit/utils/AnyNotNull.kt
Normal file
@@ -0,0 +1,11 @@
|
||||
package dev.inmo.jsuikit.utils
|
||||
|
||||
fun <T> Array<T>.anyNotNull(): Boolean {
|
||||
for (item in this) {
|
||||
if (item != null) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
16
src/jsMain/kotlin/dev/inmo/jsuikit/utils/OptionallyDraw.kt
Normal file
16
src/jsMain/kotlin/dev/inmo/jsuikit/utils/OptionallyDraw.kt
Normal file
@@ -0,0 +1,16 @@
|
||||
package dev.inmo.jsuikit.utils
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import org.jetbrains.compose.web.dom.ContentBuilder
|
||||
import org.w3c.dom.Element
|
||||
|
||||
@Composable
|
||||
inline fun <T : Element> optionallyDraw (
|
||||
attrs: Attrs<T>? = null,
|
||||
noinline contentBuilder: ContentBuilder<T>? = null,
|
||||
whatToDraw: @Composable () -> Unit
|
||||
) {
|
||||
if (attrs != null || contentBuilder != null) {
|
||||
whatToDraw()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user