Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove extension function in combineReducers. Update comments #3

Merged
merged 1 commit into from
Jun 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions lib/src/commonMain/kotlin/org/reduxkotlin/CombineReducers.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package org.reduxkotlin

fun combineReducers(vararg reducers: Reducer): Reducer =
{ state, action ->
reducers.fold(state, { s, reducer -> reducer(s, action) })
}

/**
* combine two reducer with + operator
*/
operator fun Reducer.plus(other: Reducer): Reducer = { s, a ->
other(this(s, a), a)
}
3 changes: 3 additions & 0 deletions lib/src/commonMain/kotlin/org/reduxkotlin/Compose.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package org.reduxkotlin

/**
* Composes a list of single argument functions from right to left.
*/
fun <T> compose(functions: List<(T) -> T>): (T) -> T =
{ x -> functions.foldRight(x, { f, composed -> f(composed) })
}
4 changes: 2 additions & 2 deletions lib/src/commonMain/kotlin/org/reduxkotlin/Definitions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ typealias StoreSubscription = () -> Unit
typealias Dispatcher = (Any) -> Any
typealias StoreCreator = (reducer: Reducer, initialState: Any, s: StoreEnhancerWrapper?) -> Store
/**
* get a store creator and return a new enhanced one
* Take a store creator and return a new enhanced one
* see https://github.com/reactjs/redux/blob/master/docs/Glossary.md#store-enhancer
*/
typealias StoreEnhancer = (next: StoreCreator) -> StoreCreator
Expand All @@ -28,7 +28,7 @@ class StoreEnhancerWrapper(val storeEnhancer2: StoreEnhancer) : StoreEnhancer {
}

/**
* see also https://github.com/reactjs/redux/blob/master/docs/Glossary.md#middleware
* https://github.com/reactjs/redux/blob/master/docs/Glossary.md#middleware
*/
typealias Middleware = (store: Store) -> (next: Dispatcher) -> (action: Any) -> Any

Expand Down
20 changes: 0 additions & 20 deletions lib/src/commonMain/kotlin/org/reduxkotlin/combineReducers.kt

This file was deleted.