Skip to content

berfarah/active-redux

 
 

Repository files navigation

Active Redux

The goal of this project is to stop bikeshedding API interactions on the frontend. We want an Active Record for Redux that works nicely with other reducers and doesn't require its own store.

This project depends on:

  • A JSON-API spec backend
  • redux and redux-thunk

Core Ideas

Resources should have models

We want to be able to interact with objects that know about their relationships with other objects, can house resource-specific information (how to read a date, how to put firstName and lastName together) and are able to persist themselves.

Models

Models are an object that read from a JSON-API resource. They define their own attributes, know their relationships and can both read and persist information.

Here's how you use models:

1. Define the model

// models/person.js
import { Attr, define } from 'active-redux';

const Person = define('people', class Person {
  static endpoints = {    // overridable API endpoints - defaults to type
    create: 'people',
    read: 'people',
    update: 'people/:id',
    delete: 'people/:id'
  };
  static attributes = {
    name: Attr.string({ default: 'Joe Schmoe '}),
    posts: Attr.hasMany('articles'), // The JSON-API type of the relation
    employer: Attr.hasOne('companies'),
  };

  get firstName() {
    return this.name.split(' ')[0] // this.name as well as other attributes are
  }                                // defined when the model is registered
});

2. Bind Active Redux to the store

// wherever the store is set
import { createStore, combineReducers } from 'redux';
import { api, bind } from 'active-redux';
import reducers from 'app/reducers';

const store = createStore(
  combineReducers({ api: api.reducer, ...reducers }),
);
bind(store);

This gives models access to the store for querying.

Use the Model

// anywhere
import Person from 'models/person';
const joe = Person.find(5)
// => Promise<Person>

Example

You can find an example here. In order to set it up, you can do the following:

cd example
yarn install

# in one process
yarn server
# in another
yarn start

About

JSON-API driven redux store with models

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 96.3%
  • Shell 2.2%
  • HTML 1.4%
  • CSS 0.1%