Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redux-dryer

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-dryer

Redux utilities to keep your reducers small and DRY

  • 0.1.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
317
increased by63.4%
Maintainers
1
Weekly downloads
 
Created
Source

Redux-dryer

Keep your redux stores as dry as possible

Installing

npm install redux-dryer

Useage

Generating Actions

wallet-actions.js

import { generateActions } from 'redux-dryer';

const WalletActions = {
  setBalance: balance => ({ balance }),
  depositAmount: amount => state => ({ balance: state.balance + amount }),
  withdrawAmount: amount => state => ({ balance: state.balance - amount }),
};

export default generateActions(WalletActions, 'wallet');

Generating Reducers

wallet-reducer.js

import { generateReducer } from 'redux-dryer';
import WalletActions from '../actions/wallet';

const INITIAL_STATE = { balance: 0 };

export default generateReducer(INITIAL_STATE, WalletActions);

That's all you need to do, and now your reducer will listen and respond to your actions

Combining reducer

It works the same as a normal reducer.

reducers.js

import walletReducer from './wallet-reducer.js';

export default combineReducers({
  wallet: walletReducer,
  ...
})

App.js

import React from 'react';
import ReactDOM from 'react-dom';
import { combineReducers } from 'redux';
import { Provider } from 'react-redux';
import { createStore } from 'redux';
import reducers from './reducers';

const store = createStore(reducers);

ReactDOM.render(
  <Provider store={store}>
    <App/>
  </Provider>,
  document.getElementById('root')
);

Keywords

FAQs

Package last updated on 18 Feb 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc