├── README.md └── validation ├── .gitignore ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── react-form-validtion.gif └── src ├── App.css ├── App.js ├── App.test.js ├── Registration ├── Registration.css ├── Registration.js └── RegistrationSchema.js ├── index.css ├── index.js ├── reportWebVitals.js └── setupTests.js /README.md: -------------------------------------------------------------------------------- 1 | # React form validation using Formik and Yup JavaScript libraries. Simple sign up form example for reactjs form validation using formik and yup validator. 2 | 3 | This is a simple "User sign up form" developed in bootstrap.
4 | 5 | I have used "Formik" open source JavaScript library for building and processing the form data in react application.
6 | "Yup" schema builder is used for value parsing and validation.
7 | 8 | ## Live app on stackblitz
9 | [https://stackblitz.com/edit/validation-react-form-yup-formik?file=src%2FApp.js](https://stackblitz.com/edit/validation-react-form-yup-formik?file=src%2FApp.js) 10 | 11 | ## Demo - Sign up form validation in React
12 | ![React Validation Formik Yup](./validation/react-form-validtion.gif) 13 | 14 | # Kickstart 15 | 1. Checkout the repository 16 | 2. cd validation 17 | 3. npm install 18 | 4. npm start 19 | -------------------------------------------------------------------------------- /validation/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /validation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "validation", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.17.0", 7 | "@testing-library/react": "^13.4.0", 8 | "@testing-library/user-event": "^13.5.0", 9 | "bootstrap": "^5.3.0", 10 | "formik": "^2.4.2", 11 | "react": "^18.2.0", 12 | "react-bootstrap": "^2.8.0", 13 | "react-dom": "^18.2.0", 14 | "react-icons": "^4.10.1", 15 | "react-scripts": "5.0.1", 16 | "web-vitals": "^2.1.4", 17 | "yup": "^1.2.0" 18 | }, 19 | "scripts": { 20 | "start": "react-scripts start", 21 | "build": "react-scripts build", 22 | "test": "react-scripts test", 23 | "eject": "react-scripts eject" 24 | }, 25 | "eslintConfig": { 26 | "extends": [ 27 | "react-app", 28 | "react-app/jest" 29 | ] 30 | }, 31 | "browserslist": { 32 | "production": [ 33 | ">0.2%", 34 | "not dead", 35 | "not op_mini all" 36 | ], 37 | "development": [ 38 | "last 1 chrome version", 39 | "last 1 firefox version", 40 | "last 1 safari version" 41 | ] 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /validation/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyobject/react-validation-formik-yup/cef938f73e97e4a32a4bb26067fb1bc48bad4c15/validation/public/favicon.ico -------------------------------------------------------------------------------- /validation/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /validation/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyobject/react-validation-formik-yup/cef938f73e97e4a32a4bb26067fb1bc48bad4c15/validation/public/logo192.png -------------------------------------------------------------------------------- /validation/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyobject/react-validation-formik-yup/cef938f73e97e4a32a4bb26067fb1bc48bad4c15/validation/public/logo512.png -------------------------------------------------------------------------------- /validation/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /validation/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /validation/react-form-validtion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyobject/react-validation-formik-yup/cef938f73e97e4a32a4bb26067fb1bc48bad4c15/validation/react-form-validtion.gif -------------------------------------------------------------------------------- /validation/src/App.css: -------------------------------------------------------------------------------- 1 | 2 | @media (prefers-reduced-motion: no-preference) { 3 | .App-logo { 4 | animation: App-logo-spin infinite 20s linear; 5 | } 6 | } 7 | 8 | .App-header { 9 | background-color: #282c34; 10 | min-height: 100vh; 11 | display: flex; 12 | flex-direction: column; 13 | align-items: center; 14 | justify-content: center; 15 | font-size: calc(10px + 2vmin); 16 | color: white; 17 | } 18 | 19 | .App-link { 20 | color: #61dafb; 21 | } 22 | 23 | @keyframes App-logo-spin { 24 | from { 25 | transform: rotate(0deg); 26 | } 27 | to { 28 | transform: rotate(360deg); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /validation/src/App.js: -------------------------------------------------------------------------------- 1 | import "./App.css"; 2 | import Registration from "./Registration/Registration"; 3 | import "../node_modules/bootstrap/dist/css/bootstrap.min.css"; 4 | 5 | function App() { 6 | return ( 7 |
8 | 9 |
10 | ); 11 | } 12 | export default App; 13 | -------------------------------------------------------------------------------- /validation/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /validation/src/Registration/Registration.css: -------------------------------------------------------------------------------- 1 | .form-label{ 2 | color:gray; 3 | } 4 | 5 | .actionButtons{ 6 | text-align: right; 7 | } 8 | 9 | 10 | .actionButtons Button { 11 | margin-left:20px; 12 | } -------------------------------------------------------------------------------- /validation/src/Registration/Registration.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { useFormik } from "formik"; 3 | import "./Registration.css"; 4 | import { Button } from "react-bootstrap"; 5 | import { registrationSchema } from "./RegistrationSchema"; 6 | 7 | const initialValues = { 8 | first: "", 9 | last: "", 10 | email: "", 11 | repassword: "", 12 | password: "", 13 | }; 14 | 15 | const Registration = () => { 16 | const { 17 | values, 18 | errors, 19 | touched, 20 | handleBlur, 21 | handleChange, 22 | handleSubmit, 23 | resetForm, 24 | } = useFormik({ 25 | initialValues, 26 | validationSchema: registrationSchema, 27 | onSubmit: (values, action) => { 28 | alert( 29 | "Form is valid now!. You can make a call to API inside onSubmit function" 30 | ); 31 | action.resetForm(); 32 | }, 33 | }); 34 | 35 | return ( 36 |
37 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |

Sign up

48 |
49 |
50 |
51 | 54 | 62 | {errors.first && touched.first ? ( 63 | 64 | {errors.first} 65 | 66 | ) : null} 67 |
68 |
69 | 72 | 80 | {errors.last && touched.last ? ( 81 | 82 | {errors.last} 83 | 84 | ) : null} 85 |
86 |
87 |
88 |
89 | 92 | 100 | {errors.email && touched.email ? ( 101 | 102 | {errors.email} 103 | 104 | ) : null} 105 |
106 |
107 |
108 |
109 | 112 | 121 | {errors.password && touched.password ? ( 122 | 123 | {errors.password} 124 | 125 | ) : null} 126 |
127 |
128 |
129 |
130 | 133 | 142 | {errors.repassword && touched.repassword ? ( 143 | 144 | {errors.repassword} 145 | 146 | ) : null} 147 |
148 |
149 |
150 |
151 | 158 | 159 | 166 |
167 |
168 |
169 |
170 |
171 | Already have an account? Sign in 172 |
173 |
174 |
175 |
176 |
177 | 182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 | ); 191 | }; 192 | 193 | export default Registration; 194 | -------------------------------------------------------------------------------- /validation/src/Registration/RegistrationSchema.js: -------------------------------------------------------------------------------- 1 | import * as Yup from "yup"; 2 | 3 | export const registrationSchema = Yup.object({ 4 | email: Yup.string().email().required("Email id is required"), 5 | first: Yup.string().min(2).max(20).required("First name is required"), 6 | last: Yup.string().min(2).max(20).required("Last name is required"), 7 | password: Yup.string().min(6).required("Please enter your password"), 8 | repassword: Yup.string() 9 | .required("Confirm password is required") 10 | .oneOf([Yup.ref("password"), null], "Password must match"), 11 | }); 12 | -------------------------------------------------------------------------------- /validation/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /validation/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import './index.css'; 4 | import App from './App'; 5 | import reportWebVitals from './reportWebVitals'; 6 | 7 | const root = ReactDOM.createRoot(document.getElementById('root')); 8 | root.render( 9 | 10 | 11 | 12 | ); 13 | 14 | // If you want to start measuring performance in your app, pass a function 15 | // to log results (for example: reportWebVitals(console.log)) 16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 17 | reportWebVitals(); 18 | -------------------------------------------------------------------------------- /validation/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /validation/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | --------------------------------------------------------------------------------