Dispatchr
A Flux dispatcher for applications that run on the server and the client.
Usage
For a more detailed example, see our example application.
var Dispatchr = require('dispatchr')(),
ExampleStore = require('./example-store.js'),
context = {};
Dispatchr.registerStore(ExampleStore);
var dispatcher = new Dispatchr(context);
dispatcher.dispatch('NAVIGATE', {});
Dispatchr's main goal is to facilitate server-side rendering of Flux applications while also working on the client-side to encourage code reuse. In order to isolate stores between requests on the server-side, we have opted to instantiate the dispatcher and stores classes per request.
In addition, action registration is done by stores as a unit rather than individual callbacks. This allows us to lazily instantiate stores as the events that they handle are dispatched. Since instantiation of stores is handled by the dispatcher, we can keep track of the stores that were used during a request and dehydrate their state to the client when the server has completed its execution.
Lastly, we are able to enforce the Flux flow by restricting access to the dispatcher from stores. Instead of stores directly requiring a singleton dispatcher, we pass a dispatcher interface to the constructor of the stores to provide access to only the functions that should be available to it: waitFor
and getStore
. This prevents the stores from dispatching an entirely new action, which should only be done by action creators to enforce the unidirectional flow that is Flux.
Dispatcher Interface
registerStore(store)
A static method to register stores to the Dispatcher class making them available to handle actions and be accessible through getStore
on Dispatchr instances.
Constructor
Creates a new Dispatcher instance with the following parameters:
context
: A context object that will be made available to all stores. Useful for request or session level settings.
dispatch(actionName, payload)
Dispatches an action, in turn calling all stores that have registered to handle this action.
actionName
: The name of the action to handle (should map to store action handlers)payload
: An object containing action information.
getStore(storeName)
Retrieve a store instance by name. Allows access to stores from components or stores from other stores.
waitFor(stores, callback)
Waits for another store's handler to finish before calling the callback. This is useful from within stores if they need to wait for other stores to finish first.
stores
: A string or array of strings of store names to wait forcallback
: Called after all stores have fully handled the action
dehydrate()
Returns a serializable object containing the state of the Dispatchr instance as well as all stores that have been used since instantiation. This is useful for serializing the state of the application to send it to the client.
rehydrate(dispatcherState)
Takes an object representing the state of the Dispatchr instance (usually retrieved from dehydrate) to rehydrate the instance as well as the store instance state.
Store Interface
We have provided utilities for creating stores in a couple of forms:
require('dispatchr/utils/createStore')
returns a React.createClass
-like function for creating stores.require('dispatchr/utils/BaseStore')
returns an extendable class.
You are not required to use these if you want to keep your stores completely decoupled from the dispatcher. Dispatchr expects that your stores use the following interface:
Constructor
The store should have a constructor function that will be used to instantiate your store using new Store(dispatcherInterface)
where the parameters are as follows:
dispatcherInterface
: An object providing access to dispatcher's waitFor and getStore functionsdispatcherInterface.getContext()
: Retrieve the context object that was passeddispatcherInterface.getStore(store)
dispatcherInterface.waitFor(store[], callback)
The constructor is also where the initial state of the store should be initialized.
function ExampleStore(dispatcher) {
this.dispatcher = dispatcher;
if (this.initialize) {
this.initialize();
}
}
It is also recommended to extend an event emitter so that your store can emit change
events to the components.
util.inherits(ExampleStore, EventEmitter);
storeName
The store should define a static property that gives the name of the store. This is used for accessing stores from the dispatcher via dispatcher.getStore(name)
.
ExampleStore.storeName = 'ExampleStore';
handlers
The store should define a static property that maps action names to handler function names. These functions will be called in the event that an action has been dispatched by the Dispatchr instance.
ExampleStore.handlers = {
'NAVIGATE': 'handleNavigate'
};
The handler function will be passed one parameter:
payload
: An object containing action information.
ExampleStore.prototype.handleNavigate = function (payload) {
this.navigating = true;
this.emit('change');
};
dehydrate()
The store should define this function to dehydrate the store if it will be shared between server and client. It should return a serializable data object that will be passed to the client.
ExampleStore.prototype.dehydrate = function () {
return {
navigating: this.navigating
};
};
rehydrate(state)
The store should define this function to rehydrate the store if it will be shared between server and client. It should restore the store to the original state using the passed state
.
ExampleStore.prototype.rehydrate = function (state) {
this.navigating = state.navigating;
};
License
This software is free to use under the Yahoo! Inc. BSD license.
See the LICENSE file for license text and copyright information.