npm i @sjsf/form@next @sjsf/ajv8-validator@next ajv@8 @sjsf/basic-theme@next
yarn add @sjsf/form@next @sjsf/ajv8-validator@next ajv@8 @sjsf/basic-theme@next
pnpm add @sjsf/form@next @sjsf/ajv8-validator@next ajv@8 @sjsf/basic-theme@next
bun add @sjsf/form@next @sjsf/ajv8-validator@next ajv@8 @sjsf/basic-theme@next
Usage
<script lang="ts"> import { createForm, BasicForm } from "@sjsf/form"; import { resolver } from "@sjsf/form/resolvers/basic"; import { translation } from "@sjsf/form/translations/en"; import { theme } from "@sjsf/basic-theme"; import "@sjsf/basic-theme/extra-widgets/textarea-include";
import { schema, uiSchema, initialValue } from "./_schema"; import { createValidator } from "./_validator"; import { onSubmit } from "./_on-submit";
const idPrefix = "basic"; const validator = createValidator(idPrefix); const form = createForm({ idPrefix, validator, theme, resolver, initialValue, schema, uiSchema, translation, onSubmit, });</script>
<BasicForm {form} />
<pre>{JSON.stringify(form.value, null, 2)}</pre>
import type { Schema, UiSchemaRoot } from "@sjsf/form";
export const schema: Schema = { title: "A registration form", description: "A simple form example.", type: "object", required: ["firstName", "lastName"], properties: { firstName: { type: "string", title: "First name", default: "Chuck", }, lastName: { type: "string", title: "Last name", }, age: { type: "integer", title: "Age", }, bio: { type: "string", title: "Bio", }, password: { type: "string", title: "Password", minLength: 3, }, telephone: { type: "string", title: "Telephone", minLength: 10, }, star: { type: "boolean", title: "Star", }, },};
export const uiSchema: UiSchemaRoot = { firstName: { "ui:options": { text: { autocomplete: "family-name", }, flowbiteText: { autocomplete: "family-name", }, }, }, lastName: { "ui:options": { text: { autocomplete: "given-name", }, flowbiteText: { autocomplete: "given-name", }, }, }, age: { "ui:options": { title: "Age of person", description: "(earthian year)", }, }, bio: { "ui:components": { textWidget: "textareaWidget", }, }, password: { "ui:options": { help: "Hint: Make it strong!", text: { type: "password", }, flowbiteText: { type: "password", }, }, }, telephone: { "ui:options": { text: { type: "tel", }, flowbiteText: { type: "tel", }, }, }, star: { "ui:options": { title: "Have you starred this project yet?", }, },};
export const initialValue = { lastName: "Norris", age: 75, bio: "Roundhouse kicking asses since 1940", password: "noneed", telephone: "1-800-KICKASS",};
import type { ErrorObject } from "ajv";import { createFormValidator } from "@sjsf/ajv8-validator";import { isSchemaObjectValue } from "@sjsf/form/core";import { pathToId, type FormValueValidator } from "@sjsf/form";
class StarError {}
export function createValidator(idPrefix: string) { const validator = createFormValidator({ idPrefix }); return { ...validator, validateFormValue(rootSchema, formValue) { const errors = validator.validateFormValue(rootSchema, formValue); return isSchemaObjectValue(formValue) && !formValue["star"] ? [ ...errors, { instanceId: pathToId(["star"], { idPrefix }), propertyTitle: "Star", message: "That's okay, but I would appreciate your support!", error: new StarError(), }, ] : errors; }, } satisfies FormValueValidator<ErrorObject | StarError>;}