@arqex/ors
v0.9.0
Published
The eventful state holder
Downloads
7
Maintainers
Readme
ORS - Observable regenerating store
The Observable Regenerating Store is a tree data structure that emits events when it's updated, even if the change happens in one of the leaves, making easier to think in a reactive way.
An ORS can be read or updated like any JS object:
import ors from '@arqex/ors'
let store = ors({
people: {
alice: { age: 22 },
bob: {age: 38}
}
});
store.addChangeListener( () => console.log('Changed') );
store.people.alice.age = 23; // Will print 'Changed' in the console!
ORS is intended to be the single store where centralize all the data of a JavaScript application, it's the simplest way of manage the state: Just use it and listen to changes to update your UI. See how it works.
Installation
npm install --save @arqex/ors
Usage
// Import the library
import ors from '@arqex/ors'
// Create a store
let store = ors({
people: {
alice: { age: 12, children: [] },
bob: { age: 38, children: ['alice'] }
}
});
// We can read from the store like if it was a standard JS object
let alice = store.people.alice;
console.log( alice.age ); // prints out 12
// Listen to changes
store.addChangeListener( () => console.log('Store updated') );
// We can listen to changes in any node
store.people.bob.addChangeListener( () => console.log('Bob updated') );
// Updates can be done like if it was a standard JS object
store.people.bob.children.push('chris'); // This will emit events
console.log( store.people.bob.children[1] ); // Prints out > 'chris'
// Multiple updates in the same cycle are batched and they
// will emit events just once
store.people.bob.age = 39;
//... on the following tick, events are emitted so the console print out
// in ascending order:
// > 'Bob updated'
// > 'Store updated'
How does ORS work?
ORS has 3 main features. They are probably all the features it has and that makes it simple and powerful.
Feature 1: It looks like a standard JS object
ORS is really simple to use because we don't need to learn any methods or strategy to make it work. It loks like just any other object:
let store = ors({
people: [
{name: 'Jude', age: 20}
];
});
// We can access the data like if it was a standard JS object:
store.people[0].name; // Jude
// We can update it as we update any other object
store.people[0].age = 21;
store.people[0].age; // 21
// We can use all array methods
let jude = store.people.pop();
jude; // {name: 'Jude', age: 21}
store.people.length; // 0
The stores look like JS standard objects, but they really aren't. Objects and arrays are used as baseIn the background, it uses JS Proxies to keep track of the changes and spread them up through the store.
but it regenerates when a node gets updated and emit change events.
It has some features that makes it the simplest way of managing the state: It looks like a standard JS object. It's completely observable. We can listen for updates at any node, and change events are triggered in the parent nodes when children are updated. When a child is updated, the whole branch that contains it gets regenerated after the change event, making simpler to use memoization to derive data.
Usage
To be documented...
Compatibility
These are the minimum browser versions to make ORS work:
Mobile browsers:
On Node.js it works since version 6.5.