Yup Schema Commonly Used Examples

calvinpak

CP

Posted on October 15, 2020

Yup Schema Commonly Used Examples

Here are two commonly used schema validations using Yup:

  1. Phone number validation with Regex
  2. How to compare two fields in Yup
import * as yup from "yup";

const phoneRegex = /^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/;
const schema = yup.object().shape({
  phone: yup.string().matches(phoneRegex, "Invalid phone."),
  password: yup.string().required("Password is required"),
  confirmPassword: yup
    .string()
    .oneOf([yup.ref("password")], "Mismatched passwords")
    .required("Please confirm your password")
});

export default schema;

Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
calvinpak
CP

Posted on October 15, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Yup Schema Commonly Used Examples
javascript Yup Schema Commonly Used Examples

October 15, 2020