mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-15 04:43:50 +00:00
50 lines
1.2 KiB
Kotlin
50 lines
1.2 KiB
Kotlin
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
|
|
)
|
|
|
|
}
|