Handle JSON API data.
jsonapi-data-store
module which is
currently unmaintained.
The JSON API standard is great for exchanging data (which is its purpose), but the format is not ideal to work directly with in an application. This module is framework-agnostic library that takes away the burden of handling JSON API data on the client side.
What it does:
- Read JSON API payloads
- Rebuild the underlying data graph
- Allows you to query models and access their relationships directly
- Create new models
- Serialize models for creation/update
What it does not do:
- Make requests to your API. You design your endpoints URLs, the way you handle authentication, caching, etc. is totally up to you.
npm install jsonapi-data-manager --save
Store
and Model
classes are available as named exports.
import { Store, Model } from 'jsonapi-data-manager';
Call the .sync()
method of your store.
const store = new Store();
store.sync(data);
This parses the data and incorporates it in the store, taking care of already existing records (by updating them) and relationships.
Top level data in your payload (e.g. meta
) are stored directly on store.
Call the .find(type, id)
method of your store.
const article = store.find('article', '123');
or call the .findAll(type)
method of your store to get all the models of that type.
const articles = store.findAll('article');
All the attributes and relationships are accessible through the model as object properties.
article.author.name;
In case a related resource has not been fetched yet (either as a primary resource or as an included
resource), the corresponding property on the model will contain only the type
and id
. However,
the models are updated in place, so you can fetch a related resource later, and your data will
remain consistent.
Call the .serialize()
method on the model.
article.serialize();
import { Store } from 'jsonapi-data-manager';
// Create a store:
const store = new Store();
// Then, given the following payload, containing two `articles`, with a related `user` who is the author of both:
const payload = {
data: [
{
type: 'article',
id: '1337',
attributes: {
title: 'Cool article'
},
relationships: {
author: {
data: {
type: 'user',
id: '1'
}
}
}
},
{
type: 'article',
id: '300',
attributes: {
title: 'Even cooler article'
},
relationships: {
author: {
data: {
type: 'user',
id: '1'
}
}
}
}
]
};
// We can sync it:
store.sync(payload);
// We can retrieve list of synced articles:
const articles = store.findAll('article');
// Later, we can retrieve one of those:
const article = store.find('article', '1337');
// If the author resource has not been synced yet, we can only access its id and its type:
article.author;
// { id: 1, type: 'article' }
// If we do sync the author resource later:
const authorPayload = {
data: {
type: 'user',
id: '1',
attributes: {
name: 'Lucas'
}
}
};
store.sync(authorPayload);
// We can then access the author's name through our old `article` reference:
article.author.name;
// 'Lucas'
// We can also serialize any whole model in a JSONAPI-compliant way:
article.serialize();
// Or just a subset of its attributes/relationships:
article.serialize({ attributes: ['title'], relationships: [] });
Tested in IE11+ and all modern browsers.
For automated tests, run npm test
(append :watch
for watcher support).
MIT © Ivan Nikolić