App.jsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
import React from "react"; import { Form, Field } from "react-final-form"; // Validation function const validate = (values) => { const errors = {}; if (!values.name) { errors.name = "Name is required"; } else if (values.name.length < 3) { errors.name = "Name must be at least 3 characters"; } if (!values.age) { errors.age = "Age is required"; } else if (isNaN(Number(values.age))) { errors.age = "Age must be a number"; } else if (values.age <= 0) { errors.age = "Age must be greater than 0"; } if (!values.country) { errors.country = "Country is required"; } return errors; }; // Form submission handler const onSubmit = (values) => { alert(`Form submitted: ${JSON.stringify(values, null, 2)}`); }; const App = () => { return ( <div style={{ display: "flex", justifyContent: "center", alignItems: "center", height: "100vh", backgroundColor: "#f9f9f9", padding: "20px", }} > <Form onSubmit={onSubmit} validate={validate} render={({ handleSubmit, submitting, pristine }) => ( <form onSubmit={handleSubmit}> {/* Name Field */} <div style={{ marginBottom: "15px" }}> <Field name="name"> {({ input, meta }) => ( <div> <label>Name</label> <input {...input} type="text" placeholder="Enter your name" style={{ width: "100%", padding: "8px", marginBottom: "5px", }} /> {meta.error && meta.touched && ( <span style={{ color: "red" }}>{meta.error}</span> )} </div> )} </Field> </div> {/* Age Field */} <div style={{ marginBottom: "15px" }}> <Field name="age"> {({ input, meta }) => ( <div> <label>Age</label> <input {...input} type="number" placeholder="Enter your age" style={{ width: "100%", padding: "8px", marginBottom: "5px", }} /> {meta.error && meta.touched && ( <span style={{ color: "red" }}>{meta.error}</span> )} </div> )} </Field> </div> {/* Country Field */} <div style={{ marginBottom: "15px" }}> <Field name="country"> {({ input, meta }) => ( <div> <label>Country</label> <input {...input} type="text" placeholder="Enter your country" style={{ width: "100%", padding: "8px", marginBottom: "5px", }} /> {meta.error && meta.touched && ( <span style={{ color: "red" }}>{meta.error}</span> )} </div> )} </Field> </div> {/* Submit Button */} <div style={{ textAlign: "center" }}> <button type="submit" disabled={submitting || pristine}> Submit </button> </div> </form> )} /> </div> ); }; export default App; |