Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mheiber/redux-funk
testable, dead simple redux async action middleware in 24 lines of code
https://github.com/mheiber/redux-funk
async javascript redux
Last synced: about 3 hours ago
JSON representation
testable, dead simple redux async action middleware in 24 lines of code
- Host: GitHub
- URL: https://github.com/mheiber/redux-funk
- Owner: mheiber
- Created: 2016-09-09T02:39:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-01T02:54:50.000Z (about 8 years ago)
- Last Synced: 2024-10-31T22:32:38.861Z (7 days ago)
- Topics: async, javascript, redux
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 22
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redux-funk—Declarative async outerware for Redux
![redux-funk](https://s-media-cache-ak0.pinimg.com/564x/4c/c3/d8/4cc3d881adf9cf78637f00ebc92eab6e.jpg)
> *image from [Etsy](https://www.etsy.com/listing/259474265/monkey-chinese-zodiac-year-of-the-monkey?ref=related-5)*
# What
This library enables you to declaratively specify effects in Redux reducers. You can use it to express in reducers not just what should happen, but also, what should happen *next*, while keeping reducers pure.
Using redux-funk, you can put all the logic and state management stuff in one place—the reducer—so you don't have to dig through multiple files to find out what happens when the UI dispatches a certain action.
This library combines (in my opinion) the best ideas from Redux Loop, redux-side-effect, and a few other libraries. It's pretty similar to Redux Loop, but the implementation is much simpler and shorter, and it enables you to program with reducers without having to worry about lifting effects.
# Install
`npm install redux-funk`
# Usage
Add declarative effects to your reducer. In this example, dispatching `{type: 'INCREMENT_ASYNC'}` increments the counter after one second.
```js
// reducer.js
import { combineReducers } from 'redux'
import { call, coalesceFunks } from 'redux-funk'// exporting for testing
// returns promise for an action
export const incrementAsync = () => new Promise(resolve => {
setTimeout(() => resolve({type: 'INCREMENT'}), 1000)
})const counter = (state = 0, action) => {
switch (action.type) {
case 'INCREMENT':
return state + 1
case 'INCREMENT_ASYNC':
// the funk `[incrementAsync, []]`
// is a declarative effect
// that says "call incrementAsync with no arguments"
call(action, [incrementAsync, []])
return state
default:
return state
}
}// coalesceFunks collects any funks you've called
// and adds them to `state.funks`
// note the `funks` reducer below which initializes that part of the state
const rootReducer = coalesceFunks(combineReducers({
counter,
funks: () => []
}))export default rootReducer
```> Advantages of adding funks to the state are that you have the option to inspect them, test them, or add your own logic for handling them.
To run these funks whenever the state changes, you can use `runFunks`:
```js
// store.jsimport { runFunks } from 'redux-funk'
import { createStore } from 'redux'
import reducer from './reducers'const store = createStore(
reducer
)runFunks(store)
```Here's what `runFunks` does:
- Subscribe to the store. When the store updates, call each of the funks. Each funk with a return value returns a promise for an action.
- When the promises resolve, dispatch the actions.> You can use `redux-funk` without `runFunks`. Here are examples of why you might want to do this:
- Use callbacks instead of promises
- Only dispatch the actions after a delay
- Pass an api caller or other dependency to each funk
- etc.# Examples
See [redux-funk-examples](https://github.com/mheiber/redux-funk-examples).