This library is intended to make building large apps with redux easier.
Applications often evolve from relatively simple requirements (ie, grab data from a server and display it) to more complicated requirements such as loading states, optimistic updates, offline caching, cache invalidation, complex validation, etc.
Such requirements carry with them a lot of nuance and corner cases that aren't always dealt with (especially if it's not a critical feature). Moreover, the complexity of these requirements often lead to the code being much harder to understand and has a lot of boilerplate that makes the core functionality of the code harder to understand.
My hope is that this library can act as a layer of abstraction around some of these issues, resulting in much cleaner and easier to understand code without circumventing amy of the core principles around redux.
You can think of this library as one giant immutable data structure that was built specifically for the needs of common front-end application scenarios.
I'm planning on adding a few things to this library to start, and see where needs develop in an actual application.
The features currently planned are:
Schema
objectsSchema
to specify base type: Object | Map | Record
Schema
base classreselect
graphql-anywhere
to read from the state atomSimpleList
PagedList
FilteredList
FilteredPagedList
You will want to start your app off by defining the "schema" of your app. Use Schema
to create all of the different entities you care
about in your frontend. After creating them, you will want to define their relationships with one another. The relationships of these
schema is inspired from the normalizr library.
// appSchema.js
import {
Schema,
arrayOf,
PagedFilteredList,
} from 'redux-entity';
export const User = new Schema('users');
export const Listing = new Schema('listings');
export const Reservation = new Schema('reservations');
export const SearchResults = new PagedFilteredList('searchResults', Listing);
Listing.define({
host: User,
});
User.define({
listings: arrayOf(Listing),
reservations: arrayOf(Reservation),
});
Reservation.define({
host: User,
guest: User,
listing: Listing,
});
You should do all of the normal things you would do to set up redux. When you do, you should create an entities
reducer. (The name doesn't matter,
but will be the location of the state atom that holds all of the state related to your server-backed data.
The state controlled by your entities
reducer is an instance of an immutable data structure EntityStore
. You will want to create the initial state by
running EntityStore.create
with all of the schemas you defined in the above file.
You will want to then create a reducer function and return a new EntityStore
instance by using any number of the fluent prototype methods
that are provided.
// reducers/entities.js
import { EntityStore } from 'redux-entity';
import { User, Listing, Reservation, SearchResults } from '../appSchema';
const initialState = EntityStore.create({
entities: [
Listing,
User,
Reservation,
],
resources: [
SearchResults,
],
});
export default function reducer(state = initialState, action) {
const { type, payload } = action;
switch (type) {
case USER_FETCH:
return state.setIsLoading(User, payload.id, true);
case USER_FETCH_SUCCESS:
return state
.update(User, payload)
.setIsLoading(User, payload.id, false);
case LISTING_FETCH:
return state.setIsLoading(Listing, payload.id, true);
case LISTING_FETCH_SUCCESS:
return state
.update(Listing, payload)
.setIsLoading(Listing, payload.id, false);
case UPDATE_LISTING_TITLE:
return state
.addOptimisticUpdate(Listing, payload.id, action.requestId, {
title: payload.title,
});
case UPDATE_LISTING_TITLE_SUCCESS:
return state
.removeOptimisticUpdate(action.requestId)
.update(Listing, payload);
case SEARCH_FETCH:
return state.for(SearchResults, sr => sr
.setIsPageLoading(payload.filter, payload.page, true));
case SEARCH_FETCH_SUCCESS:
return state.for(SearchResults, sr => sr
.setIsPageLoading(payload.filter, payload.page, true)
.setPage(payload.filter, payload.page, payload.results));
default:
return state;
}
}
Finally, when connecting with your React components, you will want to use one of the many getter prototype methods from your EntityStore
state atom.
// components/ListingContainer.js
import { connect } from 'react-redux';
import { Listing } from '../appSchema';
import ListingComponent from './ListingComponent';
function mapStateToProps({ entities }, props) {
return {
listing: entities.get(Listing, props.id),
isLoading: entities.getIsLoading(Listing, props.id),
};
}
export default connect(mapStateToProps)(ListingComponent);
// components/Search.js
import { connect } from 'react-redux';
import { SearchResults } from '../appSchema';
import SearchComponent from './SearchComponent';
function mapStateToProps({ entities }, props) {
const searchResults = entities.get(SearchResults);
return {
loading: searchResults.getIsLoading(props.filter, props.page),
results: searchResults.getPage(props.filter, props.page),
};
}
export default connect(mapStateToProps)(SearchComponent);
Alternatively, redux-entity
exposes a connect
HOC similar to
react-redux
that works directly with GraphQL queries (as opposed to
mapStateToProps
functions) to the global state atom. This allows for you
to grab data for a component that traverses that state graph (which has been
normalized by redux-entity
) without worrying at all about things such as
the optimistic updates, or referential consistency.
// components/Search.js
import { ql, connect } from 'redux-entity';
import SearchComponent from './SearchComponent';
export default connect(ql`{
searchResults(filter: $filter) {
totalCount
isLoading
listings {
id
title
}
}
}`)(SearchComponent);
// components/Listing.js
import { ql, connect } from 'redux-entity';
import ListingComponent from './ListingComponent';
export default connect(ql`{
listing(id: $id) {
id
title
host {
id
name
}
}
}`)(ListingComponent);
Storing entites in a normalized fashion is only half of the battle. And, quite frankly, it's the simpler
half. Most of a real app is a set of "queries" or "resources" that are slices of the global state atom. You
usually want to look at state through some sort of lens that makes it useful to the user. You should view Resource
classes as the way to do that.
Since they are so important, redux entity provides a way for you to provide your own resource definitions for when the built in ones don't suit your needs...
Below is how you would create a new resource class:
// extensions/MyCustomResource.js
import {
Resource,
ResourceStore,
EntityStore,
normalize,
Schema,
} from 'redux-entity';
class MyCustomResourceStore<T> extends ResourceStore<T> {
/*
Here is where you would want to put custom prototype methods that
return useful information about your resource from the global state
atom (accessible from `this.state`, or as "fluent" prototype methods
that return a new global state atom through the usage of the
`this.fluent(...)` prototype method defined in the `ResourceStore`
base class.
*/
}
class MyCustomResource<T> extends Resource<T, MyCustomResourceStore<T>> {
constructor(key: string, itemSchema: Schema<T>) {
super(key, itemSchema, MyCustomResourceStore);
}
}
module.exports = MyCustomResource;
This project (still a work in progress) essentially started as a fork of normalizr. The project was forked because data normalization is slowly going to become only a small feature of this library, and the internals of the code has already changed a fair amount. The ideas and concepts behind this code are highly inspired from the work on normalizr, and how to combine it with redux and immutable in an intelligent way that can reduce the complexity of large modern code bases.