Memoized selector library
The motivation behind this library is to improve reselect usage to be more resilient and concise. By using the new way to construct selectors, you should be able to write selectors that are easier to combine with.
/* selectors.js
**
** You never call createSelector in your `selectors.js`
** import { createSelector } from 'reselect'
*/
const shopItemsSelector = state => state.shop.items
const taxPercentSelector = state => state.shop.taxPercent
// Notice how to use an array structure to describe a selector
const subtotalSelector = [
shopItemsSelector,
items => items.reduce((acc, item) => acc + item.value, 0)
]
const taxSelector = [
[subtotalSelector, taxPercentSelector],
(subtotal, taxPercent) => subtotal * (taxPercent / 100)
]
let exampleState = {
shop: {
taxPercent: 8,
items: [
{ name: 'apple', value: 1.20 },
{ name: 'orange', value: 0.95 },
]
}
}
// container.js
// On your view layer where the selectors actually get called
import createSelector from 're-select';
connect(createSelector({
subtotal: subtotalSelector, // 2.15
tax: taxSelector, // 0.172
}))
npm install re-select
This introduction will assume you have a basic understanding of reselect. The major difference between re-select and reselect is how you describe/combine a selector.
const getVisibilityFilter = (state) => state.visibilityFilter
const getTodos = (state) => state.todos
/*
const getVisibleTodosFilteredByKeyword = createSelector(
[ getVisibleTodos, getKeyword ],
(visibleTodos, keyword) => visibleTodos.filter(
todo => todo.text.includes(keyword)
)
)
*/
const filteredVisibleTodosSelector = [
[ getVisibleTodos, getKeyword ],
(visibleTodos, keyword) => visibleTodos.filter(
todo => todo.text.includes(keyword)
)
]
A very common selector shown in the example above. Instead of calling createSelector
to create a selector function, you construct an array structure to describe a selector.
Let's take a closer look at how it works.
The selectors consist of two parts.
The first element is an array of functions, each of which takes the store as input. The second element is a plain function that takes the output values from the first element, as its inputs. So the first argument it takes will be the result of getVisibleTodos
and the second will be getKeyword
. The Values of each element are cached, so if all the values of the first elements are the same as previous, the second element will not get called, and instead returns its previously computed value. In this example, the second element function will not run until the result of getVisibleTodos
or getKeyword
changes.
On the previous example, all input selectors are functions. But they don't have to be.
const todoAuthorSelector = [
[filteredVisibleTodosSelector],
todos => todos.map(todo => todo.author)
]
A valid selector description can be a function, an array, or a plain object (we'll see it later).
Let's implement the todoAuthorSelector
without nested selectors this time.
const todoAuthorSelector = [
[ getVisibleTodos, getKeyword ],
(visibleTodos, keyword) => visibleTodos.filter(
todo => todo.text.includes(keyword)
),
todos => todos.map(todo => todo.author)
]
You can have even more element in a selector.
Like what we have known, each element is memorized and each element takes the previous as input.
You should also notice the second element has not been wrapped in []
. It's fine, []
is optional when there is only one selector that is not an array.
When working on a react/redux project, it's a common pattern to select data from the redux store and pass it as props to a component. A selector might look like this:
const usernameSelector = state => state.user.name
const postsSelector = state => state.posts
connect(createSelector([
[usernameSelector, postsSelector],
(username, posts) => ({
username,
posts,
})
]))
This is when structured selectors come into play. Structured selectors are objects whose properties are a selector. A structured selector equivalent to above can be:
connect(createSelector({
username: usernameSelector,
posts: postsSelector,
}))
selector → memoizedFunction
Takes one selector, return a memoized function.
A selector can be a function, an array or a plain object. It determines if the value has changed using reference equality(===
).
equalityCheck → function → memoizedFunction
Passing in an equalityCheck
function, returns a function that transforms a function to the memoized version.
memoize → createSelector
createSelectorCreator
takes a memoize
function as input and returns a customized version of createSelector
.
Here is an example for using Immutable.is
as equalityCheck
import { is } from 'immutable'
import { createSelectorCreator, createMemoizor } from 're-select'
const createImmutableSelector = createSelectorCreator(createMemoizor(is))
MIT