2023-10-03 11:14:36 +08:00
|
|
|
import type {CodeKeywordDefinition, ErrorNoParams, AnySchema} from "../../types"
|
|
|
|
import type KeywordCxt from "../../compile/context"
|
|
|
|
import {alwaysValidSchema} from "../../compile/util"
|
|
|
|
|
|
|
|
export type NotKeywordError = ErrorNoParams<"not", AnySchema>
|
|
|
|
|
|
|
|
const def: CodeKeywordDefinition = {
|
|
|
|
keyword: "not",
|
|
|
|
schemaType: ["object", "boolean"],
|
|
|
|
trackErrors: true,
|
|
|
|
code(cxt: KeywordCxt) {
|
|
|
|
const {gen, schema, it} = cxt
|
|
|
|
if (alwaysValidSchema(it, schema)) {
|
|
|
|
cxt.fail()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const valid = gen.name("valid")
|
|
|
|
cxt.subschema(
|
|
|
|
{
|
|
|
|
keyword: "not",
|
|
|
|
compositeRule: true,
|
|
|
|
createErrors: false,
|
|
|
|
allErrors: false,
|
|
|
|
},
|
|
|
|
valid
|
|
|
|
)
|
|
|
|
|
|
|
|
cxt.result(
|
|
|
|
valid,
|
|
|
|
() => cxt.error(),
|
|
|
|
() => cxt.reset()
|
|
|
|
)
|
|
|
|
},
|
|
|
|
error: {
|
|
|
|
message: "should NOT be valid",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export default def
|