diff options
author | Robert Jaros <rjaros@finn.pl> | 2019-01-23 11:00:00 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2019-01-23 11:00:00 +0100 |
commit | 48153da7cd97c57a60ca1032d19cdec0714c4c04 (patch) | |
tree | 45ab0bcf19bcb0ad205ad4422d10d5be75f10407 | |
parent | 6c8d768508142c8a6a672b94311c8e9257f15735 (diff) | |
download | kvision-48153da7cd97c57a60ca1032d19cdec0714c4c04.tar.gz kvision-48153da7cd97c57a60ca1032d19cdec0714c4c04.tar.bz2 kvision-48153da7cd97c57a60ca1032d19cdec0714c4c04.zip |
Data container enhancements and fixes.
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/data/DataContainer.kt | 53 | ||||
-rw-r--r-- | src/test/kotlin/test/pl/treksoft/kvision/data/DataContainerSpec.kt | 3 |
3 files changed, 46 insertions, 16 deletions
@@ -153,16 +153,16 @@ Application package will be saved as build/distributions/showcase.zip. ### Data binding with observable data model class Data(text: String) : BaseDataComponent() { - var text: String by obs(text) + var text by obs(text) } val model = observableListOf( Data("One"), Data("Two"), Data("Three") ) - Root("root").add(DataContainer(model, { index, data -> + Root("root").add(DataContainer(model, { data, _, _ -> Label(data.text) - }, child = HPanel(spacing = 10, wrap = FlexWrap.WRAP))) + }, HPanel(spacing = 10, wrap = FlexWrap.WRAP))) GlobalScope.launch { // Kotlin coroutines while (true) { diff --git a/src/main/kotlin/pl/treksoft/kvision/data/DataContainer.kt b/src/main/kotlin/pl/treksoft/kvision/data/DataContainer.kt index bb3eaa83..3c808bca 100644 --- a/src/main/kotlin/pl/treksoft/kvision/data/DataContainer.kt +++ b/src/main/kotlin/pl/treksoft/kvision/data/DataContainer.kt @@ -42,22 +42,25 @@ enum class SorterType { * @constructor Creates DataContainer bound to given data model. * @param M data model type * @param C visual component type + * @param CONT container type * @param model data model of type *ObservableList<M>* * @param factory a function which creates component C from data model at given index + * @param container internal container + * @param containerAdd function to add component C to the internal container CONT * @param filter a filtering function * @param sorter a sorting function * @param sorterType a sorting type selection function - * @param container internal container (defaults to [VPanel]) * @param init an initializer extension function */ -class DataContainer<M, C : Component>( +class DataContainer<M, C : Component, CONT : Container>( private val model: ObservableList<M>, private val factory: (M, Int, ObservableList<M>) -> C, + private val container: CONT, + private val containerAdd: (CONT.(C, M) -> Unit)? = null, private val filter: ((M) -> Boolean)? = null, private val sorter: ((M) -> Comparable<*>?)? = null, private val sorterType: () -> SorterType = { SorterType.ASC }, - private val container: Container = VPanel(), - init: (DataContainer<M, C>.() -> Unit)? = null + init: (DataContainer<M, C, CONT>.() -> Unit)? = null ) : Widget(setOf()), Container, DataUpdatable { @@ -138,8 +141,14 @@ class DataContainer<M, C : Component>( } else { sorted } - val children = filtered.map { p -> factory(p.first, p.second, model) } - container.addAll(children) + val children = filtered.map { p -> p.first to factory(p.first, p.second, model) } + if (containerAdd != null) { + children.forEach { child -> + containerAdd.invoke(container, child.second, child.first) + } + } else { + container.addAll(children.map { it.second }) + } } onUpdateHandler?.invoke() } @@ -149,7 +158,7 @@ class DataContainer<M, C : Component>( * @param handler notification handler * @return current container */ - fun onUpdate(handler: () -> Unit): DataContainer<M, C> { + fun onUpdate(handler: () -> Unit): DataContainer<M, C, CONT> { onUpdateHandler = handler return this } @@ -158,7 +167,7 @@ class DataContainer<M, C : Component>( * Clears notification handler. * @return current container */ - fun clearOnUpdate(): DataContainer<M, C> { + fun clearOnUpdate(): DataContainer<M, C, CONT> { onUpdateHandler = null return this } @@ -169,16 +178,36 @@ class DataContainer<M, C : Component>( * * It takes the same parameters as the constructor of the built component. */ + fun <M, C : Component, CONT : Container> Container.dataContainer( + model: ObservableList<M>, + factory: (M, Int, ObservableList<M>) -> C, + container: CONT, + containerAdd: (CONT.(C, M) -> Unit)? = null, + filter: ((M) -> Boolean)? = null, + sorter: ((M) -> Comparable<*>?)? = null, + sorterType: () -> SorterType = { SorterType.ASC }, + init: (DataContainer<M, C, CONT>.() -> Unit)? = null + ): DataContainer<M, C, CONT> { + val dataContainer = DataContainer(model, factory, container, containerAdd, filter, sorter, sorterType, init) + this.add(dataContainer) + return dataContainer + } + + /** + * DSL builder extension function with VPanel default. + * + * It takes the same parameters as the constructor of the built component. + */ fun <M, C : Component> Container.dataContainer( model: ObservableList<M>, factory: (M, Int, ObservableList<M>) -> C, + containerAdd: (VPanel.(C, M) -> Unit)? = null, filter: ((M) -> Boolean)? = null, sorter: ((M) -> Comparable<*>?)? = null, sorterType: () -> SorterType = { SorterType.ASC }, - container: Container = VPanel(), - init: (DataContainer<M, C>.() -> Unit)? = null - ): DataContainer<M, C> { - val dataContainer = DataContainer(model, factory, filter, sorter, sorterType, container, init) + init: (DataContainer<M, C, VPanel>.() -> Unit)? = null + ): DataContainer<M, C, VPanel> { + val dataContainer = DataContainer(model, factory, VPanel(), containerAdd, filter, sorter, sorterType, init) this.add(dataContainer) return dataContainer } diff --git a/src/test/kotlin/test/pl/treksoft/kvision/data/DataContainerSpec.kt b/src/test/kotlin/test/pl/treksoft/kvision/data/DataContainerSpec.kt index 2cf3160d..931294d5 100644 --- a/src/test/kotlin/test/pl/treksoft/kvision/data/DataContainerSpec.kt +++ b/src/test/kotlin/test/pl/treksoft/kvision/data/DataContainerSpec.kt @@ -26,6 +26,7 @@ import pl.treksoft.kvision.data.BaseDataComponent import pl.treksoft.kvision.data.DataContainer import pl.treksoft.kvision.html.Label import pl.treksoft.kvision.panel.Root +import pl.treksoft.kvision.panel.VPanel import test.pl.treksoft.kvision.DomSpec import kotlin.browser.document import kotlin.test.Test @@ -42,7 +43,7 @@ class DataContainerSpec : DomSpec { } val model = observableListOf(Model("First"), Model("Second")) - val container = DataContainer(model, { m, _, _ -> Label(m.value) }) + val container = DataContainer(model, { m, _, _ -> Label(m.value) }, VPanel()) root.add(container) val element = document.getElementById("test") assertEqualsHtml( |