yahoo/elide-js

Name: elide-js

Owner: Yahoo Inc.

Description: Elide is a library that makes it easy to talk to a JSON API compliant backend.

Created: 2015-10-20 19:45:47.0

Updated: 2018-04-16 20:27:46.0

Pushed: 2017-04-27 23:49:45.0

Homepage:

Size: 123

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Stories in Ready Build Status npm version Code Climate

Elide

Elide is a library that makes it easy to talk to a JSON API compliant backend. While it was specifically designed to talk to the Elide server it should work with any server that is JSON API compliant.

While the examples make use of ES6, it is by no means required to write your code in ES6. Elide is developed in ES6, but the distributed code is ES5 so you can run it without any other support libraries.

Getting Started
install elide-js

Elide is tested on:

Usage
Schema

The schema is a javascript object composed of two sections: stores and models.

Example schema

SCHEMA = {
ores: {
memory: {
  type: 'memory', // memory stores cache data in the browser
  upstream: 'jsonapi', // upstream stores are where queries fall back to  
  ttl: 60000
},
jsonapi: {
  type: 'jsonapi', // jsonapi stores talk to remote servers to fetch data
  baseURL: 'https://stg6-large.flurry.gq1.yahoo.com/pulse/v1'
}

dels: {
// all models have an implicit id property
// only the properties that are listed directly in the object or in the links object
// are parsed out of the response from server or sent to the server
company: { // the property names in models are the name of the model (JSON API type)
  meta: {
    store: 'jsonapi', // where we should start looking for instances of this model
    isRootObject: true // if we can query for this model directly (defaults to false)
  },
  name: 'string',
  publisherLevel: 'string|number', // the values of the properties are meant as documentation,
                                   // in reality they could be any valid javascript value
  publisherDiscount: 'number',
  links: {
    project: {  // this key will be the property name in the parsed object
      model: 'project',  // what model type the property links to
      type: 'hasMany',   // hasOne|hasMany
      inverse: 'company' // what property on the other object will hold the inverse relationship
    }
  }
},
project: {
  meta: {
    store: 'memory'
  }
  name: 'string'
}



rt default SCHEMA; // or module.exports = SCHEMA; if you prefer
API
constructor(schema, options)

schema - an object as described in schema

options - an object options.promise - Your favorite promise implementation

schema = require('./schema'); // import schema from './schema';
Promise = require('es6-promise').Promise // import {Promise} from 'es6-promise';

options = {
omise: Promise


elide = new Elide(schema, options);
find(model, id, opts) ? Promise(result)

model - the name of the model (or property for nested queries) to search

id - (optional) the id to find (leave blank for collections)

opts - (optional) additional options for querying sparse fields, filtering and includes (see below)

result - the object returned by the query. Will have the format:


ta: object|array, 
cluded: {
model: [], 
model2: []


elide.find('company', 1) .then((results) => {

// do something with company 1

}).catch((error) => {

// inspect error to see what went wrong

});

elide.find('company', 1) .find('projects') .then(function(results) {

// do something with company 1's projects

}).catch(function(error) {

// inspect error to see what went wrong

});

elide.find('company', 1, {fields: {projects: ['name', 'companyid']}}) .find('projects')

.then(function(results) {
  // do something with company 1's projects's name and company id
}).catch(function(error) {
  // inspect error to see what went wrong
});

elide.find('company', 1, {filters: {project: [ {attribute: 'name', operator: “in”, value: “myapp” }]}}) .find('projects')

.then(function(results) {
  // do something with company 1's only myapp projects
}).catch(function(error) {
  // inspect error to see what went wrong
});
# Options

lude` - an array of additional resource objects to include in the results that are 
ted to the primary data. The contents of the array are the property names of the 
tionships. For example `['authors', 'authors.spouse', 'publisher.bankAccounts']` 
d include the authors for the requested books, the spouses for the included authors, 
the bank accounts for the publisher of the requested books.

instance, you might query for books and include the related author resources as follows:

elide.find('book', {include: ['authors']}) .then((results) => {

console.log(results.data); // the books
console.log(results.included); // the included resources (authors)

});

lds` - an object that specifies which set of fields to return for each model.
efault, all attributes and relationships described in the model will be fetched.

instance, query for the title and authors of books as follows:

elide.find('book', {fields: {book: ['title', 'authors']}}) .then((results) => {

console.log(results.data); // only book information will be available

});

te:** If you specify a fields option, it overrides the fields for **all models**.
 this means is that if you query for books, include authors and ask for title and 
ors of books, you will not get any fields back for authors. In addition to
e and authors of books, you will also have to include name of authors, as follows:

elide.find('book', {include: ['authors'], fields: {book: ['title', 'authors'], author: ['name']}}) .then((results) => {

console.log(results.data); // only book.title and book.authors will be available
console.log(results.included); // only author.name will be available

});

ters` - an object that specifies criteria that result types must match.

instance, query for all books that start with Harry Potter as follows:

elide.find('book', {filters: {book: [ {attribute: 'title', operator: “prefix”, value: “Harry Potter”} ]}) .then((results) => {

console.log(results.data); // returns books with title Harry Potter

});

 create(`model`, `state`) ? Promise(`result`)
el` - The name of the model to be created

te` - The initial state (without `id`) of the new object

ult` - The object created by `create`

let company = { name: 'Flurry', publisherLevel: 'Advanced', publisherDiscount: 0.5 }; elide.create('company', company) .then((createdCompany) => {

// company now has an id

}).catch((error) => {

// inspect error to see what went wrong

});

 update(`model`, `newState`) ? Promise(`result`)
el` - The name of the model to be updated

te` - The new state of the object

ult` - The object updated by `update`

let company = { id: 1, name: 'Flurry by Yahoo!' };

elide.update('company', company) .then(function(updatedCompany) {

// company.name now == 'Flurry by Yahoo!'

}).catch(function(error) {

// inspect error to see what went wrong

});

 delete(`model`, `state`) ? Promise()
el` - The name of the model to be deleted

te` - An object that contains at least `id` with the id of the object to be deleted

te receives no value, but returns a Promise so errors can be caught.

elide.delete('company', {id: 1}) .then(function() {

// there is no value received

}).catch((error) => {

// inspect error to see what went wrong

});

 commit() ? Promise()
it receives no value but returns a Promise so errors can be caught

elide.commit() .then(() => {

// there is no value received

}).catch((error) => {

// inspect error to see what went wrong

});


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.