Package Exports
- simple-object-query
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (simple-object-query) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
simple-object-query
Really simple lib with no need to learn some string query language.
I'll use this source object for all examples
var source = {
data: [
{
item: {
name: 'select',
options: {
length: 4,
property: {
name: 'input'
}
}
}
},
{
item: {
name: 'group',
options: {
length: 2,
property: {
name: 'input'
}
}
}
}
]
};find
var find = require('simple-object-query').find;
find(source, {
'options.property': 'input'
});
/*
[
{name: 'select', options: {...}},
{name: 'group', options: {...}}
]
*/
find(source, {
'name': 'group',
'options.property': 'input'
});
/*
[
{name: 'group', options: {...}}
]
*/
find(source, {
'options.length': /\d+/
});
/*
[
{name: 'select', options: {...}},
{name: 'group', options: {...}}
]
*/search
Difference between find is that it takes parameters in object and returns extended object with parent object and field string.
var search = require('simple-object-query').search;
search({
source: source,
query: {
'options.property': 'input'
}
});
/*
[
{
parent: {item: {...}},
field: 'item',
target: {name: 'select', options: {...}}
},
{
parent: {item: {...}},
field: 'item',
target: {name: 'group', options: {...}}
}
]
*/
search({
source: source,
query: {
'length': 2
}
});
/*
[
{
parent: {name: 'group', options: {...}},
field: 'options',
target: {length: 2, property: {...}}
}
]
*/replace
This method will replace or remove (if callback will return undefined) target object.
var replace = require('simple-object-query').replace;
replace(source, {length: /\d+/}, function (target, parent, field) {
return target.length > 3 ? 'test' : undefined;
});
console.log(source.data[0].item.options); // 'test'
console.log(source.data[1].item.hasOwnProperty('options')); // falseOff course if you don't want to remove target just return itself.
Instead of callback you can pass some value.
replace(source, {length: /\d+/}, 'test');
console.log(source.data[0].item.options); // 'test'
console.log(source.data[2].item.options); // 'test'Or if you will not pass anything it will remove all targets
replace(source, {length: /\d+/});
console.log(source.data[0].item.hasOwnProperty('options')); // false
console.log(source.data[1].item.hasOwnProperty('options')); // falseIf your target is in array, it will be removed correctly
replace(source, {name: ''select});
console.log(source.data.length); // 1
console.log(source.data[0].item.name); // 'group'