FormidableLabs/biff

Name: biff

Owner: Formidable

Description: Flux architecture made easy

Created: 2015-02-24 22:55:57.0

Updated: 2016-01-17 15:30:33.0

Pushed: 2015-10-19 19:00:29.0

Homepage: null

Size: 1599

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Biff

Flux Architecture Made Easy

What is Biff?

When writing ReactJS apps, it is enormously helpful to use Facebook's Flux architecture. It truly complements ReactJS' unidirectional data flow model. Facebook's Flux library provides a Dispatcher, and some examples of how to write Actions and Stores. However, there are no helpers for Action & Store creation, and Stores require 3rd part eventing.

Biff is a library that provides all 3 components of Flux architecture, using Facebook's Dispatcher, and providing factories for Actions & Stores.

Demo

Check out this JSFiddle Demo to see how Biff can work for you:

http://jsfiddle.net/2xtqx3u3/

Getting Started

The first step to using Biff is to create a new instance of Biff.

Standalone
biff = new Biff();
Modular
Biff = require('biff');
le.exports = new Biff();

Each instance of Biff has its own Dispatcher instance created and attached.

In fact, all created Actions & Stores are also stored on the Biff object as actions and stores respectively.

.dispatcher // Dispatcher instance
.actions // Array of actions
.stores // Array of stores
Stores

Biff has a createStore helper method that creates an instance of a Store. Store instances have been merged with EventEmitter and come with emitChange, addChangeListener and removeChangeListener methods built in.

When a store is created, its methods parameter specified what public methods should be added to the Store object. Every store is automatically registered with the Dispatcher and the dispatcherID is stored on the Store object itself, for use in waitFor methods.

Creating a store with Biff looks like this:

equire the Biff instance you created
biff = require('./biff');

nternal data object
_todos = [];

tion addTodo(text) {
odos.push(text);


TodoStore = biff.createStore({

odos: function() {
turn _todos;


unction(payload){

itch(payload.actionType) {
se 'ADD_TODO':
addTodo(payload.text);
this.emitChange();
eak;
fault:
return true;


turn true;


Use Dispatcher.waitFor if you need to ensure handlers from other stores run first.

biff = require('./biff');
Dispatcher = Biff.dispatcher;
OtherStore = require('../stores/OtherStore');

_todos = [];

tion addTodo(text, someValue) {
odos.push({ text: text, someValue: someValue });




case 'ADD_TODO':
  Dispatcher.waitFor([OtherStore.dispatcherID]);
  var someValue = OtherStore.getSomeValue();
  addTodo(payload.text, someValue);
  break;


Stores are also created a with a ReactJS component mixin that adds and removes store listeners that call an storeDidChange component method.

Adding Store eventing to your component is as easy as:

TodoStore = require('../stores/TodoStore');

TodoApp = React.createClass({

xins: [TodoStore.mixin],
oreDidChange: function () {
// Handle store change here


.

This mixin also adds listeners that call a storeError component method, so that if you call this.emitError('Error Messaging') in your store, you can respond and handle this in your components:

TodoStore = require('../stores/TodoStore');

TodoApp = React.createClass({

xins: [TodoStore.mixin],
oreError: function (error) {
console.log(error);


.

A simple example of how this works can be seen here:

http://jsfiddle.net/p6q8ghpc/

Stores in Biff also have helpers for managing the state of the store's data. Each Biff instance has _pending and _errors properties. These are exposed via getters and setters. These methods are:

Below, see an example of how they can be used:

n Your Store

TodoStore = biff.createStore({
getTodos: function() {
  return _todos;
}

unction(payload){

itch(payload.actionType) {
case 'ADD_START':
  this._setPending(true);
break;

case 'ADD_SUCCESS':
   this._setPending(false);
  addTodo(payload.text);
  this._clearErrors();
  this.emitChange();
break;

case 'ADD_ERROR':
  this._setPending(false);
  this._setError(payload.error);
  this.emitChange();
break;

default:
  return true;


turn true;



n your component

tion getState(){
turn {
errors: TodoStore.getErrors()
pending: TodoStore.getPending()
todos: TodoStore.getTodos()



TodoApp = React.createClass({
xins: [TodoStore.mixin],
tInitialState: function () {
return getState();

oreDidChange: function () {
this.setState(getState());

.
Actions

Biff's createActions method creates an Action Creator object with the supplied singleton object. The methods of the supplied object are given an instance of the Biff instance's dispatcher object so that you can make dispatch calls from them. It is available via this.dispatch in the interior of your methods.

Adding actions to your app looks like this:

biff = require('../biff');

TodoActions = biff.createActions({
dTodo: function(text) {
this.dispatch({
  actionType: 'ADD_TODO',
  text: text
});


Async In Biff

Check out the example below to show you can handle async in Biff:

http://jsfiddle.net/29L0anf1/

API
Biff
Biff = require('biff');

le.exports = new Biff();
createStore

param {object} methods - Public methods for Store instance
param {function} callback - Callback method for Dispatcher dispatches
return {object} - Returns instance of Store

createActions

param {object} actions - Object with methods to create actions with
constructor


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.