aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/pl/treksoft/kvision/html
diff options
context:
space:
mode:
authorRobert Jaros <rjaros@finn.pl>2020-03-27 19:30:06 +0100
committerRobert Jaros <rjaros@finn.pl>2020-03-27 19:39:01 +0100
commitd7cb91657c5751d285afe51af9494ed362d9b5ca (patch)
tree91916682b7d640c3895a1ffb726519242c881d0c /src/main/kotlin/pl/treksoft/kvision/html
parent4f111976f842b9a63363181ad2182091bb810c46 (diff)
downloadkvision-d7cb91657c5751d285afe51af9494ed362d9b5ca.tar.gz
kvision-d7cb91657c5751d285afe51af9494ed362d9b5ca.tar.bz2
kvision-d7cb91657c5751d285afe51af9494ed362d9b5ca.zip
Add support for custom html elements and custom css styles (#144)
Diffstat (limited to 'src/main/kotlin/pl/treksoft/kvision/html')
-rw-r--r--src/main/kotlin/pl/treksoft/kvision/html/CustomTag.kt81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/html/CustomTag.kt b/src/main/kotlin/pl/treksoft/kvision/html/CustomTag.kt
new file mode 100644
index 00000000..34910205
--- /dev/null
+++ b/src/main/kotlin/pl/treksoft/kvision/html/CustomTag.kt
@@ -0,0 +1,81 @@
+/*
+ * Copyright (c) 2017-present Robert Jaros
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+package pl.treksoft.kvision.html
+
+import com.github.snabbdom.VNode
+import pl.treksoft.kvision.core.Container
+
+/**
+ * HTML custom tag component.
+ *
+ * @constructor
+ * @param elementName element name
+ * @param content element text
+ * @param rich determines if [content] can contain HTML code
+ * @param align content align
+ * @param classes a set of CSS class names
+ * @param attributes a map of additional attributes
+ * @param init an initializer extension function
+ */
+open class CustomTag(
+ elementName: String,
+ content: String? = null,
+ rich: Boolean = false,
+ align: Align? = null,
+ classes: Set<String> = setOf(), attributes: Map<String, String> = mapOf(),
+ init: (CustomTag.() -> Unit)? = null
+) :
+ Tag(TAG.DIV, content, rich, align, classes, attributes) {
+
+ /**
+ * HTML element name.
+ */
+ var elementName by refreshOnUpdate(elementName)
+
+ init {
+ @Suppress("LeakingThis")
+ init?.invoke(this)
+ }
+
+ override fun render(elementName: String, children: Array<dynamic>): VNode {
+ return super.render(this.elementName, children)
+ }
+}
+
+/**
+ * DSL builder extension function.
+ *
+ * It takes the same parameters as the constructor of the built component.
+ */
+fun Container.customTag(
+ elementName: String,
+ content: String? = null,
+ rich: Boolean = false,
+ align: Align? = null,
+ classes: Set<String> = setOf(),
+ attributes: Map<String, String> = mapOf(),
+ init: (CustomTag.() -> Unit)? = null
+): CustomTag {
+ val customTag = CustomTag(elementName, content, rich, align, classes, attributes).apply { init?.invoke(this) }
+ this.add(customTag)
+ return customTag
+}