@snups/rjsf-validator-ajv8
Version:
The ajv-8 based validator for @snups/rjsf-core
49 lines (44 loc) • 1.92 kB
text/typescript
import standaloneCode from 'ajv/dist/standalone';
import { RJSFSchema, StrictRJSFSchema, schemaParser } from '@snups/rjsf-utils';
import createAjvInstance from './createAjvInstance';
import { CustomValidatorOptionsType } from './types';
/** The function used to compile a schema into javascript code in the form that allows it to be used as a precompiled
* validator. The main reasons for using a precompiled validator is reducing code size, improving validation speed and,
* most importantly, avoiding dynamic code compilation when prohibited by a browser's Content Security Policy. For more
* information about AJV code compilation see: https://ajv.js.org/standalone.html
*
* @param schema - The schema to be compiled into a set of precompiled validators functions
* @param [options={}] - The set of `CustomValidatorOptionsType` information used to alter the AJV validator used for
* compiling the schema. They are the same options that are passed to the `customizeValidator()` function in
* order to modify the behavior of the regular AJV-based validator.
*/
export function compileSchemaValidatorsCode<S extends StrictRJSFSchema = RJSFSchema>(
schema: S,
options: CustomValidatorOptionsType = {},
) {
const schemaMaps = schemaParser(schema);
const schemas = Object.values(schemaMaps);
const {
additionalMetaSchemas,
customFormats,
ajvOptionsOverrides = {},
ajvFormatOptions,
AjvClass,
useAjvErrors,
} = options;
// Allow users to turn off the `lines: true` feature in their own overrides, but NOT the `source: true`
const compileOptions = {
...ajvOptionsOverrides,
code: { lines: true, ...ajvOptionsOverrides.code, source: true },
schemas,
};
const ajv = createAjvInstance(
additionalMetaSchemas,
customFormats,
compileOptions,
ajvFormatOptions,
AjvClass,
useAjvErrors,
);
return standaloneCode(ajv);
}