Migrating between Redux and Vuex (Part 2)

abhishek gupta
js@imaginea
Published in
3 min readApr 6, 2018

Welcome back! This is the second part in n (still not decided) part series trying to help developers with knowledge of either Redux or Vuex understand the other one. If you want to read about reducers, mutations, actions and async action, you can read them here in part- Ⅰ.

OK, so with the customary disclaimer for multi-part series out of the way, let’s dig into our main topic.

Creating a store

To create a new store, you need to import createStore from redux.

Similarly, for Vuex store can be created using Store constructor.

Passing the store

Now that we’ve created our store, we need to make sure that our components can use it. We can either pass the store object to each component (too tedious 😩) or we can pass the store to the root element such that it becomes available to all the components.

In React, we create a new parent to our root component, Provider component from react-redux and pass the store as an attribute to it.

In Vue too it’s done while initializing our root element by passing the store as a part of object being passed to the Vue constructor.

Now that store has become available in our components, next we’ll see how to read/write to them from components.

Using in components

React

To connect your component to the store you can either use store.subscribe() in your container component, or use the connect API. We are going to use the connect API as it has lot of performance optimization.

Let’s take a simple component Counter.

This is a simple React component and has nothing to do with Redux. Now let’s write a container, which will connect to the store.

To use the connect function we need to define a function that tells how to map store’s state to components properties.

mapStateToProps, defines mapping between state and component’s properties and similarly mapDispatchToProps defines the mapping between store’s and component’s action handlers.

If you want to read this topic in more depth please read it in Redux’s official documentation, you can also see the complete source code.

Vue

In Vue, store becomes available to all components via this.$store. Reactive nature of Vue makes sure that whenever our store’s state changes our local properties also gets recomputed.

Let’s have a look at an example for properties to state mapping:

In a large application it will be tedious to map all properties one by one. So, Vuex provides a helper function mapState.

Note: Similar to mapState, Vuex also provides other helper functions like mapMutations, mapActions and mapGetters (getters are discussed later). Implementations shown above holds true for all of them.

You can check few of examples in code of Vuex.

Computing derived data

In Redux, when you map a state to a property it gets recomputed every time the component is updated.

To avoid this, we can use Reselect library which can help us create memoized selector functions. These functions will recalculate only if it’s arguments change.

Memoized Selectors

To create a memorized selector, we use createSelector function. The function takes one or more selectors as its argument and then passes their value to resultFunction.

These selectors have cache size of 1, meaning every change in input selectors will be recalculated. You can also use memorized selector as an input selector to another memorized selector.

Connecting with Redux Store

In order to connect a selector to our store we don’t need to make too many changes to our application. We just need to pass it as regular function to our mapStateToProp object.

Vuex

Vuex’s store contains another object called getters, to store some common operations like filtering out counters by id.

These getters are available in component via store.getters objects. You don’t need to worry about performance of these getters as Vuex implements memoization for them (will try and cover this in some future blog, but not as a part of this series).

I hope that by now you guys have got basic (and some advance) understanding of both Redux and Vuex and will find migrating between them easier than you would in the past. I still have few more topics to cover and will continue with them in the next article.

Originally published at blog.imaginea.com.

--

--