- added page with amendements; - implemented communication for amendment; - implemented amendment creation;
171 lines
6.6 KiB
JavaScript
171 lines
6.6 KiB
JavaScript
import React, { useState, useEffect} from 'react';
|
|
import { __ } from '@wordpress/i18n';
|
|
import { is, uniq } from 'ramda';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
// store
|
|
//import { storeSet, storeGet } from '../../../../store';
|
|
|
|
// api
|
|
import ApplicationService from '../../../../service/application-service';
|
|
|
|
// components
|
|
import { FilterMatchMode, FilterOperator } from 'primereact/api';
|
|
import { DataTable } from 'primereact/datatable';
|
|
import { Column } from 'primereact/column';
|
|
import { InputText } from 'primereact/inputtext';
|
|
import { IconField } from 'primereact/iconfield';
|
|
import { InputIcon } from 'primereact/inputicon';
|
|
import { Button } from 'primereact/button';
|
|
import { Calendar } from 'primereact/calendar';
|
|
import ProperBandoLabel from '../../../../components/ProperBandoLabel';
|
|
|
|
|
|
const AllDomandeTable = ({ openDialogFn, updaterString = '' }) => {
|
|
const [items, setItems] = useState(null);
|
|
const [filters, setFilters] = useState(null);
|
|
const [localAsyncRequest, setLocalAsyncRequest] = useState(false);
|
|
const [globalFilterValue, setGlobalFilterValue] = useState('');
|
|
const [statuses, setStatuses] = useState([]);
|
|
|
|
useEffect(() => {
|
|
setLocalAsyncRequest(true);
|
|
ApplicationService.getApplications(getCallback, errGetCallbacks, [['status', 'SUBMIT']]);
|
|
}, [updaterString]);
|
|
|
|
const getCallback = (data) => {
|
|
if (data.status === 'SUCCESS') {
|
|
setItems(getFormattedData(data.data));
|
|
setStatuses(uniq(data.data.map(o => o.status)))
|
|
initFilters();
|
|
}
|
|
setLocalAsyncRequest(false);
|
|
}
|
|
|
|
const errGetCallbacks = (data) => {
|
|
setLocalAsyncRequest(false);
|
|
}
|
|
|
|
const getFormattedData = (data) => {
|
|
return data.map((d) => {
|
|
d.callEndDate = is(String, d.callEndDate) ? new Date(d.callEndDate) : (d.callEndDate ? d.callEndDate : '');
|
|
d.modifiedDate = is(String, d.modifiedDate) ? new Date(d.modifiedDate) : (d.modifiedDate ? d.modifiedDate : '');
|
|
d.submissionDate = is(String, d.submissionDate) ? new Date(d.submissionDate) : (d.submissionDate ? d.submissionDate : '');
|
|
return d;
|
|
});
|
|
};
|
|
|
|
const formatDate = (value) => {
|
|
return value.toLocaleDateString('it-IT', {
|
|
day: '2-digit',
|
|
month: '2-digit',
|
|
year: 'numeric'
|
|
});
|
|
};
|
|
|
|
const clearFilter = () => {
|
|
initFilters();
|
|
};
|
|
|
|
const onGlobalFilterChange = (e) => {
|
|
const value = e.target.value;
|
|
let _filters = { ...filters };
|
|
|
|
_filters['global'].value = value;
|
|
|
|
setFilters(_filters);
|
|
setGlobalFilterValue(value);
|
|
};
|
|
|
|
const initFilters = () => {
|
|
setFilters({
|
|
global: { value: null, matchMode: FilterMatchMode.CONTAINS },
|
|
callTitle: {
|
|
operator: FilterOperator.AND,
|
|
constraints: [{ value: null, matchMode: FilterMatchMode.STARTS_WITH }]
|
|
},
|
|
submissionDate: {
|
|
operator: FilterOperator.AND,
|
|
constraints: [{ value: null, matchMode: FilterMatchMode.DATE_IS }]
|
|
},
|
|
callEndDate: {
|
|
operator: FilterOperator.AND,
|
|
constraints: [{ value: null, matchMode: FilterMatchMode.DATE_IS }]
|
|
}
|
|
});
|
|
setGlobalFilterValue('');
|
|
};
|
|
|
|
const renderHeader = () => {
|
|
return (
|
|
<div className="appTableHeader">
|
|
<Button type="button" icon="pi pi-filter-slash" label={__('Pulisci', 'gepafin')} outlined onClick={clearFilter} />
|
|
<IconField iconPosition="left">
|
|
<InputIcon className="pi pi-search" />
|
|
<InputText value={globalFilterValue} onChange={onGlobalFilterChange} placeholder={__('Cerca', 'gepafin')} />
|
|
</IconField>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const dateAppliedBodyTemplate = (rowData) => {
|
|
return formatDate(rowData.submissionDate);
|
|
};
|
|
|
|
const dateEndBodyTemplate = (rowData) => {
|
|
return formatDate(rowData.callEndDate);
|
|
};
|
|
|
|
const dateFilterTemplate = (options) => {
|
|
return <Calendar value={options.value} onChange={(e) => options.filterCallback(e.value, options.index)} dateFormat="mm/dd/yy" placeholder="mm/dd/yyyy" mask="99/99/9999" />;
|
|
};
|
|
|
|
const statusBodyTemplate = (rowData) => {
|
|
return <ProperBandoLabel status={rowData.status}/>;
|
|
};
|
|
|
|
const actionsBodyTemplate = (rowData) => {
|
|
return openDialogFn
|
|
? <Button severity="info"
|
|
onClick={() => openDialogFn(rowData.id)}
|
|
label={__('Assegnare', 'gepafin')}
|
|
icon="pi pi-pencil" size="small" iconPos="right" />
|
|
: <Link to={'/domande'}>
|
|
<Button severity="info" label={__('Gestire', 'gepafin')} size="small" />
|
|
</Link>
|
|
}
|
|
|
|
const header = renderHeader();
|
|
|
|
return(
|
|
<div className="appPageSection__table">
|
|
<DataTable value={items} paginator showGridlines rows={10} loading={localAsyncRequest} dataKey="id"
|
|
filters={filters}
|
|
globalFilterFields={['name', 'status']}
|
|
header={header}
|
|
emptyMessage={__('Nessun dato disponibile', 'gepafin')}
|
|
onFilter={(e) => setFilters(e.filters)}>
|
|
<Column field="id" header={__('ID domanda', 'gepafin')}
|
|
filter filterPlaceholder={__('Cerca', 'gepafin')}
|
|
style={{ minWidth: '12rem' }}/>
|
|
<Column field="callTitle" header={__('Bando', 'gepafin')}
|
|
filter filterPlaceholder={__('Cerca', 'gepafin')}
|
|
style={{ minWidth: '12rem' }}/>
|
|
<Column header={__('Data Ricezione', 'gepafin')}
|
|
filterField="submissionDate" dataType="date"
|
|
style={{ minWidth: '10rem' }}
|
|
body={dateAppliedBodyTemplate} filter filterElement={dateFilterTemplate}/>
|
|
<Column header={__('Scadenza', 'gepafin')}
|
|
filterField="callEndDate" dataType="date"
|
|
style={{ minWidth: '10rem' }}
|
|
body={dateEndBodyTemplate} filter filterElement={dateFilterTemplate}/>
|
|
<Column field="status" header={__('Stato', 'gepafin')}
|
|
style={{ width: '120px' }} body={statusBodyTemplate} />
|
|
<Column header={__('Azioni', 'gepafin')}
|
|
body={actionsBodyTemplate}/>
|
|
</DataTable>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AllDomandeTable; |