atomstore
The missing piece for an immutable flux application architecture
Introduction
This piece of architecture is intended to be used with the Facebook Flux's own dispatcher. It solves the problem of having a mutable store when using Immutable.js.
Atom
is a class behaving like Clojure's Atoms (but it's not thread-safe for now on threaded js environments for example: web workers). Its goal is to ensure that you can mutate safely your store and dereference immutable objects from it.
Install
For now, you have to use browserify in order to import atomstore
$ npm install --save atomstore
Usage
Let's take this simple example from Facebook. Here's how to use atoms with it:
var Dispatcher = require('flux').Dispatcher;
var Atom = require('atomstore').Atom;
var Immutable = require('immutable');
var flightDispatcher = new Dispatcher();
var CountryStore = new Atom({country: null});
var CityStore = new Atom({city: null});
var FlightPriceStore = new Atom({price: null});
function assoc(k, v) {
return this.set(k, v);
}
CountryStore.dispatchToken = flightDispatcher.register(function(payload) {
if (payload.get('actionType') === 'country-update') {
CountryStore.swap(assoc, "city", payload.get('selectedCountry'));
}
});
CityStore.dispatchToken = flightDispatcher.register(function(payload) {
if (payload.get('actionType') === 'city-update') {
flightDispatcher.waitFor([CountryStore.dispatchToken]);
CityStore.swap(assoc, "city", payload.get('selectedCity'));
}
});
FlightPriceStore.dispatchToken = flightDispatcher.register(function(payload) {
switch (payload.get('actionType')) {
case 'country-update':
case 'city-update':
flightDispatcher.waitFor([CityStore.dispatchToken]);
var newPrice = getFlightPriceStore(CountryStore.deref().get('country'),
CityStore.deref().get('city'));
FlightPriceStore.swap(assoc, "price", newPrice);
break;
}
});
It may seem more verbose at first but in the end you are able to ensure that your store is updated atomically as well as keeping your application completely immutable.
Test & contribute
$ npm install
# Test the code, will auto-compile the es6
$ npm test
# Compile the es6 manually
$ gulp es6
PRs are welcome. You just need to provide tests with your code and make the CI pass !
Author
Robin Ricard
Licence
MIT