diff options
author | Robert Jaros <rjaros@finn.pl> | 2019-03-17 00:58:29 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2019-03-17 00:58:29 +0100 |
commit | c7238d396b5a03664a92b0d054c41285d2d9cca2 (patch) | |
tree | 3c1ca9eda3c8d9e7013ea5f51aa28bc1402099f7 /kvision-modules/kvision-redux/src/main | |
parent | c47e1b6e0dde265d0f83c2ea622a01873b06e1b3 (diff) | |
download | kvision-c7238d396b5a03664a92b0d054c41285d2d9cca2.tar.gz kvision-c7238d396b5a03664a92b0d054c41285d2d9cca2.tar.bz2 kvision-c7238d396b5a03664a92b0d054c41285d2d9cca2.zip |
Add new kvision-redux module.
Diffstat (limited to 'kvision-modules/kvision-redux/src/main')
3 files changed, 269 insertions, 0 deletions
diff --git a/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/KVManagerRedux.kt b/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/KVManagerRedux.kt new file mode 100644 index 00000000..4b51ff19 --- /dev/null +++ b/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/KVManagerRedux.kt @@ -0,0 +1,69 @@ +/* + * 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 + +import redux.Action +import redux.Enhancer +import redux.Middleware +import redux.Reducer +import redux.Store + +internal val kVManagerReduxInit = KVManagerRedux.init() + +/** + * Internal singleton object which initializes and configures KVision Redux module. + */ +@Suppress("EmptyCatchBlock", "TooGenericExceptionCaught") +internal object KVManagerRedux { + fun init() {} + + private val redux = try { + require("redux/dist/redux.min.js") + } catch (e: Throwable) { + } + internal val reduxThunk = try { + require("redux-thunk/dist/redux-thunk.min.js").default + } catch (e: Throwable) { + } + + @Suppress("UnsafeCastFromDynamic") + internal fun <S, A, R> createStore( + reducer: Reducer<S, A>, + preloadedState: S, + enhancer: Enhancer<S, Action, Action, A, R> + ): Store<S, A, R> { + return redux.createStore(reducer, preloadedState, enhancer) + } + + @Suppress("UnsafeCastFromDynamic") + internal fun <S, A1, R1, A2, R2> applyMiddleware( + vararg middlewares: + Middleware<S, A1, R1, A2, R2> + ): Enhancer<S, A1, R1, A2, R2> { + return redux.applyMiddleware.apply(null, middlewares) + } + + @Suppress("UnsafeCastFromDynamic") + internal fun <A, T1, R> compose(function1: (T1) -> R, function2: (A) -> T1): (A) -> R { + return redux.compose(function1, function2) + } +} diff --git a/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/redux/ReduxStore.kt b/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/redux/ReduxStore.kt new file mode 100644 index 00000000..4c4f5cc5 --- /dev/null +++ b/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/redux/ReduxStore.kt @@ -0,0 +1,124 @@ +/* + * 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.redux + +import kotlinx.serialization.ImplicitReflectionSerializer +import kotlinx.serialization.KSerializer +import kotlinx.serialization.serializer +import pl.treksoft.kvision.KVManagerRedux +import pl.treksoft.kvision.utils.JSON +import redux.RAction +import redux.Reducer +import redux.Store +import redux.WrapperAction +import redux.rEnhancer + +typealias Dispatch<A> = (A) -> WrapperAction +typealias GetState<S> = () -> S + +/** + * An inline helper function for creating Redux store. + * + * @param reducer a reducer function + * @param state an initial state + * @param middlewares a list of optional Redux JS middlewares + */ +@UseExperimental(ImplicitReflectionSerializer::class) +inline fun <reified S : Any, A : RAction> createReduxStore( + noinline reducer: Reducer<S, A>, + initialState: S, + vararg middlewares: dynamic +): ReduxStore<S, A> { + @Suppress("SpreadOperator") + return ReduxStore(reducer, initialState, S::class.serializer(), *middlewares) +} + +/** + * A class implementing redux pattern backed by the original Redux JS library. + * It requires @Serializable state. + * + * @constructor Creates a Redux store with given reducer function and initial state. + * @param S redux state type (@Serializable) + * @param A redux action type + * @param reducer a reducer function + * @param state an initial state + * @param stateSerializer a serializer for the state type + * @param middlewares a list of optional Redux JS middlewares + */ +class ReduxStore<S : Any, A : RAction>( + reducer: Reducer<S, A>, + initialState: S, + val stateSerializer: KSerializer<S>, + vararg middlewares: dynamic +) { + private val store: Store<String, dynamic, WrapperAction> + + init { + @Suppress("UnsafeCastFromDynamic") + store = KVManagerRedux.createStore( + { s: String, a: RAction -> + @Suppress("UnsafeCastFromDynamic") + if (a == undefined || (a.asDynamic().type is String && a.asDynamic().type.startsWith("@@"))) { + s + } else { + @Suppress("UNCHECKED_CAST") + JSON.plain.stringify(stateSerializer, reducer(JSON.plain.parse(stateSerializer, s), a as A)) + } + }, + JSON.plain.stringify(stateSerializer, initialState), + @Suppress("SpreadOperator") + KVManagerRedux.compose(KVManagerRedux.applyMiddleware(KVManagerRedux.reduxThunk, *middlewares), rEnhancer()) + ) + } + + /** + * Returns the current state. + */ + fun getState(): S { + return JSON.plain.parse(stateSerializer, store.getState()) + } + + /** + * Dispatches a synchronous action object. + */ + fun dispatch(action: A): WrapperAction { + return store.dispatch(action) + } + + /** + * Dispatches an asynchronous action function. + */ + fun dispatch(action: (Dispatch<A>, GetState<S>) -> Unit): WrapperAction { + return store.dispatch({ d: Dispatch<A>, g: GetState<String> -> + action(d, { JSON.plain.parse(stateSerializer, g()) }) + }) + } + + /** + * Subscribes a client for the change state notifications. + */ + fun subscribe(listener: (S) -> Unit): () -> Unit { + return store.subscribe { + listener(getState()) + } + } +} diff --git a/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/redux/StateBinding.kt b/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/redux/StateBinding.kt new file mode 100644 index 00000000..55fcdb34 --- /dev/null +++ b/kvision-modules/kvision-redux/src/main/kotlin/pl/treksoft/kvision/redux/StateBinding.kt @@ -0,0 +1,76 @@ +/* + * 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.redux + +import pl.treksoft.kvision.core.Container +import pl.treksoft.kvision.core.Widget +import redux.RAction + +/** + * A class which binds the redux store with the given container. + * + * @constructor Creates StateBinding which binds the redux store with the given container. + * @param S redux state type + * @param A redux action type + * @param CONT container type + * @param store a redux store + * @param container a container + * @param factory a function which re-creates the view based on the given state + */ +class StateBinding<S : Any, A : RAction, CONT : Container>( + store: ReduxStore<S, A>, + private val container: CONT, + private val factory: (CONT.(S) -> Unit) +) : Widget(setOf()) { + + init { + container.add(this) + container.factory(store.getState()) + store.subscribe { update(it) } + } + + /** + * Updates view from the current state. + */ + @Suppress("ComplexMethod") + fun update(state: S) { + singleRender { + container.removeAll() + container.add(this) + container.factory(state) + } + } + + companion object { + /** + * DSL builder extension function. + * + * It takes the same parameters as the constructor of the built component. + */ + fun <S : Any, A : RAction, CONT : Container> CONT.stateBinding( + store: ReduxStore<S, A>, + factory: (CONT.(S) -> Unit) + ): StateBinding<S, A, CONT> { + return StateBinding(store, this, factory) + } + } +} |