Skip to content

DrorT/cashay

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm version #cashay relay for the rest of us

WIP. Be a pal. Make a PR.

##Installation npm i -S cashay

##Setup

Just like relay, the goal is to get the benefits of graphql while minimizing client payload. To do so, we'll make a script that writes the GraphQL schema to a JSON file. Since this is specific to your project, you'll need to write this yourself. For example, I put the clientSchema in my build folder. I also need to drain my database connection pool that is filled when the rootSchema is accessed. So, my file looks like this:

// updateSchema.js
require('babel-register');
require('babel-polyfill');

const path = require('path');
const rootSchema = require('../src/server/graphql/rootSchema');
const graphql = require('graphql').graphql;
const introspectionQuery = require('graphql/utilities').introspectionQuery;
const r = require('../src/server/database/rethinkdriver');

(async () => {
  const result = await graphql(rootSchema, introspectionQuery);
  if (result.errors) {
    console.log(result.errors)
  } else {
    fs.writeFileSync(path.join(__dirname, '../build/clientSchema.json'), JSON.stringify(result, null, 2));
  }
  r.getPool().drain();
})();

I recommend writing an npm script and executing it whenever your GraphQL schema changes. If you want to get fancy, you can put a watcher on your GraphQL folder to run it on file change.

Next, we'll need to make a babel plugin. Don't worry, cashay already has a babel plugin factory. All you need to do is inject the schema you just made:

// cashayPlugin.js
const createPlugin = require('cashay/lib/babel-plugin');
const schema = require('../build/schema.json');
module.exports = createPlugin(schema);

Now, we need to include that plugin in our .babelrc:

{
  "plugins": [
    ["./cashayPlugin.js"]
  ]
}

Success! Now Babel will statically analyze all of our queries and give each one a bespoke schema. This means our client bundle stays tiny.

##Usage

Cashay provides 3 useful items:

import {CashayQL, Cashay, cashayReducer} from 'cashay';

Prefixing all your query strings with CashayQL tells Babel to do its magic. For example:

const queryString = CashayQL`
query {
  getComments {
    id
    body
  }
}`

Cashay is a class that takes a redux store and transport (AKA fetcher function).

const cashay = new Cashay({store: myReduxStore, transport: graphQLFetcher});

Your transport should call your GraphQL endpoint and return an object with a data and error prop. If you call multiple GraphQL servers, you'll need multiple transports.

export const fetchGraphQL = async graphParams => {
  const authToken = localStorage.getItem('myToken');
  const res = await fetch('http://localhost:3000/graphql', {
    method: 'post',
    headers: {
      'Content-Type': 'application/json',
      'Authorization': `Bearer ${authToken}`
    },
    body: JSON.stringify(graphParams)
  });
  const {data, errors} = await res.json();
  return {data, error: getPrettyErrors(errors)}
}

cashayReducer is as easy; just add it to your combineReducers.

##API

cashay.query(queryString, options)

Calling query will fetch your queryString from the graphQL server and put it in your redux store. Currently, it's very naive. It doesn't reduce the query. It doesn't know if there are pending fetches. It doesn't run the reducer in a webworker.

But, you can use it for predictive fetches. For example, call it when someone hovers their mouse over the "load data" button. No need to wait for the Relay.container to load.

Ha! Take that relay! 😄.

##Contributing

There is a LOT of work to be done. Join the fun, check out the issues, and make a PR.

##License

MIT

About

relay for the rest of us

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.9%
  • Shell 2.1%