This is a library allowing to create reactive objects. Given an object, it will return a new object with the same properties but with the ability to react to changes in the original object.
You can install it by using the following command:
npm install @jointly/object-loudifierJust pass any object to the loudify function and it will return a loud object.
import { loudify } from '@jointly/object-loudifier';
const obj = loudify({
a: {
b: {
c: {
d: 1
}
}
}
});
obj.$on('*', (v) => {
console.log('* -->', v);
return;
});
obj.$on('a.*', (v) => {
console.log('a.* -->', v);
return;
});
obj.a.b = 1; // This will cause both console.logs to execute.You can run the tests by using the following command:
npm testJust wrap the object in the loudify function.
The function expects just a single parameter, the object you want to make reactive.
You can then watch for changes in the object by using the $on method.
The function expects three parameters:
- The name of the property you want to watch
- A callback function.
- An
optionsparameter for additional configuration. It is explained later in the document asListener options.
The callback function will be called every time the property changes.
The callback function will be called with the new value of the property as its first parameter.
You can also watch for changes for nested properties by using the dot notation and the wildcards (Explained in the Wildcards section).
You can use wildcards to watch for changes in multiple properties.
For example, if you want to watch for changes in the foo and bar properties, you can use the following code:
const obj = loudify({ foo: 1, bar: 2 });
obj.$on('*', (newValue) => {
console.log(newValue);
});You can also use wildcards for nested properties.
const obj = loudify({ foo: { bar: 1 } }, { allowNesting: true });
obj.$on('foo.*', (newValue) => {
console.log(newValue);
});You can pass a third parameter to the $on method, which is an object with the following properties:
preventBubbling- A boolean indicating if bubbling should be prevented. Default isfalse.once- A boolean indicating if the listener should be called only once. Default isfalse.
obj.$on('foo.bar', (newValue) => {
console.log(newValue);
}, { preventBubbling: false, once: true });By default, the $on method will bubble the changes to the parent object.
For example, if you have the following object:
const obj = loudify({ foo: { bar: 1 } }, { allowNesting: true });And you watch for changes in the foo.bar property and in the foo property, you will get notified in both cases.
obj.$on('foo.bar', (newValue) => {
console.log(newValue);
});
obj.$on('foo', (newValue) => {
console.log(newValue);
});The event emission order is the following:
- The property listeners are called.
- The parent listeners are called.
- The wildcard listeners are called using the following sub-order:
- The property listeners are called.
- The parent listeners are called.
Considering the following example:
const obj = loudify({ foo: { bar: 1 } }, { allowNesting: true });
obj.foo.$on('bar', (newValue) => {
console.log('foo->bar');
});
obj.$on('*', (newValue) => {
console.log('*');
});
obj.$on('foo.*', (newValue) => {
console.log('foo.*');
});
obj.$on('foo.bar', (newValue) => {
console.log('foo.bar');
});The following output will be printed:
foo->bar
foo.bar
foo.*
*The $once method is a shortcut for the $on method with the once option set to true.
You can run the benchmarks by using the following command:
npm run benchmarkTested on a MacBook Pro M1 Max (Retina, 16-inch, 2021) with 32GB of RAM.
The results are in milliseconds.
The results are the average of 100000 runs.
| Benchmark | Without loudify | With loudify | Notes |
|---|---|---|---|
| 1 | 1.73 | 55.72 | Simple object assignment |
| 2 | 1.38 | 144.11 | Object nested assignment |
| 3 | 1.51 | 155.05 | Object nested assignment with wildcard |
| 4 | 1.57 | 244.63 | Object nested assignment with wildcard and multiple listeners |
| 5 | 1.54 | 721.68 | Object assignment with multiple nested properties |
| 6 | 1.82 | 997.00 | Object assignment with multiple nested properties and wildcard |
Even if the benchmarks show a big difference with a native object, yet the library is capable of easily handling tens of thousands of changes per second.
In a real-case scenario, reaching milions of changes per second is possible (As in Benchmark #1).