Giter VIP home page Giter VIP logo

redux-falcor's Introduction

Redux-Falcor

redux-falcor helps connect your Redux applications to your Falcor API.

build status npm version

Installation

To install:

npm install --save redux-falcor

Usage

First include redux-falcor in the initial setup of your application.

import { createStore, combineReducers, applyMiddleware, compose } from 'redux';
import { createFalcorMiddleware, falcorReducer } from 'redux-falcor';
import { Model } from 'falcor';

const reducer = combineReducers({
  entities: falcorReducer
  // Other reducers here
});

// The falcor model that redux-falcor will query
const falcor = new Model({
  cache: {
    // Optional data here
  }
});

const finalCreateStore = compose(
  applyMiddleware(createFalcorMiddleware(falcor)),
  createStore
);

const store = finalCreateStore(reducer);

We can now access the data returned from Falcor through state.entities.*. To query that data we just need to dispatch a special action.

import { retrievePath } from 'redux-falcor';

store.subscribe(() =>
  console.log(store.getState())
);

store.dispatch(retrievePath('usersById[35]["email"]');

// This will logged:
// {
//   entities: {
//     usersById: {
//       35: {
//         email: "[email protected]"
//       }
//     }
//   }
// }

While its not suggested, you can also hook into the Falcor promise directly if you need to. For example:

import { retrieveValue } from 'redux-falcor';

store.dispatch(retrieveValue('usersById[35]["email"]').then((email) => {
  console.log(email); // [email protected]
});

Licence

MIT

redux-falcor's People

Contributors

ekosz avatar

Watchers

Vincent Fretin avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.