|
- // material-ui
- import {
- Button,
- Grid, TextField,
- Autocomplete,
- Typography
- } from '@mui/material';
- import MainCard from "components/MainCard";
- import { useForm } from "react-hook-form";
- import { useState,useEffect } from "react";
- import {PNSPS_BUTTON_THEME} from "themes/buttonConst";
- import {ThemeProvider} from "@emotion/react";
- // ==============================|| DASHBOARD - DEFAULT ||============================== //
-
-
- const UserSearchForm_Individual = ({ applySearch, onGridReady, searchCriteria }) => {
-
- const [type, setType] = useState([]);
- const [accountFilter, setAccountFilter] = useState("All");
-
- const { reset, register, handleSubmit } = useForm()
-
- useEffect(() => {
- if(searchCriteria.accountFilter!=undefined){
- if(searchCriteria.accountFilter === ""){
- setAccountFilter("All")
- }else{
- setAccountFilter(searchCriteria.accountFilter)
- }
- }else{
- setAccountFilter("All")
- }
- }, [searchCriteria]);
-
- const onSubmit = (data) => {
-
- let typeArray = [];
-
- for (let i = 0; i < type.length; i++) {
- typeArray.push(type[i].label);
- }
-
- const temp = {
- username: data.userName,
- fullName: data.fullenName,
- email: data.email,
- phone: data.phone,
- };
- if(accountFilter!="All"){
- temp["accountFilter"] = accountFilter;
- }
- applySearch(temp);
- };
-
- function resetForm() {
- setType([]);
- setAccountFilter("All");
- reset({
- userName:"",
- fullenName:"",
- email:"",
- phone:"",
- });
- }
-
- return (
- <MainCard xs={12} md={12} lg={12}
- border={false}
- content={false}>
-
- <form onSubmit={handleSubmit(onSubmit)}>
- <Grid container sx={{ ml: 2, mt: 1}} width="98%">
- {/*row 1*/}
- <Grid item justifyContent="space-between" alignItems="center" sx={{mt:1,ml:3,mb:2.5}}>
- <Typography variant="pnspsFormHeader" >
- Search
- </Typography>
- </Grid>
- {/*row 2*/}
-
- <Grid container display="flex" alignItems={"center"}>
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <TextField
- fullWidth
- {...register("userName")}
- id='userName'
- label="Username"
- defaultValue={searchCriteria.username}
- InputLabelProps={{
- shrink: true
- }}
- />
- </Grid>
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <TextField
- fullWidth
- {...register("fullenName")}
- id="fullenName"
- label="Full Name"
- defaultValue={searchCriteria.fullName}
- InputLabelProps={{
- shrink: true
- }}
- />
- </Grid>
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <TextField
- fullWidth
- {...register("email")}
- id="email"
- label="Email"
- defaultValue={searchCriteria.email}
- InputLabelProps={{
- shrink: true
- }}
- />
- </Grid>
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <TextField
- fullWidth
- {...register("phone")}
- id="phone"
- label="Phone"
- defaultValue={searchCriteria.phone}
- InputLabelProps={{
- shrink: true
- }}
- />
- </Grid>
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <Autocomplete
- {...register("accountFilter")}
- disablePortal
- id="accountFilter"
- size="small"
- options={["All","Active", "Locked", "Not Verified"]}
- value={accountFilter}
- onChange={(event, newValue) => {
- if (newValue !== null) {
- setAccountFilter(newValue);
- }else{
- setAccountFilter("All");
- }
- }}
- renderInput={(params) => (
- <TextField {...params}
- label="Status"
- InputLabelProps={{
- shrink: true
- }}
- />
- )}
- />
- </Grid>
- {/*<Grid item xs={9} s={6} md={5} lg={3} sx={{ml:3, mr:3, mb:3}}>*/}
- {/* <TextField*/}
- {/* fullWidth*/}
- {/* {...register("subDivisionId")}*/}
- {/* id="subDivision"*/}
- {/* label="Sub-Division"*/}
- {/* />*/}
- {/*</Grid>*/}
-
- </Grid>
-
-
- {/*last row*/}
- <Grid container maxWidth justifyContent="flex-end">
- <ThemeProvider theme={PNSPS_BUTTON_THEME}>
- <Grid item sx={{ ml: 3, mr: 3, mb: 3 }}>
- <Button
- variant="contained"
- color="cancel"
- onClick={resetForm}
- >
- Reset
- </Button>
- </Grid>
-
- <Grid item sx={{ mb: 3}}>
- <Button
- variant="contained"
- type="submit"
- disabled={onGridReady}
- >
- Submit
- </Button>
- </Grid>
- </ThemeProvider>
- </Grid>
- </Grid>
- </form>
- </MainCard>
- );
- };
-
- export default UserSearchForm_Individual;
|