diff options
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/Showcase.kt | 15 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/core/Container.kt | 8 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/core/Img.kt | 4 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt | 34 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/html/Link.kt | 26 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/html/List.kt | 27 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/html/Tag.kt | 14 |
7 files changed, 91 insertions, 37 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/Showcase.kt b/src/main/kotlin/pl/treksoft/kvision/Showcase.kt index 2a376f17..019b6681 100644 --- a/src/main/kotlin/pl/treksoft/kvision/Showcase.kt +++ b/src/main/kotlin/pl/treksoft/kvision/Showcase.kt @@ -25,9 +25,16 @@ class Showcase : ApplicationBase() { label.hide() label.show() - val dd = DropDown("Dropdown", listOf("DAsdasd asdasdas das", "dasdasd asdasdas das"), "flag") + val link = Link("test", "http://www.google.pl") + link.add(Tag(TAG.P, "Cośtam")) + root.add(link) + + val dd = DropDown("Dropdown", listOf("abc" to "#!/x", "def" to "#!/y"), "flag") root.add(dd) + val dd2 = DropDown("Dropdown2", listOf("abc" to "#!/abc", "def" to "#!/def"), "flag") + root.add(dd2) + val p = Tag(TAG.P, "To jest prawo", align = ALIGN.RIGHT) p.title = "Tytuł" root.add(p) @@ -37,6 +44,12 @@ class Showcase : ApplicationBase() { val list = ListTag(LIST.DL_HORIZ, listOf("abc", "de<b>fdasdasdasddasd</b>tdasdas", "Dasdsada", "dasdasdads"), true) root.add(list) + val list2 = ListTag(LIST.OL, null) + list2.add(Tag(TAG.H4, "ABC")) + list2.add(Button("To jest button")) + list2.add(Image(Img("kotlin.png"))) + root.add(list2) + val img = Image(Img("kotlin.png"), "Image", true, IMAGE_SHAPE.ROUNDED) root.add(img) diff --git a/src/main/kotlin/pl/treksoft/kvision/core/Container.kt b/src/main/kotlin/pl/treksoft/kvision/core/Container.kt index 575fa73b..e21fd669 100644 --- a/src/main/kotlin/pl/treksoft/kvision/core/Container.kt +++ b/src/main/kotlin/pl/treksoft/kvision/core/Container.kt @@ -3,7 +3,7 @@ package pl.treksoft.kvision.core import com.github.snabbdom.VNode open class Container(classes: Set<String> = setOf()) : Widget(classes) { - private val children: MutableList<Widget> = mutableListOf() + protected val children: MutableList<Widget> = mutableListOf() override fun render(): VNode { return kvh("div", childrenVNodes()) @@ -19,6 +19,12 @@ open class Container(classes: Set<String> = setOf()) : Widget(classes) { refresh() } + open fun addAll(children: List<Widget>) { + this.children.addAll(children) + children.map { it.parent = this } + refresh() + } + open fun remove(child: Widget) { children.remove(child) child.clearParent() diff --git a/src/main/kotlin/pl/treksoft/kvision/core/Img.kt b/src/main/kotlin/pl/treksoft/kvision/core/Img.kt index 08063a4a..80c65e0b 100644 --- a/src/main/kotlin/pl/treksoft/kvision/core/Img.kt +++ b/src/main/kotlin/pl/treksoft/kvision/core/Img.kt @@ -3,8 +3,8 @@ package pl.treksoft.kvision.core typealias ResString = String object Img { - operator fun invoke(src: ResString) = at(src) + operator fun invoke(src: String) = at(src) @Suppress("UnsafeCastFromDynamic", "NOTHING_TO_INLINE") - private inline fun at(src: ResString): String = pl.treksoft.kvision.require("./img/" + src) + private inline fun at(src: String): ResString = pl.treksoft.kvision.require("./img/" + src) } diff --git a/src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt b/src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt index eef229e4..1a3f63c9 100644 --- a/src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt +++ b/src/main/kotlin/pl/treksoft/kvision/dropdown/DropDown.kt @@ -1,23 +1,27 @@ package pl.treksoft.kvision.dropdown -import com.github.snabbdom.VNode -import com.github.snabbdom.h import pl.treksoft.kvision.core.Container -import pl.treksoft.kvision.core.KVManager import pl.treksoft.kvision.core.ResString import pl.treksoft.kvision.html.* import pl.treksoft.kvision.snabbdom.StringPair -open class DropDown(text: String, elements: List<String>, icon: String? = null, style: BUTTON_STYLE = BUTTON_STYLE.DEFAULT, size: BUTTON_SIZE? = null, +open class DropDown(text: String, elements: List<StringPair>, icon: String? = null, style: BUTTON_STYLE = BUTTON_STYLE.DEFAULT, size: BUTTON_SIZE? = null, block: Boolean = false, disabled: Boolean = false, image: ResString? = null, classes: Set<String> = setOf()) : Container(classes) { - val idk = "abc" - val button: DropDownButton = DropDownButton(idk, text, icon, style, size, block, disabled, image, setOf("dropdown")) - val list: DropDownListTag = DropDownListTag(idk, elements, setOf("dropdown-menu")) + val idc = "kv_dropdown_" + counter + val button: DropDownButton = DropDownButton(idc, text, icon, style, size, block, disabled, image, setOf("dropdown")) + val list: DropDownListTag = DropDownListTag(idc, setOf("dropdown-menu")) init { this.addCssClass("dropdown") + val children = elements.map { Link(it.first, it.second) } + list.addAll(children) this.add(button) this.add(list) + counter++ + } + + companion object { + var counter = 0 } } @@ -34,21 +38,7 @@ open class DropDownButton(id: String, text: String, icon: String? = null, style: } } -open class DropDownListTag(val ariaId: String, elements: List<String>, classes: Set<String> = setOf()) : ListTag(LIST.UL, elements, true, classes) { - - override fun render(): VNode { - val children = elements.map { el -> element("li", el, true) }.toTypedArray() - return kvh(type.tagName, children) - } - - private fun element(name: String, value: String, rich: Boolean): VNode { - if (rich) { - return h(name, arrayOf(KVManager.virtualize("<a href='#'>$value</a>"))) - } else { - return h(name, value) - } - } - +open class DropDownListTag(val ariaId: String, classes: Set<String> = setOf()) : ListTag(LIST.UL, null, false, classes) { override fun getSnAttrs(): List<StringPair> { return super.getSnAttrs() + listOf("aria-labelledby" to ariaId) } diff --git a/src/main/kotlin/pl/treksoft/kvision/html/Link.kt b/src/main/kotlin/pl/treksoft/kvision/html/Link.kt new file mode 100644 index 00000000..e201da48 --- /dev/null +++ b/src/main/kotlin/pl/treksoft/kvision/html/Link.kt @@ -0,0 +1,26 @@ +package pl.treksoft.kvision.html + +import com.github.snabbdom.VNode +import pl.treksoft.kvision.core.Container +import pl.treksoft.kvision.snabbdom.StringPair + +open class Link(label: String, url: String, classes: Set<String> = setOf()) : Container(classes) { + var label = label + set(value) { + field = value + refresh() + } + var url = url + set(value) { + field = value + refresh() + } + + override fun render(): VNode { + return kvh("a", arrayOf(label) + childrenVNodes()) + } + + override fun getSnAttrs(): List<StringPair> { + return super.getSnAttrs() + ("href" to url) + } +} diff --git a/src/main/kotlin/pl/treksoft/kvision/html/List.kt b/src/main/kotlin/pl/treksoft/kvision/html/List.kt index 918f1576..b2801ce9 100644 --- a/src/main/kotlin/pl/treksoft/kvision/html/List.kt +++ b/src/main/kotlin/pl/treksoft/kvision/html/List.kt @@ -1,7 +1,9 @@ package pl.treksoft.kvision.html import com.github.snabbdom.VNode +import com.github.snabbdom.array import com.github.snabbdom.h +import pl.treksoft.kvision.core.Container import pl.treksoft.kvision.core.KVManager import pl.treksoft.kvision.core.Widget import pl.treksoft.kvision.snabbdom.StringBoolPair @@ -15,7 +17,7 @@ enum class LIST(val tagName: String) { DL_HORIZ("dl") } -open class ListTag(type: LIST, elements: List<String>, rich: Boolean = false, classes: Set<String> = setOf()) : Widget(classes) { +open class ListTag(type: LIST, elements: List<String>? = null, rich: Boolean = false, classes: Set<String> = setOf()) : Container(classes) { var type = type set(value) { field = value @@ -33,11 +35,24 @@ open class ListTag(type: LIST, elements: List<String>, rich: Boolean = false, cl } override fun render(): VNode { - val children = when (type) { - LIST.UL, LIST.OL, LIST.UNSTYLED, LIST.INLINE -> elements.map { el -> element("li", el, rich) } - LIST.DL, LIST.DL_HORIZ -> elements.mapIndexed { index, el -> element(if (index % 2 == 0) "dt" else "dd", el, rich) } - }.toTypedArray() - return kvh(type.tagName, children) + val childrenElements = when (type) { + LIST.UL, LIST.OL, LIST.UNSTYLED, LIST.INLINE -> elements?.map { el -> element("li", el, rich) } + LIST.DL, LIST.DL_HORIZ -> elements?.mapIndexed { index, el -> element(if (index % 2 == 0) "dt" else "dd", el, rich) } + }?.toTypedArray() + if (childrenElements != null) { + return kvh(type.tagName, childrenElements + childrenVNodes()) + } else { + return kvh(type.tagName, childrenVNodes()) + } + } + + override fun childrenVNodes(): Array<VNode> { + val childrenElements = children.filter { it.visible } + val res = when (type) { + LIST.UL, LIST.OL, LIST.UNSTYLED, LIST.INLINE -> childrenElements.map { v -> h("li", arrayOf(v.render())) } + LIST.DL, LIST.DL_HORIZ -> childrenElements.mapIndexed { index, v -> h(if (index % 2 == 0) "dt" else "dd", arrayOf(v.render())) } + } + return res.toTypedArray() } private fun element(name: String, value: String, rich: Boolean): VNode { diff --git a/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt b/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt index 4178fbfb..cbaa611e 100644 --- a/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt +++ b/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt @@ -1,8 +1,8 @@ package pl.treksoft.kvision.html import com.github.snabbdom.VNode +import pl.treksoft.kvision.core.Container import pl.treksoft.kvision.core.KVManager -import pl.treksoft.kvision.core.Widget import pl.treksoft.kvision.snabbdom.StringBoolPair enum class TAG(val tagName: String) { @@ -44,7 +44,7 @@ enum class ALIGN(val className: String) { NOWRAP("text-nowrap") } -open class Tag(type: TAG, text: String, rich: Boolean = false, align: ALIGN = ALIGN.NONE, classes: Set<String> = setOf()) : Widget(classes) { +open class Tag(type: TAG, text: String? = null, rich: Boolean = false, align: ALIGN = ALIGN.NONE, classes: Set<String> = setOf()) : Container(classes) { var type = type set(value) { field = value @@ -67,10 +67,14 @@ open class Tag(type: TAG, text: String, rich: Boolean = false, align: ALIGN = AL } override fun render(): VNode { - if (rich) { - return kvh(type.tagName, arrayOf(KVManager.virtualize("<span>$text</span>"))) + if (text != null) { + if (rich) { + return kvh(type.tagName, arrayOf(KVManager.virtualize("<span>$text</span>")) + childrenVNodes()) + } else { + return kvh(type.tagName, arrayOf(text) + childrenVNodes()) + } } else { - return kvh(type.tagName, arrayOf(text)) + return kvh(type.tagName, childrenVNodes()) } } |