Last change
on this file since 76712b2 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
846 bytes
|
Line | |
---|
1 | import type {CodeKeywordDefinition, KeywordErrorDefinition} from "../../types"
|
---|
2 | import type {KeywordCxt} from "../../compile/validate"
|
---|
3 | import {_, str, operators} from "../../compile/codegen"
|
---|
4 |
|
---|
5 | const error: KeywordErrorDefinition = {
|
---|
6 | message({keyword, schemaCode}) {
|
---|
7 | const comp = keyword === "maxProperties" ? "more" : "fewer"
|
---|
8 | return str`must NOT have ${comp} than ${schemaCode} items`
|
---|
9 | },
|
---|
10 | params: ({schemaCode}) => _`{limit: ${schemaCode}}`,
|
---|
11 | }
|
---|
12 |
|
---|
13 | const def: CodeKeywordDefinition = {
|
---|
14 | keyword: ["maxProperties", "minProperties"],
|
---|
15 | type: "object",
|
---|
16 | schemaType: "number",
|
---|
17 | $data: true,
|
---|
18 | error,
|
---|
19 | code(cxt: KeywordCxt) {
|
---|
20 | const {keyword, data, schemaCode} = cxt
|
---|
21 | const op = keyword === "maxProperties" ? operators.GT : operators.LT
|
---|
22 | cxt.fail$data(_`Object.keys(${data}).length ${op} ${schemaCode}`)
|
---|
23 | },
|
---|
24 | }
|
---|
25 |
|
---|
26 | export default def
|
---|
Note:
See
TracBrowser
for help on using the repository browser.