reduken
v3.0.0
Published
Generic redux reducers, actions and selectors.
Downloads
16
Readme
Discontinued in flavor of Redukers
We have decided to evolve this package but with a completely new concept of only reusable reducers and selectors. You can read more about this idea in the Redukers repo. You can still use this package but it won't be maintained any longer.
Reduken
Generic redux reducers, actions and selectors.
Set-up with React & Redux
- Install reduken
npm install reduken
- Set up redux reducers
import { combineReducers } from 'redux' import { entities, hash, list, requests, enableBatching } from 'reduken' export default enableBatching(combineReducers({ entities, hash, list, requests }))
Modules
Also one utility available
Full Example
import React from 'react'
import ReactDOM from 'react-dom'
import { createStore, combineReducers } from 'redux'
import { connect, Provider } from 'react-redux'
import { entities, hash, list, requests, enableBatching } from 'reduken'
import { set, getFromPath } from 'reduken/hash'
// 1. Create store with the reduken reducers
const rootReducer = combineReducers({
entities,
hash,
list,
requests
})
const store = createStore(enableBatching(rootReducer), window.__INITIAL_STATE__)
// 2. Presentational Component
const HelloComponent = ({ name, handleChange }) => {
return (
<div>
<h1>Hello {name}</h1>
<input type="text" onChange={handleChange} value={name} />
</div>
)
}
// 3. Decorate component with connect
const HelloDecorated = connect(
state => ({
name: getFromPath('session', 'name', state) || 'World'
}),
{
handleChange: event => set('session', 'name', event.target.value)
}
)(HelloComponent)
// 4. Render the app
ReactDOM.render(
<Provider store={store}>
<HelloDecorated />
</Provider>,
document.getElementById('root')
)