1. 6
    Redux: Store Methods: getState(), dispatch(), and subscribe()
    3m 9s

Redux: Store Methods: getState(), dispatch(), and subscribe()

Dan Abramov
InstructorDan Abramov
Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 3 years ago

We will learn about the Redux Store and demonstrate how its three methods let us implement a counter application.

[00:00] I added Redux to our application as a script act from CDNGS. This is the UMG build, so it exports a single global variable called Redux, with a capital R. In real applications, I suggest you to use NPM instead and a module bundler like webpack or Browserify, but the UMG build will suffice for our example.

[00:27] I'm going to need just a single function from Redux called create chore. I'm using ES6 destruction syntax here. It's equivalent to writing, "var creates chore equals Redux.creates chore" or, if you use NPM and something like Babel to transpile your ES6, you can write, "import creates chore," notice the parenthesis, "from Redux."

[00:58] This chore binds together the three principles of Redux. It holds the current application's state object. It lets you dispatch actions. When you create it, you need to specify the reducer that tells how state is updated with actions.

[01:16] In this example, we're calling creates chore with counter as the reducer that manages the state updates. This chore has three important methods.

[01:28] The first method of this chore is called get state. It retrieves the current state of the Redux chore. If we were on this, we're going to see zero because this is the initial state of our application.

[01:44] The second and the most commonly used chore method is called dispatch. It lets you dispatch actions to change the state of your application. If we log this chore state after dispatch, we're going to see that it has changed.

[01:59] Of course, always log into the console gets boring, so we're actually going to render something to the body with the help of the third Redux chore method, called subscribe. It lets you register a callback that the Redux chore will call any time an action has been dispatched, so that you can update the UI of your application. It will reflect the current application state.

[02:23] I'm being very naive now. I'm not using React or anything. I'm just rendering the counter into the document body. Any time the body is clicked, I'm going to dispatch an action to increment this counter.

[02:37] If you pay close attention, you will notice that the initial state, the zero, was not rendered. This is because I'm rendering inside the subscribe callback, but it doesn't actually fire the very first time.

[02:51] So I extract this logic into render method. I subscribe the render method to this chore. I also call it once to render the initial state. Now it renders the zero, and the click increments the counter. This is our first working Redux application.

xiao
xiao
~ 7 years ago

just to clarify, is the state being stored in the "store" instance?

Inrhythm
Inrhythm
~ 7 years ago

Nice explanation as i understand reducer accept two parameter one is action and other one is state but here in dispatch we just send one object of action type so from where it get state?

Ajay K
Ajay K
~ 6 years ago

If anyone tried increment and decrement operator and saw that it didn't work .. its because of : The increment ++ operator doesn't work for setting react state

Markdown supported.
Become a member to join the discussionEnroll Today