array-sync
v4.1.0
Published
Data synchronisation module for Node.js
Downloads
1,070
Maintainers
Readme
array-sync
array-sync is a complete data synchronization module for Node.js, highly customizable. It will accept a source array, an updated version of that source array and provide an object containing the keys remove
, unchanged
, changed
and create
.
array-sync can be used to simplify CRUD operations resulting from bulk array manipulations. For example, if you provide a list of clients for your users and provide them the ability to create new clients, edit current clients and remove old clients. Most data synchronization goes through the same process, and array-sync allows you to customize the process by providing a comparator
function.
Install
$ npm install array-sync
API
var arraySync = require('array-sync');
arraySync(source, updated, [options])
Takes a source array, and compares it against an updated version of the source array to determine what needs to be removed, created and what hasn't changed. It returns an object:
{
remove: [],
unchanged: [],
create: []
}
By default array-sync will compare using whole-object strict equality (i.e. assert.deepStrictEqual
) on objects or strict equality on other data types (i.e. ===
). You can customize this by providing a key and a comparator function in the options
object.
source
The source
array. It must be provided. array-sync will throw
if it isn't provided.
updated
An updated version of the source
array. It also must be provided (however, it can be empty). array-sync will throw
if it isn't provided.
options
array-sync will accept an optional options
object.
key
A string
which represents the key of an object to compare against. By default array-sync provides whole-object strict equality:
const result = arraySync([
{ type: 'node', id: 1, label: 'one' },
{ type: 'node', id: 2, label: 'two' },
{ type: 'node', id: 3, label: 'three' }
], [
{ type: 'node', id: 1, label: 'one' },
{ type: 'node', id: 2, label: 'Two' },
{ type: 'node', id: 3, label: 'three' }
]);
// result = {
// unchanged: [{ type: 'node', id: 1, label: 'one' }, { type: 'node', id: 3, label: 'three' }],
// create: [{ type: 'node', id: 2, label: 'Two' }],
// remove: [{ type: 'node', id: 2, label: 'two' }]
// }
In this mode it is unable to determine what has changed from what is new. By providing a key
, array-sync is able to determine if something has changed:
const result = arraySync([
{ type: 'node', id: 1, label: 'one' },
{ type: 'node', id: 2, label: 'two' },
{ type: 'node', id: 3, label: 'three' }
], [
{ type: 'node', id: 1, label: 'one' },
{ type: 'node', id: 2, label: 'Two' },
{ type: 'node', id: 3, label: 'three' }
], { key: 'id' });
// result = {
// unchanged: [1, 3],
// changed: [{ type: 'node', id: 2, label: 'Two' }]
// create: [],
// remove: []
// }
If a key
is provided array-sync adds another key to the object it returns (changed
). Also only the value of the key
is returned in unchanged
and remove
, whereas the whole object is returned in changed
and create
. For database stored information (with an id
), using a key
is the more likely scenario and use case.
keyOnly
Defaults to true
, and is only relevant when a key
is provided. By default the remove
and unchanged
results only provide the id (the field specificed by the key
option), not the entire object. Setting keyOnly
to false
will ensure the entire object is returned rather than just the id.
comparator
A function
to replace the default comparator
function. The comparator
function will be executed with two arguments (objOne, objTwo)
. It should return true
if the object is the same, otherwise it should return false
. The default comparator is:
function comparator (objOne, objTwo) {
// Compare an object to an object.
if (typeof objOne === 'object') {
try {
assert.deepStrictEqual(objOne, objTwo);
} catch (e) {
return false;
}
return true;
}
// Compare anything that is not (typeof objOne) === 'object' using the simple strict equals.
return objOne === objTwo;
};
It will assert.deepStrictEqual
compare objects, and ===
strict equals compare everything else. You can provide a custom comparator and do whatever you need to. Be aware that the comparator can be in the following two instances:
- To compare keys.
- To compare values of keys.
The default comparator provides support for this scenario, and so will any custom comparator (don't just assume you'll be comparing objects or whatever type of data the source
and update
arrays hold).
Change log
Review the change log for all changes.
Contributing
Contributors are welcomed. You can read more about contributing to array-sync here.