mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
138 lines
4.1 KiB
TypeScript
138 lines
4.1 KiB
TypeScript
import { type Schema as JsonSchema, Validator } from "@cfworker/json-schema";
|
|
import { Default, FromSchema, type Static, Type } from "core/utils";
|
|
import type { EntityManager } from "data";
|
|
import { TransformPersistFailedException } from "../errors";
|
|
import { Field, type TActionContext, type TRenderContext, baseFieldConfigSchema } from "./Field";
|
|
|
|
export const jsonSchemaFieldConfigSchema = Type.Composite(
|
|
[
|
|
Type.Object({
|
|
schema: Type.Object({}, { default: {} }),
|
|
ui_schema: Type.Optional(Type.Object({})),
|
|
default_from_schema: Type.Optional(Type.Boolean())
|
|
}),
|
|
baseFieldConfigSchema
|
|
],
|
|
{
|
|
additionalProperties: false
|
|
}
|
|
);
|
|
|
|
export type JsonSchemaFieldConfig = Static<typeof jsonSchemaFieldConfigSchema>;
|
|
|
|
export class JsonSchemaField<
|
|
Required extends true | false = false,
|
|
TypeOverride = object
|
|
> extends Field<JsonSchemaFieldConfig, TypeOverride, Required> {
|
|
override readonly type = "jsonschema";
|
|
private validator: Validator;
|
|
|
|
constructor(name: string, config: Partial<JsonSchemaFieldConfig>) {
|
|
super(name, config);
|
|
this.validator = new Validator(this.getJsonSchema());
|
|
}
|
|
|
|
protected getSchema() {
|
|
return jsonSchemaFieldConfigSchema;
|
|
}
|
|
|
|
override schema() {
|
|
return this.useSchemaHelper("text");
|
|
}
|
|
|
|
getJsonSchema(): JsonSchema {
|
|
return this.config?.schema as JsonSchema;
|
|
}
|
|
|
|
getJsonUiSchema() {
|
|
return this.config.ui_schema ?? {};
|
|
}
|
|
|
|
override isValid(value: any, context: TActionContext = "update"): boolean {
|
|
const parentValid = super.isValid(value, context);
|
|
//console.log("jsonSchemaField:isValid", this.getJsonSchema(), this.name, value, parentValid);
|
|
|
|
if (parentValid) {
|
|
// already checked in parent
|
|
if (!this.isRequired() && (!value || typeof value !== "object")) {
|
|
//console.log("jsonschema:valid: not checking", this.name, value, context);
|
|
return true;
|
|
}
|
|
|
|
const result = this.validator.validate(value);
|
|
//console.log("jsonschema:errors", this.name, result.errors);
|
|
return result.valid;
|
|
} else {
|
|
//console.log("jsonschema:invalid", this.name, value, context);
|
|
}
|
|
//console.log("jsonschema:invalid:fromParent", this.name, value, context);
|
|
|
|
return false;
|
|
}
|
|
|
|
override getValue(value: any, context: TRenderContext): any {
|
|
switch (context) {
|
|
case "form":
|
|
if (value === null) return "";
|
|
return value;
|
|
case "table":
|
|
if (value === null) return null;
|
|
return value;
|
|
case "submit":
|
|
break;
|
|
}
|
|
|
|
return value;
|
|
}
|
|
|
|
override transformRetrieve(value: any): any {
|
|
const val = super.transformRetrieve(value);
|
|
|
|
if (val === null) {
|
|
if (this.config.default_from_schema) {
|
|
try {
|
|
return Default(FromSchema(this.getJsonSchema()), {});
|
|
} catch (e) {
|
|
//console.error("jsonschema:transformRetrieve", e);
|
|
return null;
|
|
}
|
|
} else if (this.hasDefault()) {
|
|
return this.getDefault();
|
|
}
|
|
}
|
|
|
|
return val;
|
|
}
|
|
|
|
override async transformPersist(
|
|
_value: any,
|
|
em: EntityManager<any>,
|
|
context: TActionContext
|
|
): Promise<string | undefined> {
|
|
const value = await super.transformPersist(_value, em, context);
|
|
if (this.nullish(value)) return value;
|
|
//console.log("jsonschema:transformPersist", this.name, _value, context);
|
|
|
|
if (!this.isValid(value)) {
|
|
//console.error("jsonschema:transformPersist:invalid", this.name, value);
|
|
throw new TransformPersistFailedException(this.name, value);
|
|
} else {
|
|
//console.log("jsonschema:transformPersist:valid", this.name, value);
|
|
}
|
|
|
|
if (!value || typeof value !== "object") return this.getDefault();
|
|
|
|
return JSON.stringify(value);
|
|
}
|
|
|
|
override toJsonSchema() {
|
|
const schema = this.getJsonSchema() ?? { type: "object" };
|
|
return this.toSchemaWrapIfRequired(
|
|
FromSchema({
|
|
default: this.getDefault(),
|
|
...schema
|
|
})
|
|
);
|
|
}
|
|
}
|