diff options
author | Robert Jaros <rjaros@finn.pl> | 2020-02-26 23:14:28 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2020-02-26 23:17:17 +0100 |
commit | 57bf41a193de279d6fb0c835758313573e598093 (patch) | |
tree | 721656bbc1e70bda2234578e98eac36d1e39c907 /kvision-modules | |
parent | 450d3d259cd3253f7cda8ab4baffb0a6d070d596 (diff) | |
download | kvision-57bf41a193de279d6fb0c835758313573e598093.tar.gz kvision-57bf41a193de279d6fb0c835758313573e598093.tar.bz2 kvision-57bf41a193de279d6fb0c835758313573e598093.zip |
New event flow module (#140)
Diffstat (limited to 'kvision-modules')
3 files changed, 89 insertions, 0 deletions
diff --git a/kvision-modules/kvision-event-flow/build.gradle b/kvision-modules/kvision-event-flow/build.gradle new file mode 100644 index 00000000..4aaef76d --- /dev/null +++ b/kvision-modules/kvision-event-flow/build.gradle @@ -0,0 +1,5 @@ +apply from: "../shared.gradle" + +dependencies { + compile "org.jetbrains.kotlinx:kotlinx-coroutines-core-js:$coroutinesVersion" +} diff --git a/kvision-modules/kvision-event-flow/package.json.d/project.info b/kvision-modules/kvision-event-flow/package.json.d/project.info new file mode 100644 index 00000000..f9d34fd1 --- /dev/null +++ b/kvision-modules/kvision-event-flow/package.json.d/project.info @@ -0,0 +1,3 @@ +{ + "description": "KVision event flow module" +} diff --git a/kvision-modules/kvision-event-flow/src/main/kotlin/pl/treksoft/kvision/event/EventFlow.kt b/kvision-modules/kvision-event-flow/src/main/kotlin/pl/treksoft/kvision/event/EventFlow.kt new file mode 100644 index 00000000..3a93d2a5 --- /dev/null +++ b/kvision-modules/kvision-event-flow/src/main/kotlin/pl/treksoft/kvision/event/EventFlow.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.event + +import kotlinx.coroutines.ExperimentalCoroutinesApi +import kotlinx.coroutines.channels.awaitClose +import kotlinx.coroutines.flow.Flow +import kotlinx.coroutines.flow.callbackFlow +import org.w3c.dom.events.Event +import pl.treksoft.kvision.core.Widget +import pl.treksoft.kvision.core.onEvent + +@UseExperimental(ExperimentalCoroutinesApi::class) +inline fun <reified T : Widget> T.eventFlow(event: String): Flow<Pair<T, Event>> = callbackFlow { + val id = onEvent { + this.asDynamic()[event] = { e: Event -> + offer(self to e) + } + } + awaitClose { + removeEventListener(id) + } +} + +@UseExperimental(ExperimentalCoroutinesApi::class) +inline val <reified T : Widget> T.clickFlow: Flow<T> + get() = callbackFlow { + val id = onEvent { + click = { + offer(self) + } + } + awaitClose { + removeEventListener(id) + } + } + +@UseExperimental(ExperimentalCoroutinesApi::class) +inline val <reified T : Widget> T.inputFlow: Flow<T> + get() = callbackFlow { + val id = onEvent { + input = { + offer(self) + } + } + awaitClose { + removeEventListener(id) + } + } + +@UseExperimental(ExperimentalCoroutinesApi::class) +inline val <reified T : Widget> T.changeFlow: Flow<T> + get() = callbackFlow { + val id = onEvent { + change = { + offer(self) + } + } + awaitClose { + removeEventListener(id) + } + } |