Sync the UI with the app state using MobX observable and observer in React

Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 5 years ago

Applications are driven by state. Many things, like the user interface, should always be consistent with that state. MobX is a general purpose FRP library that provides the means to derive, for example, a React based user interface automatically from the state and keep it synchronized.

The net result of this approach is that writing applications becomes really straight-forward and boilerplate free.

[00:00] Here's a very simple counter application built using React. The counter application has one piece of state, the count. The count is used in the rendering. The basic question that MobX tries to answer is, "How can we keep this count consistent with the rendering?"

[00:18] To synchronize the rendering of the state, we are going to use two functions from MobX. The first one is observable. We use observable to decorate our state to count attributes. We say, "MobX, please track this value, so that you can update observers whenever needed."

[00:41] Next, we mark our component with the observer decorator from the MobX React package. It simply tells MobX, "This component's rendering can be derived from the relevant observables. Do so whenever needed."

[00:57] The next thing we need to do is to implement our built-in handler. That is a really straightforward task, because we trust MobX to keep components rendering consistent with the state. Our actions now consist of simple mutations to our observable state.

[01:12] That is enough to have our component react to them. Even more important is that we now have established a separation of concern between the observable state and the component that reacts with. Again, exploit the separation of concern by moving all the state out of the components into a separate store or state. We move the logic along with it.

[01:44] We adjust our counter component, and we pass in the store explicitly as property. We refer to this store in our rendering, and in our action handlers. As you will see, the counter now still works as we would expect.

[02:04] Just for fun, we can prove this reactive relationship between observer and observable by even removing the props, and accessing the state directly from the closure. Still, the component will react to it as it should.

[02:21] That concludes this intro to MobX. There is state marked with observable, and there are components which automatically derive from it, marked by observer.

Sofiya Tepikin
Sofiya Tepikin
~ 7 years ago

What is the difference then, between passing the store as prop, and using it directly from the closure?

Michael Freeman
Michael Freeman
~ 6 years ago

Downloaded the repo from: https://codesandbox.io/s/jj7rrm1q19

"Syntax error: Unexpected token (17:0)"

@observer class Counter extends Component {

••••••••••

Any ideas?

shraddha213408
shraddha213408
~ 5 years ago

I get this same error.Unable to resolve it.

Felipe Segall
Felipe Segall
~ 5 years ago

Probably you need to enable babel to parse the decorator syntax installing a plugin such as:

https://babeljs.io/docs/en/babel-plugin-proposal-decorators

I've just started this tutorial. But would try that.

Sung Kim
Sung Kim
~ 5 years ago

Downloaded the repo from: https://codesandbox.io/s/jj7rrm1q19

"Syntax error: Unexpected token (17:0)"

@observer class Counter extends Component {

••••••••••

Any ideas?

Seems like CRA doesn't support decorators. https://facebook.github.io/create-react-app/docs/can-i-use-decorators

As I tried your sandbox with old v1.x react-script, it works but not with v2.x

Markdown supported.
Become a member to join the discussionEnroll Today