DEV Community

Cover image for What is Redux ? Simply Explained!
CodeBucks
CodeBucks

Posted on • Updated on • Originally published at devdreaming.com

What is Redux ? Simply Explained!

Hi there,

It's been a while I have created anything. I was getting lot's of messages to create tutorials on Redux! So here it is. I have spent many days to make this tutorials more simple and easy to understand.

If you prefer to watch video then here it is else you can keep reading πŸ˜„!

Now let's dive in ^_^

before going into what is Redux? Let's see why we needed Redux in the first place.

The Problem

Component Tree
Let’s say as a root component you have app.js file in your project, and in the component tree, the first layer contains 3 components and in the 2nd layer there are two child component of 2nd component.

Component Tree
Here, you have fetched the data from an API and you save it in the state of 2nd component. You can use this data state in child components by directly passing them downwards.

Now the problem occurs when the neighbor component which is 3 want to access that data state.

So the problem is when multiple components that need to share and use the same state.

This can be solved by β€œlifting up” the state to the parent component. So you can lift state from 2nd component to the app.js file. and then you can use this state in the 3rd component.

But that does not help always because in large application there are many states needed to be used in many different components, so it is not the best practice.

One way to solve this problem is to take state outside of the component tree and set it as centralized. So that any component in the tree can access and update the state without worrying about it’s hierarchy in the tree.

This is the basic idea behind Redux: a single centralized place to contain the global state in your application, and specific patterns to follow when updating that state.

You can use redux to store the state and you can use it to any component without worrying about the hierarchy.


Now let’s see how application works normally in react without redux.

React working

Consider this action as a trigger to update the state and when state gets changed then view updates the UI with new state.

For simple counter application, when we increment counter value then increment event goes to state and state updates new value then, view re-renders ui based on the updated state.

So let’s see what happens when you use Redux.

Alt Text

In the redux there is a function called reducer.
This reducer function takes two arguments, first is the state itself, and second is the action object.

Action object can have a type of action like increment and any data that wants to modify the state.

Now based on previous state value and action type redux calculates new value for state and updates it.
These all things happens inside the redux store, you can say it as any centralized database for state management.

Then when view get new state value it re-renders the UI.

Let me show you another example of how redux works!

Alt Text

As you can see here this is a simple gif which explains how redux works, you can find it on the official redux documentation.

Now using this UI you can either deposit or withdraw money.

when we click the deposit button, click event goes to event handler, based on event, event handler dispatches an action with the type as deposit and any details needed in the payload property.

This reducer accepts two things, state and the action object. Previous value of state is 0$ and action is for deposit, so the reducer will update the new state by depositing 10$ amount.

you can see in the UI balance, it changed from 0 to 10$.


Redux by definition

It is a Predictable State Container for JS Apps.

It is,

Predictable --> because it helps you write applications that behave consistently, and can run in different environments (client, server, and native).

Centralized --> because of this feature, we don't need to lift state to parent components and we can use state from any component we want due to this centralized behavior.

Debuggable --> There is an extension called Redux DevTools which is an excellent tool to debug Redux applications. Using this tool you can see when, where, why, and how your application's state changed.

Flexible --> because it works with any UI layer, and has a large ecosystem of addons.

If you're confused about anything related to this topic feel free to ask me πŸ˜‰!

Thanks For Reading and Supporting.πŸ˜„

Feel free to visit my YouTube channel:

@CodeBucks

Follow me on Twitter where I'm sharing lot's of useful resources!

@code.bucks πŸ˜‰

Top comments (10)

Collapse
 
soliquid profile image
SoliQuiD

Thanks, its very simple really, consider creating the 2nd part with actual code.

Collapse
 
naimhasim profile image
Naim Hasim

good sharing!

Collapse
 
badasscoder profile image
Badasscoder

where is code sheh

Collapse
 
codebucks profile image
CodeBucks

Which Code?

Collapse
 
badasscoder profile image
Badasscoder

you wrote article on redux without code. I am looking for a complete long article on redux with code.

Thread Thread
 
codebucks profile image
CodeBucks

Hey, This article is just to understand the fundamental concept behind the Redux.
If you want tutorial with code then I have created video playlist : youtube.com/playlist?list=PLjxZxD6...

Collapse
 
tijjken profile image
Wakeel Kehinde Ige

Simplified. Thanks!

Collapse
 
codebucks profile image
CodeBucks

I'm glad you liked itπŸ˜„

Collapse
 
shehjad_dev profile image
Shehjad Ali

Well simplified πŸ‘

Collapse
 
codebucks profile image
CodeBucks

πŸ₯‚πŸ˜„