diff options
author | Robert Jaros <rjaros@finn.pl> | 2019-12-30 23:44:22 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2019-12-30 23:44:22 +0100 |
commit | d0b53c664b435d03e99f0d6c6e9ffbbc1e4929e0 (patch) | |
tree | b90cd8a0d565f57f50e5d516e356395f6c420bcc | |
parent | ce1877116073eaf7f8e1e00ccea3ddd21a1cc179 (diff) | |
download | kvision-d0b53c664b435d03e99f0d6c6e9ffbbc1e4929e0.tar.gz kvision-d0b53c664b435d03e99f0d6c6e9ffbbc1e4929e0.tar.bz2 kvision-d0b53c664b435d03e99f0d6c6e9ffbbc1e4929e0.zip |
Add support form "main" HTML tag
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/html/Main.kt | 66 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/html/Tag.kt | 1 |
2 files changed, 67 insertions, 0 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/html/Main.kt b/src/main/kotlin/pl/treksoft/kvision/html/Main.kt new file mode 100644 index 00000000..631e58a9 --- /dev/null +++ b/src/main/kotlin/pl/treksoft/kvision/html/Main.kt @@ -0,0 +1,66 @@ +/* + * 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 pl.treksoft.kvision.core.Container + +/** + * Simple component rendered as *main*. + * + * @constructor + * @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 init an initializer extension function + */ +open class Main( + content: String? = null, + rich: Boolean = false, + align: Align? = null, + classes: Set<String> = setOf(), + init: (Main.() -> Unit)? = null +) : + Tag(TAG.MAIN, content, rich, align, classes) { + + init { + @Suppress("LeakingThis") + init?.invoke(this) + } +} + +/** + * DSL builder extension function. + * + * It takes the same parameters as the constructor of the built component. + */ +fun Container.main( + content: String? = null, + rich: Boolean = false, + align: Align? = null, + classes: Set<String> = setOf(), + init: (Main.() -> Unit)? = null +): Main { + val main = Main(content, rich, align, classes).apply { init?.invoke(this) } + this.add(main) + return main +} diff --git a/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt b/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt index 556177e8..f3b14ec7 100644 --- a/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt +++ b/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt @@ -43,6 +43,7 @@ enum class TAG(internal val tagName: String) { ABBR("abbr"), ADDRESS("address"), BLOCKQUOTE("blockquote"), + MAIN("main"), SECTION("section"), HEADER("header"), FOOTER("footer"), |