-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
83 lines (73 loc) · 1.9 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import _ from 'underscore';
import {
Errors,
EvalVisitor,
EvalResult,
identifier,
integer,
parser,
quoted_string_double,
quoted_string_single
} from './lib';
export * from './lib';
export default { eval: evaluate, autocomplete };
const evalVisitor = new EvalVisitor();
function evaluate(jsonpath: string, ...objects: Object[]): EvalResult[] | Errors {
if (!jsonpath || !objects || !objects.length) {
return [];
}
let res = parser.parse(jsonpath);
let cst = res.cst;
if (!cst) {
return res;
}
return evalVisitor.visit(cst, objects.map(obj => ({ input: obj, matches: [{ path: [], value: obj }] })));
}
let autocompleteEvalTokens = [
identifier.name,
integer.name,
quoted_string_double.name,
quoted_string_single.name
];
function autocomplete(jsonpath: string, ...objects: Object[]): Set<string | number> | Errors {
if (!jsonpath || !objects || !objects.length) {
return new Set();
}
let res = parser.autocomplete(jsonpath);
if (res.options && _.all(res.options, opt => autocompleteEvalTokens.indexOf(opt.nextTokenType.name) === -1)) {
return new Set(
res.options.filter(opt => !!opt.nextTokenType.LABEL)
.map(opt => opt.nextTokenType.LABEL!)
);
}
let cst = res.cst;
let matches: (string | number)[] = [];
if (cst) {
let quote = res.options && _.any(res.options, opt => opt.nextTokenType.name === quoted_string_single.name);
matches = _.flatten(
evalVisitor.visit(
cst,
objects.map(obj => ({ input: obj, matches: [{ path: [], value: obj }] }))
)
.map(r => r.matches)
)
.filter(m => m.path.length > 1)
.map(m => {
let last = _.last(m.path)!;
if (!quote || typeof(last) === 'number') {
return last;
}
return `'${last}'`;
});
}
if (matches.length) {
return new Set(matches);
}
if (res.options) {
return new Set(
res.options.filter(opt => !!opt.nextTokenType.LABEL)
.map(opt => opt.nextTokenType.LABEL!)
);
}
return res;
}