mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-23 10:38:45 +00:00
commit
3b3319c8aa
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.37
|
||||
|
||||
* `Dialog` now do not add auto margin by default
|
||||
* Support of `Accordion` element
|
||||
|
||||
## 0.0.36
|
||||
|
||||
* Reorder arguments in `DefaultComment` fun
|
||||
|
@ -9,4 +9,4 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.0.36
|
||||
version=0.0.37
|
||||
|
89
src/jsMain/kotlin/dev/inmo/jsuikit/elements/Accordion.kt
Normal file
89
src/jsMain/kotlin/dev/inmo/jsuikit/elements/Accordion.kt
Normal file
@ -0,0 +1,89 @@
|
||||
package dev.inmo.jsuikit.elements
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import dev.inmo.jsuikit.modifiers.UIKitAccordion
|
||||
import dev.inmo.jsuikit.modifiers.include
|
||||
import dev.inmo.jsuikit.utils.Attrs
|
||||
import org.jetbrains.compose.web.attributes.AttrsBuilder
|
||||
import org.jetbrains.compose.web.dom.*
|
||||
import org.w3c.dom.*
|
||||
|
||||
@Composable
|
||||
fun <T> Accordion(
|
||||
data: Iterable<T>,
|
||||
attrs: Attrs<HTMLUListElement> = Attrs.empty(),
|
||||
itemAttrsBuilder: AttrsBuilder<HTMLLIElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
itemContentBuilder: @Composable ElementScope<HTMLLIElement>.(Int, T) -> Unit
|
||||
) {
|
||||
Ul(
|
||||
{
|
||||
include(UIKitAccordion)
|
||||
attrs.builder(this)
|
||||
}
|
||||
) {
|
||||
data.forEachIndexed { i, t ->
|
||||
Li({ itemAttrsBuilder(i, t) }) {
|
||||
itemContentBuilder(i, t)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun <T> DefaultAccordion(
|
||||
data: Iterable<T>,
|
||||
attrs: Attrs<HTMLUListElement> = Attrs.empty(),
|
||||
itemAttrsBuilder: AttrsBuilder<HTMLLIElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
titleAttrsBuilder: AttrsBuilder<HTMLAnchorElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
titleContentBuilder: @Composable ElementScope<HTMLAnchorElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
beforeTitleContentBuilder: @Composable ElementScope<HTMLLIElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
afterTitleContentBuilder: @Composable ElementScope<HTMLLIElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
afterContentContentBuilder: @Composable ElementScope<HTMLLIElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
contentAttrsBuilder: AttrsBuilder<HTMLDivElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
contentContentBuilder: @Composable ElementScope<HTMLDivElement>.(Int, T) -> Unit
|
||||
) = Accordion(
|
||||
data,
|
||||
attrs,
|
||||
itemAttrsBuilder
|
||||
) { i, t ->
|
||||
beforeTitleContentBuilder(i, t)
|
||||
A(
|
||||
attrs = {
|
||||
include(UIKitAccordion.Title)
|
||||
titleAttrsBuilder(i, t)
|
||||
}
|
||||
) {
|
||||
titleContentBuilder(i, t)
|
||||
}
|
||||
afterTitleContentBuilder(i, t)
|
||||
Div(
|
||||
{
|
||||
include(UIKitAccordion.Content)
|
||||
contentAttrsBuilder(i, t)
|
||||
}
|
||||
) {
|
||||
contentContentBuilder(i, t)
|
||||
}
|
||||
afterContentContentBuilder(i, t)
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun <T> DefaultAccordion(
|
||||
data: Iterable<T>,
|
||||
titleResolver: (Int, T) -> String,
|
||||
attrs: Attrs<HTMLUListElement> = Attrs.empty(),
|
||||
itemAttrsBuilder: AttrsBuilder<HTMLLIElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
titleAttrsBuilder: AttrsBuilder<HTMLAnchorElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
contentAttrsBuilder: AttrsBuilder<HTMLDivElement>.(Int, T) -> Unit = { _, _ -> },
|
||||
contentContentBuilder: @Composable ElementScope<HTMLDivElement>.(Int, T) -> Unit
|
||||
) = DefaultAccordion(
|
||||
data,
|
||||
attrs,
|
||||
itemAttrsBuilder,
|
||||
titleAttrsBuilder,
|
||||
{ i, t ->
|
||||
org.jetbrains.compose.web.dom.Text(titleResolver(i, t))
|
||||
},
|
||||
contentAttrsBuilder = contentAttrsBuilder,
|
||||
contentContentBuilder = contentContentBuilder
|
||||
)
|
@ -44,7 +44,7 @@ fun Dialog(
|
||||
include(UIKitModal)
|
||||
}
|
||||
id("dialog${Random.nextUInt()}")
|
||||
include(*modifiers, UIKitFlex.Alignment.Vertical.Top)
|
||||
include(*modifiers)
|
||||
attributesCustomizer()
|
||||
}
|
||||
) {
|
||||
|
@ -0,0 +1,51 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
import dev.inmo.jsuikit.utils.*
|
||||
import org.w3c.dom.PageTransitionEvent
|
||||
|
||||
sealed class UIKitAccordion(
|
||||
vararg classnames: String,
|
||||
override val otherAttrs: Map<String, String> = emptyMap()
|
||||
) : UIKitModifier {
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
override val classes: Array<String> = classnames as Array<String>
|
||||
|
||||
object Title : UIKitAccordion("uk-accordion-title")
|
||||
object Content : UIKitAccordion("uk-accordion-content")
|
||||
|
||||
class Custom internal constructor(
|
||||
otherAttrs: Map<String, String> = emptyMap()
|
||||
) : UIKitAccordion (otherAttrs = otherAttrs)
|
||||
|
||||
companion object : UIKitAccordion("uk-accordion", otherAttrs = mapOf("uk-accordion" to "")) {
|
||||
val Open = UIKitUtility.Open
|
||||
|
||||
operator fun invoke(
|
||||
activeItemIndex: Int? = null,
|
||||
animation: Boolean? = null,
|
||||
collapsible: Boolean? = null,
|
||||
contentSelector: String? = null,
|
||||
animationDuration: Milliseconds? = null,
|
||||
multiple: Boolean? = null,
|
||||
targetsSelector: String? = null,
|
||||
toggleSelector: String? = null,
|
||||
transition: PageTransitionEvent? = null,
|
||||
offsetTopPixels: Int? = null,
|
||||
) = Custom(
|
||||
mapOf(
|
||||
buildAttribute("uk-accordion") {
|
||||
"active" to activeItemIndex
|
||||
"animation" to animation
|
||||
"collapsible" to collapsible
|
||||
"content" to contentSelector
|
||||
"duration" to animationDuration
|
||||
"multiple" to multiple
|
||||
"targets" to targetsSelector
|
||||
"toggle" to toggleSelector
|
||||
"transition" to transition
|
||||
"offset" to offsetTopPixels
|
||||
}
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
@ -109,4 +109,6 @@ sealed class UIKitUtility(classname: String) : UIKitModifier {
|
||||
object Disabled : UIKitUtility("uk-disabled")
|
||||
object Drag : UIKitUtility("uk-drag")
|
||||
object Active : UIKitUtility("uk-active")
|
||||
|
||||
object Open : UIKitUtility("uk-open")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user