// material-ui import { Button, 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 { ThemeProvider } from "@emotion/react"; import { PNSPS_BUTTON_THEME } from "../../../themes/buttonConst"; import { useIntl } from "react-intl"; import { makeStyles } from '@mui/styles'; // ==============================|| DASHBOARD - DEFAULT ||============================== // const useStyles = makeStyles(() => ({ root: { position: "relative" }, display: { position: "absolute", top: 2, left: 12, bottom: 2, background: "white", pointerEvents: "none", right: 50, display: "flex", alignItems: "center", width:"70%" }, })); const SearchPublicNoticeForm = ({ applySearch, orgComboData, searchCriteria, issueComboData }) => { const [type, setType] = React.useState([]); // const [status, setStatus] = React.useState({ key: 0, label: 'All', type: 'all' }); const [orgSelected, setOrgSelected] = React.useState({}); const [orgCombo, setOrgCombo] = React.useState(); const [issueSelected, setIssueSelected] = React.useState({}); const [issueCombo, setIssueCombo] = React.useState([]); const [selectedStatus, setSelectedStatus] = React.useState({key: 0, label: 'All', type: 'all'}); const [minDate, setMinDate] = React.useState(searchCriteria.dateFrom); const [maxDate, setMaxDate] = React.useState(searchCriteria.dateTo); const [fromDateValue, setFromDateValue] = React.useState("dd / mm / yyyy"); const [toDateValue, setToDateValue] = React.useState("dd / mm / yyyy"); React.useEffect(() => { setFromDateValue(minDate); }, [minDate]); React.useEffect(() => { setToDateValue(maxDate); }, [maxDate]); function FormDateInputComponent({ inputRef, ...props }) { const classes = useStyles(); return ( <>
{DateUtils.dateStr(fromDateValue) == "Invalid Date" ? fromDateValue : DateUtils.dateStr(fromDateValue)}
); } function ToDateInputComponent({ inputRef, ...props }) { const classes = useStyles(); return ( <>
{DateUtils.dateStr(toDateValue) == "Invalid Date" ? toDateValue : DateUtils.dateStr(toDateValue)}
); } const intl = useIntl(); const { locale } = intl; const marginBottom = 2.5; const { reset, register, handleSubmit } = useForm() const onSubmit = (data) => { data.status = selectedStatus?.type let typeArray = []; let sentDateFrom = ""; let sentDateTo = ""; for (let i = 0; i < type.length; i++) { typeArray.push(type[i].label); } if (fromDateValue != "dd / mm / yyyy" && toDateValue != "dd / mm / yyyy") { sentDateFrom = DateUtils.dateValue(fromDateValue) sentDateTo = DateUtils.dateValue(toDateValue) } const temp = { appNo: data.appNo, dateFrom: sentDateFrom, dateTo: sentDateTo, contact: data.contact, status: (data.status === '' || data.status?.includes("all")) ? "" : data.status, orgId: (orgSelected?.key && orgSelected?.key > 0) ? orgSelected?.key : "", issueId: issueSelected?.id, groupNo: data.groupNo, }; applySearch(temp); }; React.useEffect(() => { if (orgComboData && orgComboData.length > 0) { setOrgCombo(orgComboData); } }, [orgComboData]); React.useEffect(() => { if (issueComboData && issueComboData.length > 0) { setIssueCombo(issueComboData); } }, [issueComboData]); function resetForm() { setType([]); // setStatus({ key: 0, label: 'All', type: 'all' }); setOrgSelected({}); setIssueSelected({}); setSelectedStatus({key: 0, label: 'All', type: 'all'}); setMinDate(DateUtils.dateValue(new Date().setDate(new Date().getDate()-14))) setMaxDate(DateUtils.dateValue(new Date())) reset(); } const getIssueLabel=(data)=> { let issueYear = data.issueYear let volume = data.volume; let issueNo = data.issueNo; let issueDate = data.issueDate; if (locale === 'zh-HK') { return issueYear + " 第" + volume + "卷," + " 第" + issueNo + "期," + " " + DateUtils.dateFormat(issueDate, "YYYY年MM月DD日") + " (" + DateUtils.getWeekdayStr_ZH(issueDate) + ")"; } else if (locale === 'zh-CN') { return issueYear + " 第" + volume + "卷," + " 第" + issueNo + "期," + " " + DateUtils.dateFormat(issueDate, "YYYY年MM月DD日") + " (" + DateUtils.getWeekdayStr_CN(issueDate) + ")"; } return issueYear + " Vol. " + FormatUtils.zeroPad(volume, 3) + ", No. " + FormatUtils.zeroPad(issueNo, 2) + ", " + DateUtils.dateFormat(issueDate, "D MMM YYYY (ddd)"); } return (
{/*row 1*/} Search {/*row 2*/} { if(newValue.target.value!=""){ setMinDate(newValue.target.value); } }} InputLabelProps={{ shrink: true }} sx={{ "& .MuiInputBase-input": {display:"block", textIndent: "-9999px"} }} /> { if(newValue.target.value!=""){ setMaxDate(newValue.target.value); } }} id="dateTo" type="date" label={"Submit Date (To)"} defaultValue={searchCriteria.dateTo} sx={{ "& .MuiInputBase-input": {display:"block", textIndent: "-9999px"} }} /> { if(newValue==null){ setSelectedStatus(ComboData.publicNoticeStatic_GLD[0]); }else{ setSelectedStatus(newValue); } }} getOptionLabel={(option) => option.label} renderInput={(params) => ( )} /> {/* { const findAllIndex = newValue.findIndex((ele) => { return ele.type === "all" }) if (findAllIndex > -1) { setSelectedStatus([newValue[findAllIndex]]); setSelectedLabelsString('all') } else { const selectedLabels = newValue.map(option => option.type); const selectedLabelsString = `${selectedLabels.join(',')}`; setSelectedStatus(newValue); setSelectedLabelsString(selectedLabelsString); } }} getOptionLabel={(option) => option.label} renderInput={(params) => ( )} /> */} { orgCombo ? option.name? option.name : ""} inputValue={orgSelected ? orgSelected.name : ""} onChange={(event, newValue) => { if (newValue !== null) { setOrgSelected(newValue); }else{ setOrgSelected({}); } }} renderInput={(params) => ( )} /> : <> } getIssueLabel(option)} onChange={(event, newValue) => { setIssueSelected(newValue); }} renderInput={(params) => ( )} /> {/*last row*/}
); }; export default SearchPublicNoticeForm;