Validators
If you use third party libraries for validation you might have found yourself needing to transform the output from said validation library to the form library you're using (unless the form library supports it natively or provides its own built-in alternative). In order to not reinvent the wheel, and to make life easier for you, we provide some official validators
which are, basically, adapters for popular validation libraries.
If a validation library you use is not supported, feel free to open an issue, we would like to support the most used ones! You may also build your own validation package.
Using Yup
Yup is a really popular validation library. For this reason we've created @felte/validator-yup
. An official package to handle validation with Yup. To use it you'll need both @felte/validator-yup
and yup
.
npm install --save @felte/validator-yup yup
# Or, if you use yarn
yarn add @felte/validator-yup yup
Its usage would look something like:
import { validator } from '@felte/validator-yup';
import * as yup from 'yup';
const schema = yup.object({
email: yup.string().email().required(),
password: yup.string().required(),
});
const felteForm = document.querySelector('felte-form');
felteForm.configuration = {
// ...
extend: validator({ schema }), // OR `extend: [validator({ schema })],`
// ...
};
Warnings
Optionally, you can tell this package to assign the results of your validations to your warnings
store by setting the level
property of the validator function to warning
. It's error
by default:
import { validator } from '@felte/validator-yup';
import * as yup from 'yup';
const validateSchema = yup.object({
email: yup.string().email().required(),
password: yup.string().required(),
});
// We only warn if the user has already started typing a value
const warnSchema = yup.object({
password: yup
.string()
.test('is-secure', 'password is not secure', (value) =>
value ? value.length > 8 : true
),
});
const felteForm = document.querySelector('felte-form');
felteForm.configuration = {
// ...
extend: [
validator({ schema }),
validator({ schema: warnSchema, level: 'warning' }),
],
// ...
};
Typescript
Yup lets you infer the type of your schema using yup.InferType
, you can use this to avoid creating a type for your data.
import type { ValidatorConfig } from '@felte/validator-yup';
import * as yup from 'yup';
const schema = yup.object({
email: yup.string().email().required(),
password: yup.string().required(),
});
const felteForm = document.querySelector('felte-form') as HTMLFelteFormElement<yup.InferType<typeof schema>>;
Using Zod
Zod is a "TypeScript-first schema declaration and validation library", alternative to Yup with a similar API. We've also created @felte/validator-zod
as an official package to handle validation with Zod. To use it you'll need both @felte/validator-zod
and zod
installed.
npm install --save @felte/validator-zod zod
# Or, if you use yarn
yarn add @felte/validator-zod zod
Its usage would look something like:
import { validator } from '@felte/validator-zod';
import * as zod from 'zod';
const schema = zod.object({
email: zod.string().email().nonempty(),
password: zod.string().nonempty(),
});
const felteForm = document.querySelector('felte-form');
felteForm.configuration = {
// ...
extend: validator({ schema }), // OR `extend: [validator],`
// ...
};
Warnings
Optionally, you can tell this package to assign the results of your validations to your warnings
store by setting the level
property of the validator function to warning
. It's error
by default:
import { validator } from '@felte/validator-zod';
import { z } from 'zod';
const schema = z.object({
email: z.string().email().nonempty(),
password: z.string().nonempty(),
});
// We only warn if the user has started typing a value
const warnSchema = zod.object({
password: zod
.string()
.refine((value) => (value ? value.length > 8 : true), {
message: 'Password is not secure',
}),
});
const felteForm = document.querySelector('felte-form');
felteForm.configuration = {
// ...
extend: [
validator({ schema }),
validator({ schema: warnSchema, level: 'warning' }),
],
// ...
};
Typescript
Zod lets you infer the type of your schema using z.infer
. You can use this to avoid needing to create a type for your form's data.
import { z } from 'zod';
const schema = z.object({
email: z.string().email().nonempty(),
password: z.string().nonempty(),
});
const felteForm = document.querySelector('felte-form') as HTMLFelteFormElement<z.infer<typeof schema>>;
Using Superstruct
Superstruct is another popular validation library that follows a more functional style. We've created @felte/validator-superstruct
as an official package to handle validation with Superstruct. To use it you'll need both @felte/validator-superstruct
and superstruct
installed.
npm install --save @felte/validator-superstruct superstruct
# Or, if you use yarn
yarn add @felte/validator-superstruct superstruct
Its usage would look something like:
import { validator } from '@felte/validator-superstruct';
import { object, string, size } from 'superstruct';
const struct = object({
email: size(string(), 1, Infinity),
password: size(string(), 1, Infinity),
});
const felteForm = document.querySelector('felte-form');
felteForm.configuration = {
// ...
extend: validator(({ struct })), // or `extend: [validator({ struct })],`
// ...
};
The options of validator
also accept a transform
property that is a function that will receive each failure
from Superstruct, you can check the failure there and return an appropriate custom error message.
import { validator } from '@felte/validator-superstruct';
const struct = object({ /* ... */ });
const validator = validator({
struct,
transform: (value) => value.type === 'string' ? 'Must not be empty' : 'Not valid'
});
Warnings
Optionally, you can tell this package to assign the results of your validations to your warnings
store by setting the level
property of the validator function to warning
. It's error
by default:
import { validator } from '@felte/validator-superstruct';
import { object, string, size, optional } from 'superstruct';
const validateStruct = object({
email: size(string(), 1, Infinity),
password: size(string(), 1, Infinity),
});
// We only show the warning if the user has started to type a value
const Secure = refine(string(), 'secure', (value) =>
value ? value.length > 8 : true
);
const warnStruct = object({
password: Secure,
});
const felteForm = document.querySelector('felte-form');
felteForm.configuration = {
// ...
extend: [
validator({ struct: validateStruct }),
validator({ struct: warnStruct, level: 'warning' }),
],
// ...
};
Typescript
Superstruct lets you infer the type of your struct by using Infer
. This allows you to avoid creating a type for your form's data.
import type { Infer } from 'superstruct';
const struct = object({
email: size(string(), 1, Infinity),
password: size(string(), 1, Infinity),
});
const felteForm = document.querySelector('felte-form') as HTMLFelteFormElement<Infer<typeof schema>>;
Using Vest
Vest is a validations library for JS apps that derives its syntax from modern JS unit testing frameworks such as Mocha or Jest. We've also created @felte/validator-vest
as an official package to handle validation with Vest. To use it you'll need both @felte/validator-vest
and vest
installed.
npm install --save @felte/validator-vest vest
# Or, if you use yarn
yarn add @felte/validator-vest vest
Its usage would look something like:
import { validator } from '@felte/validator-vest';
import { create, enforce, test } from 'vest';
const suite = create('form', (data) => {
test('email', 'Email is required', () => {
enforce(data.email).isNotEmpty();
});
test('password', 'Password is required', () => {
enforce(data.password).isNotEmpty();
});
});
const felteForm = document.querySelector('felte-form');
felteForm.configuration = {
// ...
extend: validator({ suite }), // OR `extend: [validator({ suite })],`
// ...
};
Warnings
This validator will update the warnings
store with the messages returned from any test marked with warn()
:
import { validator } from '@felte/validator-vest';
import { create, enforce, test, warn } from 'vest';
const suite = create('form', (data) => {
test('email', 'Email is required', () => {
enforce(data.email).isNotEmpty();
});
test('password', 'Password is required', () => {
enforce(data.password).isNotEmpty();
});
test('password', 'Password not secure', () => {
warn();
// We only warn if the user has already started typing a value
if (!data.password) return;
enforce(data.password).longerThanOrEquals(8);
});
});
const felteForm = document.querySelector('felte-form');
felteForm.configuration = {
// ...
extend: validator({ suite }), // or `extend: [validator({ suite })],`
// ...
};