1.0.3 • Published 6 years ago

react-redux-ready v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

React Redux Ready

React-Redux-Ready provides a simpler way to use Redux in React powered apps.

Installation

npm install --save react-redux-ready

How to Use

Application entry file

You need to do two things here:

  1. Import the store from 'react-redux-ready' then pass it to the Provider component
  2. Call updateRootReducer right before calling the render method
import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import { store, updateRootReducer } from './react-redux-ready';
import Main from './Main';

const App = (
  <Provider store={store}>
    <Main />
  </Provider>
);

// you must call updateRootReducer before rendering your app
updateRootReducer();

// render your app
render(App, document.getElementById('app'));

Component file

Here is what you need to do in a component file:

  1. Import the connect function from 'react-redux-ready'
  2. Import the reducer and all action creators related to this component
  3. Pass them all to the connect function and export the returned component
import React from 'react';
import PropTypes from 'prop-types';
import { connect } from './react-redux-ready';
import reducer from './component-reducer';
import * as actions from './component-actions';

const MainPage = props => (
  <div>
    <button onClick={() => console.log(props.myStateKey)}>
      I will console.log the props object when I am clicked
    </button>
    
    <button onClick={() => console.log(props.actions.myActionsKey)}>
      I will console.log the actions object when I am clicked
    </button>
  </div>
);

MainPage.propTypes = {
  myStateKey: PropTypes.object.isRequired,
  actions: PropTypes.object.isRequired,
};

export default connect(MainPage, { reducer, actions, stateKey: 'myStateKey', actionsKey: 'myActionsKey' });

Component state can then be accessed via this.props.myStateKey and component actions can be accessed via this.props.actions.myActionsKey, this is to avoid naming conflicts between different state keys, actions and component defined properties.

Object destructuring

You can use object destructuring to extract state and actions and avoid writing long lines of code.

For a component with the following configuration:

export default connect(SignupPage, { reducer, actions, stateKey: 'signup', actionsKey: 'signup' });

You would do the following:

render() {
  const { username, email } = this.props.signup;
  const { login, resetPassword } = this.props.actions.signup;
    
  return (
    <div>
      <h1>
      	Your username: {username}
        Your e-mail: {email}
      </h1>
      
      <button onClick={login}>
        Login
      </button>

      <button onClick={resetPassword}>
        Forgot your password?
      </button>
    </div>
  );
}

The connect method parameters

component (required)

React component reference

configObject (optional)

Configuration object that contains the following keys:

  • reducer: Reference to the component reducer.
  • actions: Reference to the actions object.
  • stateKey: Namespace that will be used to pass component state as props.
  • actionsKey: Namespace that will be used to pass component actions as props.

Middlewares

To use a middleware, import useMiddleware method and pass it the middleware, here is an example using React Router (v3.0.5):

import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import { store, updateRootReducer, registerReducer, useMiddleware } from 'react-redux-ready';
import { IndexRoute, Route, Router, browserHistory } from 'react-router';
import { syncHistoryWithStore, routerMiddleware, routerReducer } from 'react-router-redux';
import Main from './Main';

// register router reducer
registerReducer('routing', routerReducer);

// create the routing middleware
useMiddleware(routerMiddleware(browserHistory));

// create history
const history = syncHistoryWithStore(browserHistory, store);

const MainApp = (
  <Provider store={store}>
    <Router history={history} key={Math.random()}>
      <Route path="/" component={Main}>
        ...
      </Route>
    </Router>
  </Provider>
);

updateRootReducer();

// render everything
render(MainApp, document.getElementById('app'));
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago