feat(createFormSchema): schema-driven form generation for issue #244#393
Closed
sridhar-3009 wants to merge 4 commits into
Closed
feat(createFormSchema): schema-driven form generation for issue #244#393sridhar-3009 wants to merge 4 commits into
sridhar-3009 wants to merge 4 commits into
Conversation
|
commit: |
Contributor
Author
|
Superseded by #447 which cherry-picks the same change onto a clean branch with all lint errors fixed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #244.
Adds
createFormSchema— a composable that sits on top ofcreateFormandcreateValidationand accepts a typed field-definition object. Returns reactive value refs, per-field v-model bindings, and form-level helpers so consumers can drive a form from a schema without wiring up individualcreateValidationcalls by hand.API at a glance
Each
fields.<name>object exposes:modelValue— current value (reactive getter)onUpdate:modelValue— value settererrorMessages—ShallowRef<string[]>for displaying validation errorsDesign notes
<input>, Paper components, or anything else.schema.values.<name>is typed to thedefaulttype you provide.isValid,isValidating, andsubmitdelegate directly to the underlyingFormContext.createValidation: functions, string aliases, and standard schemas (Zod, Valibot, ArkType).Test plan
packages/0/src/composables/createFormSchema/index.test.ts— 12 unit tests covering initial state, field bindings, submit/validation (pass, fail, multi-field, multi-rule), and reset.pnpm typecheckpassespnpm test:runpasses (all 6257 tests)pnpm repo:check(knip + sherif) passes