🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

redux-dictator

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

redux-dictator

Declarative state tree

0.0.5
unpublished
latest
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Redux Dictator

List your required state variables by name and get a reducer, actions and dispatch-to-props automagically. 88% less Redux boilerplate! 🎉

Great for prototyping plus allows you to gradually move to more elaborate solutions. 🏎

State variables named List get extra actions to easily add and remove items -- see dictator.spec.js for details.

Build Status

Before

const AMOUNT = 'app/shop/AMOUNT'
const PRICE = 'app/shop/PRICE'
const SIZE = 'app/shop/SIZE'

export const amount = createAction(AMOUNT)
export const price = createAction(PRICE)
export const size = createAction(SIZE)

export default handleActions({
    [AMOUNT]: (state, {payload}) => ({...state, amount: payload})
    [PRICE]: (state, {payload}) => ({...state, price: payload})
    [SIZE]: (state, {payload}) => ({...state, size: payload})
}, {})
export default connect(
    (state) => ({ /* ... */ }),
    (dispatch) => ({
        amount: (value) => dispatch(amount(value)),
        price: (value) => dispatch(price(value)),
        size: (value) => dispatch(size(value)),
    }),
)(ConnectedComponent)

After

const requiredStateProps = [
    amount,
    price,
    size,
]

const {
    actions,
    reducer,
    getDispatchToProps,
} = dictator(requiredStateProps)
export default connect(
    (state) => ({ /* ... */ }),
    getDispatchToProps,
)(ConnectedComponent)

Actions

const {actions} = dictator(['name', 'productList'])

actions.nameSet(['Bob'])

actions.productListSet(['tablet', 'pc'])
actions.productListAdd('phone')
actions.productListRemove('pc')

FAQs

Package last updated on 13 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts