aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 20:05:50 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 20:05:50 +0100
commit291803c31f829fe0d32bb3207bc11def95a7408c (patch)
treec7d43107d79291b19d8c9eceefbe91c9f9a52acf /sandbox/testAppNevena/Front/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts
parent1fa69862057db4db53cfda5be9c24b4228ef63f7 (diff)
Urađena test aplikacija. Povezan front i back.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts51
1 files changed, 51 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts b/sandbox/testAppNevena/Front/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts
new file mode 100644
index 00000000..6a573f33
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts
@@ -0,0 +1,51 @@
+import type {CodeKeywordDefinition} from "../../types"
+import type {KeywordCxt} from "../../compile/validate"
+import {_, getProperty, Code, Name} from "../../compile/codegen"
+import N from "../../compile/names"
+import {callRef} from "../core/ref"
+
+const def: CodeKeywordDefinition = {
+ keyword: "$dynamicRef",
+ schemaType: "string",
+ code: (cxt) => dynamicRef(cxt, cxt.schema),
+}
+
+export function dynamicRef(cxt: KeywordCxt, ref: string): void {
+ const {gen, keyword, it} = cxt
+ if (ref[0] !== "#") throw new Error(`"${keyword}" only supports hash fragment reference`)
+ const anchor = ref.slice(1)
+ if (it.allErrors) {
+ _dynamicRef()
+ } else {
+ const valid = gen.let("valid", false)
+ _dynamicRef(valid)
+ cxt.ok(valid)
+ }
+
+ function _dynamicRef(valid?: Name): void {
+ // TODO the assumption here is that `recursiveRef: #` always points to the root
+ // of the schema object, which is not correct, because there may be $id that
+ // makes # point to it, and the target schema may not contain dynamic/recursiveAnchor.
+ // Because of that 2 tests in recursiveRef.json fail.
+ // This is a similar problem to #815 (`$id` doesn't alter resolution scope for `{ "$ref": "#" }`).
+ // (This problem is not tested in JSON-Schema-Test-Suite)
+ if (it.schemaEnv.root.dynamicAnchors[anchor]) {
+ const v = gen.let("_v", _`${N.dynamicAnchors}${getProperty(anchor)}`)
+ gen.if(v, _callRef(v, valid), _callRef(it.validateName, valid))
+ } else {
+ _callRef(it.validateName, valid)()
+ }
+ }
+
+ function _callRef(validate: Code, valid?: Name): () => void {
+ return valid
+ ? () =>
+ gen.block(() => {
+ callRef(cxt, validate)
+ gen.let(valid, true)
+ })
+ : () => callRef(cxt, validate)
+ }
+}
+
+export default def