Zodactive Form aims to provide very simple form reactivity based on the Zod validation library. This package wraps @zodactive-form/core to work with Svelte's reactivity and provides simple example components.
This is not an official Zod library. This is a personal project which is mainly meant to be used by my other projects. However, you are free to use it if you find it useful.
In addition, this library is under development and not all functionality from zod is supported yet.
This Svelte library is a wrapper on top of @zodactive-form/core and provides components to quickly get started with reactive forms validated with Zod.
It provides the following:
useForm(zodSchema)
: A wrapper around useZodactiveForm()
which uses writable()
for reactivity;ZForm
: A simple form component which emits on:submit
only when submitting while the form is valid;ZFormField
: A simple wrapper around <input>
which is connected to the useForm()
and will reactively show errors;@zodactive-form/vue has the following dependencies:
As a simple npm package, it can be installed using your favorite package manager:
npm install @zodactive-form/svelte
First, create a Zod schema, then pass it to useForm()
to generate the reactive context. You can then use
this reactive context however which you like:
<script lang="ts">
import { z } from 'zod';
import { useForm } from '@zodactive-form/svelte';
const userSchema = z.object({
username: z.string().min(3),
password: z.string().min(3),
confirmPassword: z.string().min(3),
}).refine(({ password, confirmPassword }) => password === confirmPassword);
const {
form, // A writable() containing the whole form, including errors
formErrors, // A writable() containing the errors of the form that do not belong to a specific field
valid, // A writable() which is either true or false
validate, // A function which will check if the values in the form are valid
assign, // A helper function to assign a value to a specific field of the form
getFieldFromPath, // A helper function to get the field data from the form structure
toJson, // A helper function to retrieve the data without reactivity or errors
clearErrors, // A helper function which removes the error state (but `valid` would still be false)
clear, // A helper function which resets all the values in the form to the initial values
} = useForm(userSchema);
</script>
In addition to managing a reactive form structure using svelte, @zodactive-form/svelte provides some very basic form component which use that reactivity.
NOTE: The form
attribute of ZForm
is not the form
ref, but the whole object returned by useForm()
.
The names are a little confusing and will most probably be changed in the future.
<script lang="ts">
import { z } from 'zod';
import { useForm, ZForm, ZFormField } from '@zodactive-form/svelte';
const userSchema = z.object({
username: z.string().min(3),
password: z.string().min(3),
confirmPassword: z.string().min(3),
}).refine(({ password, confirmPassword }) => password === confirmPassword);
const form = useForm(userSchema);
const onSubmit = () => {
const data = form.toJson();
// Form is valid, ready to fetch() with data!
}
</script>
<ZForm :form="form" on:submit="onSubmit">
<z-form-field label="Username" path="username" />
<z-form-field label="Password" path="password" />
<z-form-field label="Confirm Password" path="confirmPassword" />
</ZForm>
The provided <ZForm>
is mostly equivalent to <form><slot /></form>
;
The provided <ZFormField>
has the following default output:
<template>
<label>
<span>{{ label }}</span>
<input {value} on:input={(ev) => assign(props.path, ev.target.value)} />
{#each errors as error}
<p>{{ error }}</p>
{/each}
</label>
</template>
form.form
, the writable()
, contains a structure with both values and errors.
The nested values are NOT REACTIVE. To update the form programmatically it is necessary to set form.form.value
directly. This is what assign()
does, and it is the recommended way to update the form.valid
property based on
the initial data provided to the form;validate()
, all errors are removed. If errors need to be removed at a different time,
please use clearErrors()
;submit
event of ZForm
internally calls event.preventDefault()
. In addition, it will only be emitted
when the form is valid. If there are errors, it will not be emitted.This project is licensed under the MIT License - see the LICENSE file for details.