Socket
Socket
Sign inDemoInstall

@conform-to/zod

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@conform-to/zod

Conform schema resolver for Zod


Version published
Weekly downloads
61K
increased by3.54%
Maintainers
1
Weekly downloads
 
Created
Source

@conform-to/zod

Zod schema resolver for conform

API Reference

resolve

This resolves zod schema to a conform schema:

import { useFieldset } from '@conform-to/react';
import { resolve } from '@conform-to/zod';
import { z } from 'zod';

// Define the schema with zod
const schema = z.object({
  email: z.string(),
  password: z.string(),
});

// When used with `@conform-to/react`:
function RandomForm() {
  const [setupFieldset, { email, password }] = useFieldset(resolve(schema));

  // ...
}

parse

The parse function could be used to parse the FormData on client side:

const schema = z.object({
  // Define the schema with zod
});

form.addEventListener('submit', (e) => {
  e.preventDefault();

  // Read the FormData from the from
  const formData = new FormData(e.target);

  // Parse the data against the zod schema
  const result = parse(formData, schema);

  console.log(result.state);
  // It could be accepted / rejected / processed

  console.log(result.value);
  // Parsed value (if accepted)
  // or Fieldset data in schema structure (if not)

  console.log(result.error);
  // Fieldset error in schema structure  (if rejected)
});

Or parse the request payload on server side (e.g. Remix):

import { parse } 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 result = parse(formData, schema);

  // Depends on the usecase, you can also do this:
  // const url = new URL(request.url)
  // const result = parse(url.searchParams, schema)

  // Return the current result if not accepted
  if (result.state !== 'accepted') {
    return json(result);
  }

  // Do something else
};

export default function SomeRoute() {
  const result = useActionData();

  // You can then use result.value / result.error
  // to populate inital value of each fields and
  // its corresponding error
}

FAQs

Package last updated on 18 Jul 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc