Skip to content

Redux is a state management tool. While it’s mostly used with React, it can be used with any other JavaScript framework or library. It is lightweight at 2KB (including dependencies), so you don’t have to worry about it making your application’s asset size bigger. With Redux, the state of your application is kept in a store and each component can…

Notifications You must be signed in to change notification settings

ankitkanojia/simplest-redux-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple React-Redux Example

Redux is a state management tool. While it’s mostly used with React, it can be used with any other JavaScript framework or library. It is lightweight at 2KB (including dependencies), so you don’t have to worry about it making your application’s asset size bigger.

With Redux, the state of your application is kept in a store and each component can access any state that it needs from this store. Let’s dive a little deeper to see why you might need a state management tool.

Required PACKAGES

Configuration redux structure

  • Set up the redux strucure in react we required to create a store which contains all the variable or globle variable value so that whole redux strucutre or DOM will manupulate using that store.
  • We require create a store from base or root, so that each component or DOM will get access of that store.
  • Store value can be access using applying middleware to our whole application.
import { createStore, applyMiddleware } from 'redux';
import thunk from "redux-thunk";

const store = createStore(
   Reducer,
   applyMiddleware(thunk)
);

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

In App.js file using above declaration code, we can create the store and apply middleware to access those store values.

In this example, We have installed the router package to manupulate the inter links functionality so i hope you're aware routing functionality of react application.

Action Creator

Redux includes a utility function called bindActionCreators for binding one or more action creators to the store's dispatch() function. Calling an action creator does nothing but return an object, so you have to either bind it to the store beforehand, or dispatch the result of calling your action creator.

store.dispatch({type: 'SOME_ACTION'})

Here, dispatch actions and trigger state changes to the store. react-redux is simply trying to give you convenient access to it.

Reducer

The reducer is a pure function that takes the previous state and an action, and returns the next state

{
  visibilityFilter: 'SOME_ACTION',
  todos: [
    {
      text: 'Consider using Redux',
      completed: true
    },
    {
      text: 'Keep all state in a single tree',
      completed: false
    }
  ]
}

So these are the some basic fundamentals which are must to setup redux structure for react application.

Configuration redux architecture in sample react applicaion.

[Index.js] - Create store in the file so that we can use the global evente, variables, functions etc...

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import { Provider } from 'react-redux';
import { createStore, applyMiddleware } from 'redux';
import thunk from "redux-thunk";
import * as serviceWorker from './serviceWorker';
import { BrowserRouter } from 'react-router-dom';
import Reducer from './../src/redux/reducer';

const store = createStore(
    Reducer,
    applyMiddleware(thunk)
);

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

serviceWorker.unregister();

[action.js] - Here, action method is created so that we can call this method in whole application.

export const GET_DETAILS = 'GET_DETAILS';

export function getDetails() {
    return dispatch => {
        return dispatch({
            type: GET_DETAILS
        });
    }
};

[reducer.js] - Here, reducer will make sure the action which is currently performed is success or not etc..

export const GET_DETAILS = 'GET_DETAILS';


const initialState = {
    dataCollection: {}
}

const reducerCollection = (state = initialState, action) => {
    switch (action.type) {
        case GET_DETAILS:
            return {
                ...state,
                dataCollection: state.dataCollection
            };
        default:
            return state;
    }
}

export default reducerCollection;

About

Redux is a state management tool. While it’s mostly used with React, it can be used with any other JavaScript framework or library. It is lightweight at 2KB (including dependencies), so you don’t have to worry about it making your application’s asset size bigger. With Redux, the state of your application is kept in a store and each component can…

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 83.9%
  • HTML 9.4%
  • CSS 6.7%