New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@conform-to/yup

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@conform-to/yup

Conform schema resolver for yup

  • 0.4.0-pre.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18K
increased by28.33%
Maintainers
1
Weekly downloads
 
Created
Source

@conform-to/yup

Yup schema resolver for conform

API Reference

formatError

This formats Yup ValidationError to the conform error structure (i.e. A set of key/value pairs).

If the error received is not provided by Yup, 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 } from '@conform-to/react';
import { formatError } from '@conform-to/yup';
import * as yup from 'yup';

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

function ExampleForm() {
  const formProps = useForm<yup.InferType<typeof schema>>({
    onValidate({ form, submission }) {
      try {
        // Only sync validation is allowed on the client side
        schema.validateSync(submission.value, {
          abortEarly: false,
        });
      } catch (error) {
        submission.error = submission.error.concat(
          // The 2nd argument is an optional fallback message
          formatError(
            error,
            'The application has encountered an unknown error.',
          ),
        );
      }

      setFormError(form, submission);
    },
  });

  // ...
}

Or when validating the formData on server side (e.g. Remix):

import { useForm, parse } from '@conform-to/react';
import { formatError } from '@conform-to/yup';
import * as yup from 'yup';

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

export let action = async ({ request }) => {
  const formData = await request.formData();
  const submission = parse(formData);

  try {
    // You can extends the schema with async validation as well
    const data = await schema.validate(submission.value, {
      abortEarly: false,
    });

    if (submission.context !== 'validate') {
      return await handleFormData(data);
    }
  } catch (error) {
    if (error instanceof yup.ValidationError) {
      submission.error = submission.error.concat(formatError(error));
    } else {
      submission.error = submission.error.concat([
        ['', 'Sorry, something went wrong.'],
      ]);
    }
  }

  return submission;
};

export default function ExampleRoute() {
  const state = useActionData();
  const form = useForm({
    mode: 'server-validation',
    state,
  });

  // ...
}

FAQs

Package last updated on 26 Oct 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