chore(#197): ran prettier on packages/bruno-query

This commit is contained in:
Anoop M D 2023-09-22 00:43:31 +05:30
parent 116e050987
commit f68eacfe0d
2 changed files with 52 additions and 52 deletions

View File

@ -6,10 +6,10 @@ function normalize(value: any) {
const values = [] as any[];
value.forEach(item => {
value.forEach((item) => {
const value = normalize(item);
if (value != null) {
values.push(...Array.isArray(value) ? value : [value]);
values.push(...(Array.isArray(value) ? value : [value]));
}
});
@ -31,7 +31,7 @@ function getValue(source: any, prop: string, deep = false): any {
let value;
if (Array.isArray(source)) {
value = source.map(item => getValue(item, prop, deep));
value = source.map((item) => getValue(item, prop, deep));
} else {
value = source[prop];
if (deep) {
@ -115,33 +115,34 @@ export function get(source: any, path: string, ...fns: PredicateOrMapper[]) {
const paths = path
.replace(/\s+/g, '')
.split(/(\.{1,2}|\[\?\]|\[\d+\])/g) // ["..", "items", "[?]", ".", "amount", "[0]" ]
.filter(s => s.length > 0)
.map(str => {
.filter((s) => s.length > 0)
.map((str) => {
str = str.replace(/\[|\]/g, '');
const index = parseInt(str);
return isNaN(index) ? str : index;
});
let index = 0, lookbehind = '' as string | number, funIndex = 0;
let index = 0,
lookbehind = '' as string | number,
funIndex = 0;
while (source != null && index < paths.length) {
const token = paths[index++];
switch (true) {
case token === "..":
case token === ".":
case token === '..':
case token === '.':
break;
case token === "?":
case token === '?':
const fun = fns[funIndex++];
if (fun == null)
throw new Error(`missing function for ${lookbehind}`);
if (fun == null) throw new Error(`missing function for ${lookbehind}`);
source = filterOrMap(source, fun);
break;
case typeof token === 'number':
source = normalize(source[token]);
break;
default:
source = getValue(source, token as string, lookbehind === "..");
source = getValue(source, token as string, lookbehind === '..');
}
lookbehind = token;

View File

@ -5,57 +5,56 @@ import { get } from '../src/index';
const data = {
customer: {
address: {
city: "bangalore"
city: 'bangalore'
},
orders: [
{
id: "order-1",
id: 'order-1',
items: [
{ id: 1, amount: 10 },
{ id: 2, amount: 20 },
{ id: 2, amount: 20 }
]
},
{
id: "order-2",
id: 'order-2',
items: [
{ id: 3, amount: 30, },
{ id: 3, amount: 30 },
{ id: 4, amount: 40 }
]
}
],
},
]
}
};
describe("get", () => {
describe('get', () => {
it.each([
["customer.address.city", "bangalore"],
["customer.orders.items.amount", [10, 20, 30, 40]],
["customer.orders.items.amount[0]", 10],
["..items.amount", [10, 20, 30, 40]],
["..amount", [10, 20, 30, 40]],
["..items.amount[0]", 10],
["..items[0].amount", 10],
["..items[5].amount", undefined], // invalid index
["..id", ["order-1", 1, 2, "order-2", 3, 4]], // all ids
["customer.orders.foo", undefined],
["..customer.foo", undefined],
["..address", [{ city: "bangalore" }]], // .. will return array
["..address[0]", { city: "bangalore" }],
])("%s should be %j", (expr, result) => {
['customer.address.city', 'bangalore'],
['customer.orders.items.amount', [10, 20, 30, 40]],
['customer.orders.items.amount[0]', 10],
['..items.amount', [10, 20, 30, 40]],
['..amount', [10, 20, 30, 40]],
['..items.amount[0]', 10],
['..items[0].amount', 10],
['..items[5].amount', undefined], // invalid index
['..id', ['order-1', 1, 2, 'order-2', 3, 4]], // all ids
['customer.orders.foo', undefined],
['..customer.foo', undefined],
['..address', [{ city: 'bangalore' }]], // .. will return array
['..address[0]', { city: 'bangalore' }]
])('%s should be %j', (expr, result) => {
expect(get(data, expr)).toEqual(result);
});
// filter and map
it.each([
["..items[?].amount", [40], (i: any) => i.amount > 30], // [?] filter
["..items[?].amount", [40], { id: 4, amount: 40 }], // object filter
["..items[?].amount", undefined, { id: 5, amount: 40 }],
["..items..amount[?][0]", 40, (amt: number) => amt > 30],
["..items..amount[0][?]", undefined, (amt: number) => amt > 30], // filter on single value
["..items..amount[?]", [11, 21, 31, 41], (amt: number) => amt + 1], // [?] mapper
["..items..amount[0][?]", 11, (amt: number) => amt + 1], // [?] map on single value
])("%s should be %j for %s", (expr, result, filter) => {
['..items[?].amount', [40], (i: any) => i.amount > 30], // [?] filter
['..items[?].amount', [40], { id: 4, amount: 40 }], // object filter
['..items[?].amount', undefined, { id: 5, amount: 40 }],
['..items..amount[?][0]', 40, (amt: number) => amt > 30],
['..items..amount[0][?]', undefined, (amt: number) => amt > 30], // filter on single value
['..items..amount[?]', [11, 21, 31, 41], (amt: number) => amt + 1], // [?] mapper
['..items..amount[0][?]', 11, (amt: number) => amt + 1] // [?] map on single value
])('%s should be %j for %s', (expr, result, filter) => {
expect(get(data, expr, filter)).toEqual(result);
});
});