CustomForm
is a versatile React form component designed to simplify your form-building journey. Powered by MUI components and the flexibility of react-hook-form
, this package offers an intuitive way to create dynamic and responsive forms with a wide range of field types and customization options.
npm install mui-custom-form
- 🎛 Dynamic Field Types: Supports a wide range of field types including
text
,number
,password
,textarea
,date
,file
,switch
,checkbox-group
,radio-group
, andcustom
components. - 🎨 MUI Integration: Seamlessly integrates with Material-UI components for a consistent and polished UI.
- 📱 Responsive Design: Utilizes MUI's grid system to ensure forms are responsive and well-organized across different screen sizes.
- 🛠 Customizable Input Props: Allows passing additional properties to input fields for enhanced customization.
- 🧩 Custom Components: Enables integration of custom components that adhere to the
value
andonChange
interface, providing maximum flexibility. - 🔄 Form Control Integration: Leverages
react-hook-form
for efficient form state management and validation. - 🧰 Validation Support: Supports schema-based validation with Zod.
Name | Description | Is Required? |
---|---|---|
fieldsGroups |
2D array representing groups of fields in the form. | Yes |
onSubmit |
Tuple containing functions for form submission and error handling. | Yes |
formControl |
Control object from react-hook-form . |
Yes |
submitButton |
Boolean or ButtonProps to toggle and customize the submit button. |
No |
resetButton |
Boolean or ButtonProps to toggle and customize the reset button. |
No |
actionButtonsPlacement |
CSS property for button placement (e.g., flex-end , center ). |
No |
otherProps |
Any additional props to pass down to the form component. | No |
Name | Description | Is Required? |
---|---|---|
label |
The display label of the field. | Yes |
name |
The name attribute of the field. | Yes |
type |
The type of the field. | Yes |
list |
An array of options for select type fields. | Conditional |
required |
Is the field mandatory? | No |
otherProps |
Any additional props. | No |
span |
Grid span for the field (1-12). | No |
component |
Custom React component for the field. | Conditional |
Notes:
- The
list
prop is required when thetype
issingle-select
,multi-select
,checkbox-group
, orradio-group
.- The
component
prop is required when thetype
iscustom
.
To integrate custom components into your forms, ensure they adhere to the CustomComponentProps
interface, which requires value
and onChange
props.
export interface CustomComponentProps {
value: any;
onChange: (value: any) => void;
[key: string]: any; // Allow additional props
}
Example of a Custom Component:
// CustomComponents.tsx
import React from "react";
import { TextField } from "@mui/material";
import { CustomComponentProps } from "./types";
export const CustomTextComponent: React.FC<CustomComponentProps> = ({
value,
onChange,
placeholder,
}) => {
return (
<TextField
value={value || ""}
onChange={(e) => onChange(e.target.value)}
placeholder={placeholder}
fullWidth
/>
);
};
A simple form demonstrating basic field types like text
and date
.
// BasicForm.tsx
import React from "react";
import { useForm } from "react-hook-form";
import { CustomForm } from "mui-custom-form";
import { IFieldGroup } from "mui-custom-form/types";
const BasicForm = () => {
const formControl = useForm<{ username: string; birthdate: string }>();
const fieldsGroups: IFieldGroup = [
[
{
label: "Username",
name: "username",
type: "text",
required: true,
otherProps: { placeholder: "Enter your username" },
span: 6,
},
{
label: "Birthdate",
name: "birthdate",
type: "date",
required: true,
span: 6,
},
],
];
const handleSubmit = (data: { username: string; birthdate: string }) => {
console.log({ success: data });
};
const submitError = (errors: any) => {
console.log({ error: errors });
};
return (
<CustomForm
fieldsGroups={fieldsGroups}
onSubmit={[handleSubmit, submitError]}
formControl={formControl}
/>
);
};
export default BasicForm;
A form demonstrating advanced field types and schema-based validation using Zod.
// FormWithZod.tsx
import React from "react";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
import { CustomForm } from "mui-custom-form";
import { IFieldGroup } from "mui-custom-form/types";
const GENDERS = ["Male", "Female", "Other"] as const;
const HOBBIES = ["Coding", "Collections", "Hiking"] as const;
const Fields = z.object({
username: z.string().min(1, "Username is required"),
age: z
.number({
required_error: "Age is required",
invalid_type_error: "Age must be a number",
})
.min(16, "Minimum age is 16")
.max(80, "Maximum age is 80"),
gender: z.enum(GENDERS, { required_error: "Gender is required" }),
hobbies: z
.array(z.enum(HOBBIES), { required_error: "Hobbies are required" })
.nonempty("Please choose at least one hobby"),
birthDate: z.date({ required_error: "Birthdate is required" }),
file: z.instanceof(FileList).optional(),
});
type FieldTypes = z.infer<typeof Fields>;
const FormWithZod = () => {
const formControl = useForm<FieldTypes>({
resolver: zodResolver(Fields),
defaultValues: {
hobbies: [],
},
});
const fieldsGroups: IFieldGroup<FieldTypes> = [
[
{
label: "Username",
name: "username",
type: "text",
required: true,
otherProps: { placeholder: "Enter your username" },
span: 6,
},
{
label: "Age",
name: "age",
type: "number",
required: true,
otherProps: { min: 16, max: 80 },
span: 6,
},
],
[
{
label: "Gender",
name: "gender",
type: "radio-group",
list: GENDERS.map((gender) => ({ label: gender, value: gender })),
required: true,
otherProps: { row: true },
span: 6,
},
{
label: "Hobbies",
name: "hobbies",
type: "checkbox-group",
list: HOBBIES.map((hobby) => ({ label: hobby, value: hobby })),
required: true,
span: 6,
},
],
[
{
label: "Birthdate",
name: "birthDate",
type: "date",
required: true,
span: 6,
},
{
label: "Upload Image",
name: "file",
type: "file",
required: false,
span: 6,
},
],
];
const onSubmit = (data: FieldTypes) => {
console.log({ success: data });
};
const submitError = (errors: any) => {
console.log({ errors });
};
return (
<CustomForm
fieldsGroups={fieldsGroups}
onSubmit={[onSubmit, submitError]}
formControl={formControl}
/>
);
};
export default FormWithZod;
An extensive example showcasing all supported field types, customizable input props, and custom components.
// ComprehensiveForm.tsx
import React from "react";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
import { Container, Typography, ButtonProps } from "@mui/material";
import { CustomForm } from "mui-custom-form";
import { IFieldGroup } from "mui-custom-form/types";
import {
CustomTextComponent,
DateRangePickerComponent,
} from "./CustomComponents"; // Ensure correct import path
const GENDERS = ["Male", "Female", "Other"] as const;
const HOBBIES = ["Coding", "Collections", "Hiking"] as const;
const Fields = z.object({
username: z.string().min(1, "Username is required"),
password: z.string().min(6, "Password must be at least 6 characters"),
bio: z.string().optional(),
subscribe: z.boolean().optional(),
age: z
.number({
required_error: "Age is required",
invalid_type_error: "Age must be a number",
})
.min(16, "Minimum age is 16")
.max(80, "Maximum age is 80"),
gender: z.enum(GENDERS, { required_error: "Gender is required" }),
hobbies: z
.array(z.enum(HOBBIES), { required_error: "Hobbies are required" })
.nonempty("Please choose at least one hobby"),
birthDate: z.date({ required_error: "Birthdate is required" }),
file: z.instanceof(File).optional(),
customField: z.string().optional(),
eventDates: z
.tuple([z.date().nullable(), z.date().nullable()])
.optional(),
});
type FieldTypes = z.infer<typeof Fields>;
const ComprehensiveForm = () => {
const formControl = useForm<FieldTypes>({
resolver: zodResolver(Fields),
defaultValues: {
subscribe: false,
hobbies: [],
eventDates: [null, null],
},
});
const fieldsGroups: IFieldGroup<FieldTypes> = [
[
{
label: "Username",
name: "username",
type: "text",
required: true,
otherProps: { placeholder: "Enter your username" },
span: 6,
},
{
label: "Password",
name: "password",
type: "password",
required: true,
otherProps: { placeholder: "Enter your password" },
span: 6,
},
],
[
{
label: "Bio",
name: "bio",
type: "textarea",
required: false,
otherProps: { rows: 5, placeholder: "Tell us about yourself" },
span: 12,
},
],
[
{
label: "Subscribe to Newsletter",
name: "subscribe",
type: "switch",
required: false,
otherProps: { color: "primary" },
span: 6,
},
],
[
{
label: "Age",
name: "age",
type: "number",
required: true,
otherProps: { min: 16, max: 80 },
span: 6,
},
{
label: "Gender",
name: "gender",
type: "radio-group",
list: GENDERS.map((gender) => ({
label: gender,
value: gender,
})),
required: true,
otherProps: { row: true },
span: 6,
},
],
[
{
label: "Hobbies",
name: "hobbies",
type: "checkbox-group",
list: HOBBIES.map((hobby) => ({ label: hobby, value: hobby })),
required: true,
span: 6,
},
{
label: "Birthdate",
name: "birthDate",
type: "date",
required: true,
span: 6,
},
],
[
{
label: "Event Dates",
name: "eventDates",
type: "custom",
component: DateRangePickerComponent,
required: false,
span: 6,
},
{
label: "Upload Image",
name: "file",
type: "file",
required: false,
span: 6,
},
],
[
{
label: "Custom Text Field",
name: "customField",
type: "custom",
component: CustomTextComponent,
required: false,
otherProps: { placeholder: "Custom input here" },
span: 12,
},
],
];
const onSubmit = (data: FieldTypes) => {
console.log({ success: data });
};
const submitError = (errors: any) => {
console.log({ errors });
};
const submitButtonProps: ButtonProps = {
variant: "contained",
color: "primary",
};
const resetButtonProps: ButtonProps = {
variant: "outlined",
color: "secondary",
};
return (
<Container maxWidth="md" sx={{ mt: 4, mb: 4 }}>
<Typography variant="h4" gutterBottom>
Comprehensive Form
</Typography>
<CustomForm
fieldsGroups={fieldsGroups}
onSubmit={[onSubmit, submitError]}
formControl={formControl}
submitButton={submitButtonProps}
resetButton={resetButtonProps}
actionButtonsPlacement="flex-end"
otherProps={{ spacing: 2 }}
/>
</Container>
);
};
export default ComprehensiveForm;
Your contributions are always welcome! Whether it's reporting bugs, suggesting features, or submitting pull requests, we appreciate your support in making CustomForm
better for everyone.
- Fork the Repository
-
Create a Feature Branch
git checkout -b feature/YourFeature
-
Commit Your Changes
git commit -m "Add YourFeature"
-
Push to the Branch
git push origin feature/YourFeature
- Open a Pull Request
Please ensure your code follows the project's coding standards and includes relevant tests where applicable.
This project is licensed under the MIT license.
If you have any questions or need further assistance, feel free to reach out or open an issue in the repository!
Your contributions are always welcome!