UNPKG

961 BPlain TextView Raw
1import type {CodeKeywordDefinition, ErrorObject, KeywordErrorDefinition} from "../../types"
2import type {KeywordCxt} from "../../compile/validate"
3import {usePattern} from "../code"
4import {_, str} from "../../compile/codegen"
5
6export type PatternError = ErrorObject<"pattern", {pattern: string}, string | {$data: string}>
7
8const error: KeywordErrorDefinition = {
9 message: ({schemaCode}) => str`must match pattern "${schemaCode}"`,
10 params: ({schemaCode}) => _`{pattern: ${schemaCode}}`,
11}
12
13const def: CodeKeywordDefinition = {
14 keyword: "pattern",
15 type: "string",
16 schemaType: "string",
17 $data: true,
18 error,
19 code(cxt: KeywordCxt) {
20 const {data, $data, schema, schemaCode, it} = cxt
21 // TODO regexp should be wrapped in try/catchs
22 const u = it.opts.unicodeRegExp ? "u" : ""
23 const regExp = $data ? _`(new RegExp(${schemaCode}, ${u}))` : usePattern(cxt, schema)
24 cxt.fail$data(_`!${regExp}.test(${data})`)
25 },
26}
27
28export default def