|
- // material-ui
- import {
- Button,
- CardContent,
- Grid, TextField,
- Autocomplete,
- Typography
- } from '@mui/material';
- import MainCard from "components/MainCard";
- import { useForm } from "react-hook-form";
- import * as React from "react";
- import * as ComboData from "utils/ComboData";
- import * as DateUtils from "utils/DateUtils";
- import * as FormatUtils from "utils/FormatUtils";
- import {FormattedMessage, useIntl} from "react-intl";
- import {PNSPS_BUTTON_THEME} from "../../../themes/buttonConst";
- import {ThemeProvider} from "@emotion/react";
- // ==============================|| DASHBOARD - DEFAULT ||============================== //
-
-
- const SearchDemandNoteForm = ({ applySearch, searchCriteria, issueComboData
- }) => {
- const intl = useIntl();
- const [type, setType] = React.useState([]);
- const [issueSelected, setIssueSelected] = React.useState({});
- const [issueCombo, setIssueCombo] = React.useState([]);
- const [selectedStatus, setSelectedStatus] = React.useState({});
-
- const [minDate, setMinDate] = React.useState(searchCriteria.dateFrom);
- const [maxDate, setMaxDate] = React.useState(searchCriteria.dateTo);
-
- const { reset, register, handleSubmit } = useForm()
- const onSubmit = (data) => {
- let typeArray = [];
-
- for (let i = 0; i < type.length; i++) {
- typeArray.push(type[i].label);
- }
-
- const temp = {
- appNo: data.appNo,
- issueId: issueSelected?.id,
- dnNo: data.dnNo,
- sentDateFrom: data.dateFrom,
- sentDateTo: data.dateTo,
- status: (selectedStatus?.type && selectedStatus?.type != 'all') ? selectedStatus?.type : "",
- };
- applySearch(temp);
- };
-
- React.useEffect(() => {
- if (issueComboData && issueComboData.length > 0) {
- setIssueCombo(issueComboData);
- }
- }, [issueComboData]);
-
- function resetForm() {
- setType([]);
- // setStatus({ key: 0, label: 'All', type: 'all' });
- setOrgSelected({});
- setIssueSelected({});
- reset();
- }
-
- function getIssueLabel(data) {
- if (data == {}) return "";
- return data.year
- + " Vol. " + FormatUtils.zeroPad(data.volume, 3)
- + ", No. " + FormatUtils.zeroPad(data.issueNo, 2)
- + ", " + DateUtils.dateFormat(data.issueDate, "D MMM YYYY (ddd)");
- }
-
- return (
- <MainCard xs={12} md={12} lg={12}
- border={false}
- content={false}
- sx={{ backgroundColor: '#fff' }}
- >
-
- <form onSubmit={handleSubmit(onSubmit)}>
- <Grid container sx={{ backgroundColor: '#ffffff' }} width="98%">
- {/*row 1*/}
- <Grid item xs={12}>
- <CardContent sx={{ px: 2.5, pt: 3 }}>
- <Grid item justifyContent="space-between" alignItems="center" >
- <Typography variant="pnspsFormHeader">
- <FormattedMessage id="searchForm"/>
- </Typography>
- </Grid>
- </CardContent>
- </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 }}>
- <Autocomplete
- {...register("issueId")}
- disablePortal
- id="issueId"
- options={issueCombo}
- value={issueSelected}
- inputValue={(issueSelected?.id) ? getIssueLabel(issueSelected) : ""}
- getOptionLabel={(option) => getIssueLabel(option)}
- onChange={(event, newValue) => {
- if (newValue !== null) {
- setIssueSelected(newValue);
- }
- }}
- renderInput={(params) => (
- <TextField {...params}
- label={intl.formatMessage({id: 'gazetteCount'})}
- InputLabelProps={{
- shrink: true
- }}
- />
- )}
- />
- </Grid>
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <TextField
- fullWidth
- {...register("appNo")}
- id='appNo'
- label={intl.formatMessage({id: 'applicationId'})}
- defaultValue={searchCriteria.appNo}
- InputLabelProps={{
- shrink: true
- }}
- />
- </Grid>
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <TextField
- fullWidth
- {...register("dnNo")}
- id='dnNo'
- label={intl.formatMessage({id: 'paymentRecordId'})}
- defaultValue={searchCriteria.dnNo}
- InputLabelProps={{
- shrink: true
- }}
- />
- </Grid>
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <TextField
- fullWidth
- {...register("dateFrom")}
- id="dateFrom"
- type="date"
- label={intl.formatMessage({id: 'sendDateFrom'})}
- defaultValue={searchCriteria.dateFrom}
- InputProps={{ inputProps: { max: maxDate } }}
- onChange={(newValue) => {
- setMinDate(DateUtils.dateStr(newValue));
- }}
- InputLabelProps={{
- shrink: true
- }}
- />
- </Grid>
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <TextField
- fullWidth
- InputLabelProps={{
- shrink: true
- }}
- {...register("dateTo")}
- InputProps={{ inputProps: { min: minDate } }}
- onChange={(newValue) => {
- setMaxDate(DateUtils.dateStr(newValue));
- }}
- id="dateTo"
- type="date"
- label={intl.formatMessage({id: 'sendDateTo'})}
- defaultValue={searchCriteria.dateTo}
- />
- </Grid>
-
-
- <Grid item xs={9} s={6} md={5} lg={3} sx={{ ml: 3, mr: 3, mb: 3 }}>
- <Autocomplete
- {...register("status")}
- id="status"
- size="small"
- options={ComboData.denmandNoteStatus_Public}
- getOptionLabel={(option) => option.labelCht}
- inputValue={selectedStatus?.labelCht ? selectedStatus?.labelCht : ""}
- value={selectedStatus}
- onChange={(event, newValue) => {
- if (newValue !== null) {
- setSelectedStatus(newValue);
- }
- }}
- renderInput={(params) => (
- <TextField
- {...params}
- label={intl.formatMessage({id: 'status'})}
- />
- )}
- InputLabelProps={{
- shrink: true
- }}
- />
- </Grid>
-
-
-
- </Grid>
-
- {/*last row*/}
- <Grid container maxWidth justifyContent="flex-end">
- <ThemeProvider theme={PNSPS_BUTTON_THEME}>
- <Grid item sx={{mr: 3, mb: 3}}>
- <Button
- color="cancel"
- variant="contained"
- onClick={resetForm}
- >
- <FormattedMessage id="reset"/>
- </Button>
- </Grid>
-
- <Grid item sx={{ mb: 3 }}>
- <Button
- variant="contained"
- type="submit"
- >
- <FormattedMessage id="submit" />
- </Button>
- </Grid>
- </ThemeProvider>
- </Grid>
- </Grid>
- </form>
- </MainCard>
- );
- };
-
- export default SearchDemandNoteForm;
|