Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@conform-to/zod
Advanced tools
This formats ZodError
to the conform error structure (i.e. A set of key/value pairs).
If the error received is not provided by Zod, it will be treated as a form level error with message set to error.messages or Oops! Something went wrong. if no fallback message is provided.
import { useForm, parse } from '@conform-to/react';
import { formatError } from '@conform-to/zod';
import { z } from 'zod';
// Define the schema with zod
const schema = z.object({
email: z.string().min(1, 'Email is required'),
password: z.string().min(1, 'Password is required'),
});
function ExampleForm() {
const formProps = useForm<z.infer<typeof schema>>({
onValidate({ formData }) {
// Only sync validation is allowed on the client side
const submission = parse(formData);
try {
schema.parse(submission.value);
} catch (error) {
/**
* The `formatError` helper simply resolves the ZodError to
* a set of key/value pairs which refers to the name and
* error of each field.
*/
submission.error.push(...formatError(error));
}
return submission;
},
});
// ...
}
Or when validating the formData on server side (e.g. Remix):
import { useForm, parse } from '@conform-to/react';
import { formatError } from '@conform-to/zod';
import { z } from 'zod';
const schema = z.object({
// Define the schema with zod
});
export let action = async ({ request }) => {
const formData = await request.formData();
const submission = parse(formData);
try {
const data = await schema.parseAsync(submission.value);
if (submission.type === 'submit') {
return await handleFormData(data);
}
} catch (error) {
submission.error.push(
// The 2nd argument is an optional fallback message
...formatError(
error,
'The application has encountered an unknown error.',
),
);
}
return submission;
};
export default function ExampleRoute() {
const state = useActionData();
const form = useForm({
mode: 'server-validation',
state,
});
// ...
}
This tries to infer constraint of each field based on the zod schema. This is useful only for:
:required
import { getFieldsetConstraint } from '@conform-to/zod';
function LoginFieldset() {
const { email, password } = useFieldset(ref, {
constraint: getFieldsetConstraint(schema),
});
// ...
}
It parses the formData and returns a submission object with the validation error, which removes the boilerplate code shown on the formatError example.
import { useForm } from '@conform-to/react';
import { validate } from '@conform-to/zod';
import { z } from 'zod';
const schema = z.object({
email: z.string().min(1, 'Email is required'),
password: z.string().min(1, 'Password is required'),
});
function ExampleForm() {
const formProps = useForm({
onValidate({ formData }) {
return validate(formData, schema, {
// Optional
fallbackMessage: 'The application has encountered an unknown error.',
});
},
});
// ...
}
FAQs
Conform helpers for integrating with Zod
The npm package @conform-to/zod receives a total of 28,977 weekly downloads. As such, @conform-to/zod popularity was classified as popular.
We found that @conform-to/zod demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.