Merge pull request #212 from DeimosPr4/US-26-ModificarÁreaComún
modificar area comun
This commit is contained in:
commit
252ef5ae8d
|
@ -425,6 +425,23 @@ export class AppController {
|
||||||
return this.appService.changeStatusCommonArea(pId, pStatus);
|
return this.appService.changeStatusCommonArea(pId, pStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Post('commonArea/updateCommonArea')
|
||||||
|
updateCommonArea(
|
||||||
|
@Body('_id') id: string,
|
||||||
|
@Body('name') name: string,
|
||||||
|
@Body('hourMin') hourMin: string,
|
||||||
|
@Body('hourMax') hourMax: string,
|
||||||
|
@Body('bookable') bookable: number,
|
||||||
|
@Body('community_id') community_id: string,
|
||||||
|
) {
|
||||||
|
return this.appService.updateCommonArea(
|
||||||
|
id,
|
||||||
|
name,
|
||||||
|
hourMin,
|
||||||
|
hourMax,
|
||||||
|
bookable,
|
||||||
|
community_id,);
|
||||||
|
}
|
||||||
// #==== API GUEST
|
// #==== API GUEST
|
||||||
//#API userService - create user
|
//#API userService - create user
|
||||||
@Post('guest/createGuest')
|
@Post('guest/createGuest')
|
||||||
|
|
|
@ -522,7 +522,27 @@ export class AppService {
|
||||||
.pipe(map((message: string) => ({ message })));
|
.pipe(map((message: string) => ({ message })));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateCommonArea(
|
||||||
|
id: string,
|
||||||
|
name: string,
|
||||||
|
hourMin: string,
|
||||||
|
hourMax: string,
|
||||||
|
bookable: number,
|
||||||
|
community_id: string,
|
||||||
|
) {
|
||||||
|
const pattern = { cmd: 'updateCommonArea' };
|
||||||
|
const payload = {
|
||||||
|
id: id,
|
||||||
|
name: name,
|
||||||
|
hourMin: hourMin,
|
||||||
|
hourMax: hourMax,
|
||||||
|
bookable: bookable,
|
||||||
|
community_id: community_id,
|
||||||
|
};
|
||||||
|
return this.clientCommonAreaApp
|
||||||
|
.send<string>(pattern, payload)
|
||||||
|
.pipe(map((message: string) => ({ message })));
|
||||||
|
}
|
||||||
// ====================== GUESTS ===============================
|
// ====================== GUESTS ===============================
|
||||||
|
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
|
|
|
@ -26,6 +26,7 @@ export class CommonAreasService {
|
||||||
}
|
}
|
||||||
|
|
||||||
update(id: string, commonArea: CommonAreaDocument) {
|
update(id: string, commonArea: CommonAreaDocument) {
|
||||||
|
console.log(commonArea);
|
||||||
return this.commonAreaModel.findOneAndUpdate({ _id: id }, commonArea, {
|
return this.commonAreaModel.findOneAndUpdate({ _id: id }, commonArea, {
|
||||||
new: true,
|
new: true,
|
||||||
});
|
});
|
||||||
|
|
|
@ -8,7 +8,7 @@ import { Toast } from 'primereact/toast';
|
||||||
import { Dialog } from 'primereact/dialog';
|
import { Dialog } from 'primereact/dialog';
|
||||||
import { Toolbar } from 'primereact/toolbar';
|
import { Toolbar } from 'primereact/toolbar';
|
||||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
||||||
import { faHome, faUserAlt } from '@fortawesome/free-solid-svg-icons';
|
import { faClock, faHome, faHomeAlt, faUserAlt } from '@fortawesome/free-solid-svg-icons';
|
||||||
import { faCircleQuestion } from '@fortawesome/free-solid-svg-icons';
|
import { faCircleQuestion } from '@fortawesome/free-solid-svg-icons';
|
||||||
import { faAt } from '@fortawesome/free-solid-svg-icons';
|
import { faAt } from '@fortawesome/free-solid-svg-icons';
|
||||||
import { faIdCardAlt } from '@fortawesome/free-solid-svg-icons';
|
import { faIdCardAlt } from '@fortawesome/free-solid-svg-icons';
|
||||||
|
@ -41,11 +41,10 @@ const AreasComunes = () => {
|
||||||
const [submitted, setSubmitted] = useState(false);
|
const [submitted, setSubmitted] = useState(false);
|
||||||
const toast = useRef(null);
|
const toast = useRef(null);
|
||||||
const dt = useRef(null);
|
const dt = useRef(null);
|
||||||
|
|
||||||
const [cookies, setCookie] = useCookies();
|
const [cookies, setCookie] = useCookies();
|
||||||
const [changeStatusAreaDialog, setChangeStatusAreaDialog] = useState(false);
|
const [changeStatusAreaDialog, setChangeStatusAreaDialog] = useState(false);
|
||||||
|
const [areaDialog, setAreaDialog] = useState(false);
|
||||||
|
const [saveButtonTitle, setSaveButtonTitle] = useState("Registrar")
|
||||||
|
|
||||||
async function getCommonAreas() {
|
async function getCommonAreas() {
|
||||||
await fetch(`http://localhost:4000/commonArea/findByCommunity/${cookies.community_id}`, { method: 'GET' })
|
await fetch(`http://localhost:4000/commonArea/findByCommunity/${cookies.community_id}`, { method: 'GET' })
|
||||||
|
@ -57,7 +56,7 @@ const AreasComunes = () => {
|
||||||
if (item.bookable == '1') {
|
if (item.bookable == '1') {
|
||||||
item.bookable_text = 'Necesaria';
|
item.bookable_text = 'Necesaria';
|
||||||
} else {
|
} else {
|
||||||
item.bookable_text = 'No es necesarioa';
|
item.bookable_text = 'No es necesaria';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.status == '1') {
|
if (item.status == '1') {
|
||||||
|
@ -69,7 +68,6 @@ const AreasComunes = () => {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
data = data.filter(
|
data = data.filter(
|
||||||
(val) => val.status != -1,
|
(val) => val.status != -1,
|
||||||
)
|
)
|
||||||
|
@ -81,75 +79,147 @@ const AreasComunes = () => {
|
||||||
getCommonAreas();
|
getCommonAreas();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const findIndexById = (id) => {
|
||||||
|
let index = -1;
|
||||||
|
for (let i = 0; i < commonAreaList.length; i++) {
|
||||||
|
if (commonAreaList[i]._id === id) {
|
||||||
|
index = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
|
||||||
const saveCommonArea = () => {
|
const saveCommonArea = () => {
|
||||||
|
let _common_areas = [...commonAreaList];
|
||||||
|
let _common_area = { ...commonArea };
|
||||||
|
_common_area.community_id = cookies.community_id;
|
||||||
if (
|
if (
|
||||||
commonArea.name &&
|
commonArea.name &&
|
||||||
commonArea.hourMin < commonArea.hourMax
|
commonArea.hourMin < commonArea.hourMax
|
||||||
) {
|
) {
|
||||||
let _common_areas = [...commonAreaList];
|
if (commonArea._id) {
|
||||||
let _common_area = { ...commonArea };
|
fetch('http://localhost:4000/commonArea/updateCommonArea', {
|
||||||
_common_area.community_id = cookies.community_id;
|
cache: 'no-cache',
|
||||||
|
method: 'POST',
|
||||||
|
body: JSON.stringify(_common_area),
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.then(function (response) {
|
||||||
|
if (response.status != 201)
|
||||||
|
console.log('Ocurrió un error con el servicio: ' + response.status);
|
||||||
|
else return response.json();
|
||||||
|
})
|
||||||
|
.then(function (data) {
|
||||||
|
return data.message;
|
||||||
|
})
|
||||||
|
.then((data) => {
|
||||||
|
const index = findIndexById(commonArea._id);
|
||||||
|
|
||||||
// console.log(houses)
|
if (data) {
|
||||||
fetch('http://localhost:4000/commonArea/createCommonArea', {
|
if (data.bookable == '1') {
|
||||||
cache: 'no-cache',
|
data.bookable_text = 'Necesaria';
|
||||||
method: 'POST',
|
} else {
|
||||||
body: JSON.stringify(_common_area),
|
data.bookable_text = 'No es necesaria';
|
||||||
headers: {
|
}
|
||||||
'Content-Type': 'application/json',
|
|
||||||
},
|
if (data.status == '1') {
|
||||||
})
|
data.status_text = 'Activo';
|
||||||
.then(function (response) {
|
} else if (data.status == '0') {
|
||||||
if (response.status != 201)
|
data.status_text = 'Inactivo';
|
||||||
console.log('Ocurrió un error con el servicio: ' + response.status);
|
} else {
|
||||||
else return response.json();
|
data.status_text = 'Eliminado';
|
||||||
})
|
}
|
||||||
.then(function (data) {
|
|
||||||
return data.message;
|
|
||||||
})
|
|
||||||
.then((data) => {
|
|
||||||
if (data) {
|
|
||||||
if (data.bookable == '1') {
|
|
||||||
data.bookable_text = 'Necesaria';
|
|
||||||
} else {
|
|
||||||
data.bookable_text = 'No es necesaria';
|
|
||||||
}
|
}
|
||||||
|
_common_areas[index] = _common_area;
|
||||||
|
|
||||||
if (data.status == '1') {
|
toast.current.show({
|
||||||
data.status_text = 'Activo';
|
severity: 'success',
|
||||||
} else if (data.status == '0') {
|
summary: 'Actualización exitosa',
|
||||||
data.status_text = 'Inactivo';
|
detail: 'Área Común Actualizada',
|
||||||
} else {
|
life: 3000,
|
||||||
data.status_text = 'Eliminado';
|
});
|
||||||
}
|
setCommonAreaList(_common_areas);
|
||||||
}
|
setAreaDialog(false);
|
||||||
_common_areas.push(data);
|
setCommonArea(emptyCommonArea);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log('Ocurrió un error con el fetch', err);
|
||||||
|
toast.current.show({
|
||||||
|
severity: 'danger',
|
||||||
|
summary: 'Error',
|
||||||
|
detail: 'No se pudo registrar el área común',
|
||||||
|
life: 3000
|
||||||
|
});
|
||||||
|
|
||||||
toast.current.show({
|
|
||||||
severity: 'success',
|
|
||||||
summary: 'Registro exitoso',
|
|
||||||
detail: 'Área Común Creada',
|
|
||||||
life: 3000,
|
|
||||||
});
|
});
|
||||||
setCommonAreaList(_common_areas);
|
} else {
|
||||||
setCommonArea(emptyCommonArea);
|
// console.log(houses)
|
||||||
|
fetch('http://localhost:4000/commonArea/createCommonArea', {
|
||||||
|
cache: 'no-cache',
|
||||||
|
method: 'POST',
|
||||||
|
body: JSON.stringify(_common_area),
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.then(function (response) {
|
||||||
console.log('Ocurrió un error con el fetch', err);
|
if (response.status != 201 && response.status != 200)
|
||||||
toast.current.show({
|
console.log('Ocurrió un error con el servicio: ' + response.status);
|
||||||
severity: 'danger',
|
else return response.json();
|
||||||
summary: 'Error',
|
})
|
||||||
detail: 'No se pudo registrar el área común',
|
.then(function (data) {
|
||||||
life: 3000
|
return data.message;
|
||||||
});
|
})
|
||||||
|
.then((data) => {
|
||||||
|
|
||||||
});
|
if (data) {
|
||||||
|
if (data.bookable == '1') {
|
||||||
|
data.bookable_text = 'Necesaria';
|
||||||
|
} else {
|
||||||
|
data.bookable_text = 'No es necesaria';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.status == '1') {
|
||||||
|
data.status_text = 'Activo';
|
||||||
|
} else if (data.status == '0') {
|
||||||
|
data.status_text = 'Inactivo';
|
||||||
|
} else {
|
||||||
|
data.status_text = 'Eliminado';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_common_areas.push(_common_area);
|
||||||
|
|
||||||
|
toast.current.show({
|
||||||
|
severity: 'success',
|
||||||
|
summary: 'Registro exitoso',
|
||||||
|
detail: 'Área Común Registrado',
|
||||||
|
life: 3000,
|
||||||
|
});
|
||||||
|
setCommonAreaList(_common_areas);
|
||||||
|
setAreaDialog(false);
|
||||||
|
|
||||||
|
setCommonArea(emptyCommonArea);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log('Ocurrió un error con el fetch', err);
|
||||||
|
toast.current.show({
|
||||||
|
severity: 'danger',
|
||||||
|
summary: 'Error',
|
||||||
|
detail: 'No se pudo registrar el área común',
|
||||||
|
life: 3000
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
setSubmitted(true);
|
setSubmitted(true);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
const deleteCommonArea = () => {
|
const deleteCommonArea = () => {
|
||||||
fetch('http://localhost:4000/commonArea/deleteCommonArea/' + commonArea._id, {
|
fetch('http://localhost:4000/commonArea/deleteCommonArea/' + commonArea._id, {
|
||||||
cache: 'no-cache',
|
cache: 'no-cache',
|
||||||
|
@ -283,8 +353,6 @@ const AreasComunes = () => {
|
||||||
setDeleteCommonAreasDialog(true);
|
setDeleteCommonAreasDialog(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const hideChangeStatusAreaDialog = () => {
|
const hideChangeStatusAreaDialog = () => {
|
||||||
setChangeStatusAreaDialog(false);
|
setChangeStatusAreaDialog(false);
|
||||||
};
|
};
|
||||||
|
@ -294,6 +362,27 @@ const AreasComunes = () => {
|
||||||
setChangeStatusAreaDialog(true);
|
setChangeStatusAreaDialog(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const hideAreaDialog = () => {
|
||||||
|
setSubmitted(false);
|
||||||
|
setAreaDialog(false);
|
||||||
|
setCommonArea(emptyCommonArea);
|
||||||
|
setSaveButtonTitle('Registrar');
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
const openNewArea = () => {
|
||||||
|
setCommonArea(emptyCommonArea);
|
||||||
|
setAreaDialog(true);
|
||||||
|
setSubmitted(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const editArea = (area) => {
|
||||||
|
setCommonArea({ ...area });
|
||||||
|
setAreaDialog(true);
|
||||||
|
setSaveButtonTitle('Actualizar');
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
const actionsCommonArea = (rowData) => {
|
const actionsCommonArea = (rowData) => {
|
||||||
let icono = '';
|
let icono = '';
|
||||||
let text = '';
|
let text = '';
|
||||||
|
@ -307,15 +396,21 @@ const AreasComunes = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="actions">
|
<div className="actions">
|
||||||
|
<Button
|
||||||
|
icon="pi pi-pencil"
|
||||||
|
className="p-button-rounded p-button-success my-2 mx-2"
|
||||||
|
onClick={() => editArea(rowData)}
|
||||||
|
title="Editar Área Común"
|
||||||
|
/>
|
||||||
<Button
|
<Button
|
||||||
icon={`${icono}`}
|
icon={`${icono}`}
|
||||||
className="p-button-rounded p-button-warning mt-2 mx-2"
|
className="p-button-rounded p-button-warning my-2 mx-2"
|
||||||
onClick={() => confirmChangeStatusArea(rowData)}
|
onClick={() => confirmChangeStatusArea(rowData)}
|
||||||
title={`${text}`}
|
title={`${text}`}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
icon="pi pi-trash"
|
icon="pi pi-trash"
|
||||||
className="p-button-rounded p-button-danger mt-2"
|
className="p-button-rounded p-button-danger my-2 mx-2"
|
||||||
onClick={() => confirmDeleteCommonArea(rowData)}
|
onClick={() => confirmDeleteCommonArea(rowData)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -335,6 +430,32 @@ const AreasComunes = () => {
|
||||||
setCommonArea(_commonArea);
|
setCommonArea(_commonArea);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onTimeChange = (e, name) => {
|
||||||
|
e.target.value.split(':')[1] = "00";
|
||||||
|
const val = (e.target && e.target.value.split(':')[0]) || '';
|
||||||
|
let _area = { ...commonArea };
|
||||||
|
document.getElementById(`${name}`).value = val + ":00";
|
||||||
|
_area[`${name}`] = val + ":00";
|
||||||
|
setCommonArea(_area);
|
||||||
|
};
|
||||||
|
|
||||||
|
const areaDialogFooter = (
|
||||||
|
<>
|
||||||
|
<Button
|
||||||
|
label={`${saveButtonTitle}`}
|
||||||
|
icon="pi pi-check"
|
||||||
|
className="p-button-primary"
|
||||||
|
onClick={saveCommonArea}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
label="Cerrar"
|
||||||
|
icon="pi pi-times"
|
||||||
|
className="p-button-text"
|
||||||
|
onClick={hideAreaDialog}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
const deleteCommonAreaDialogFooter = (
|
const deleteCommonAreaDialogFooter = (
|
||||||
<>
|
<>
|
||||||
<Button label="No" icon="pi pi-times" className="p-button-text" onClick={hideDeleteCommonAreaDialog} />
|
<Button label="No" icon="pi pi-times" className="p-button-text" onClick={hideDeleteCommonAreaDialog} />
|
||||||
|
@ -370,7 +491,18 @@ const AreasComunes = () => {
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<div className="my-2">
|
<div className="my-2">
|
||||||
<Button label="Eliminar" icon="pi pi-trash" className="p-button-danger" onClick={confirmDeleteSelected} disabled={!selectedCommonAreas || !selectedCommonAreas.length} />
|
<Button
|
||||||
|
label="Agregar Área Común"
|
||||||
|
icon="pi pi-plus"
|
||||||
|
className="p-button-primary mr-2"
|
||||||
|
onClick={openNewArea}
|
||||||
|
/>
|
||||||
|
<Button label="Eliminar"
|
||||||
|
icon="pi pi-trash"
|
||||||
|
className="p-button-danger"
|
||||||
|
onClick={confirmDeleteSelected}
|
||||||
|
disabled={!selectedCommonAreas || !selectedCommonAreas.length}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
)
|
)
|
||||||
|
@ -401,7 +533,7 @@ const AreasComunes = () => {
|
||||||
const headerName = (
|
const headerName = (
|
||||||
<>
|
<>
|
||||||
<p>{' '}
|
<p>{' '}
|
||||||
<FontAwesomeIcon icon={faUserAlt} style={{ color: "#C08135" }} /> {' '}
|
<FontAwesomeIcon icon={faHomeAlt} style={{ color: "#C08135" }} /> {' '}
|
||||||
Nombre
|
Nombre
|
||||||
</p>
|
</p>
|
||||||
</>
|
</>
|
||||||
|
@ -411,7 +543,7 @@ const AreasComunes = () => {
|
||||||
<>
|
<>
|
||||||
<p>
|
<p>
|
||||||
{' '}
|
{' '}
|
||||||
<FontAwesomeIcon icon={faUserAlt} style={{ color: "#D7A86E" }} />{' '}
|
<FontAwesomeIcon icon={faClock} style={{ color: "#D7A86E" }} />{' '}
|
||||||
Hora de apertura
|
Hora de apertura
|
||||||
</p>
|
</p>
|
||||||
</>
|
</>
|
||||||
|
@ -420,7 +552,7 @@ const AreasComunes = () => {
|
||||||
const headerHourMax = (
|
const headerHourMax = (
|
||||||
<>
|
<>
|
||||||
<p> {' '}
|
<p> {' '}
|
||||||
<FontAwesomeIcon icon={faIdCardAlt} style={{ color: "#C08135" }} />{' '}
|
<FontAwesomeIcon icon={faClock} style={{ color: "#C08135" }} />{' '}
|
||||||
Hora de cierre
|
Hora de cierre
|
||||||
</p>
|
</p>
|
||||||
</>
|
</>
|
||||||
|
@ -488,26 +620,154 @@ const AreasComunes = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="grid">
|
<div className="grid">
|
||||||
<div className="col-12">
|
<div className="col-12">
|
||||||
<Toast ref={toast} />
|
<Toast ref={toast} />
|
||||||
<div className="card">
|
<div className="card">
|
||||||
<Toolbar className="mb-4" left={leftToolbarTemplate} right={rightToolbarTemplate}></Toolbar>
|
<Toolbar className="mb-4" left={leftToolbarTemplate} right={rightToolbarTemplate}></Toolbar>
|
||||||
<DataTable ref={dt} value={commonAreaList} dataKey="_id" paginator rows={5} selection={selectedCommonAreas} onSelectionChange={(e) => setSelectedCommonAreas(e.value)}
|
<DataTable ref={dt} value={commonAreaList} dataKey="_id" paginator rows={10} selection={selectedCommonAreas} onSelectionChange={(e) => setSelectedCommonAreas(e.value)}
|
||||||
scrollable scrollHeight="400px" scrollDirection="both" header={header}
|
scrollable scrollHeight="700px" scrollDirection="both" header={header}
|
||||||
rowsPerPageOptions={[5, 10, 25]} className="datatable-responsive mt-3"
|
rowsPerPageOptions={[10, 20, 30]} className="datatable-responsive mt-3"
|
||||||
paginatorTemplate="FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink CurrentPageReport RowsPerPageDropdown"
|
paginatorTemplate="FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink CurrentPageReport RowsPerPageDropdown"
|
||||||
currentPageReportTemplate="Mostrando {first} a {last} de {totalRecords} áreas comunes"
|
currentPageReportTemplate="Mostrando {first} a {last} de {totalRecords} áreas comunes"
|
||||||
globalFilter={globalFilter} emptyMessage="No hay áreas comunes registrados.">
|
globalFilter={globalFilter} emptyMessage="No hay áreas comunes registrados.">
|
||||||
<Column selectionMode="multiple" headerStyle={{ width: '3rem' }}></Column>
|
<Column selectionMode="multiple" headerStyle={{ width: '3rem' }}></Column>
|
||||||
<Column field="name" sortable header={headerName} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
|
<Column field="name" sortable header={headerName} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
|
||||||
<Column field="hourMin" header={headerHourMin} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }} alignFrozen="left"></Column>
|
<Column field="hourMin" sortable header={headerHourMin} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }} alignFrozen="left"></Column>
|
||||||
<Column field="hourMax" header={headerHourMax} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}> </Column>
|
<Column field="hourMax" sortable header={headerHourMax} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}> </Column>
|
||||||
<Column field="bookable" sortable header={headerBookable} body={bookableBodyTemplate} style={{ flexGrow: 1, flexBasis: '200px', minWidth: '200px', wordBreak: 'break-word' }}></Column>
|
<Column field="bookable" sortable header={headerBookable} body={bookableBodyTemplate} style={{ flexGrow: 1, flexBasis: '200px', minWidth: '200px', wordBreak: 'break-word' }}></Column>
|
||||||
<Column field="status" sortable header={headerStatus} body={statusBodyTemplate} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
|
<Column field="status" sortable header={headerStatus} body={statusBodyTemplate} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
|
||||||
<Column style={{ flexGrow: 1, flexBasis: '130px', minWidth: '130px' }} body={actionsCommonArea}></Column>
|
<Column style={{ flexGrow: 1, flexBasis: '80px', minWidth: '80px' }} body={actionsCommonArea}></Column>
|
||||||
</DataTable>
|
</DataTable>
|
||||||
|
<Dialog
|
||||||
|
visible={areaDialog}
|
||||||
|
style={{ width: '650px' }}
|
||||||
|
header="Agregar Área Común"
|
||||||
|
modal
|
||||||
|
className="p-fluid"
|
||||||
|
footer={areaDialogFooter}
|
||||||
|
onHide={hideAreaDialog}
|
||||||
|
>
|
||||||
|
{commonArea && (
|
||||||
|
<div className="p-fluid formgrid grid">
|
||||||
|
<div className="field col-12 md:col-12">
|
||||||
|
<label htmlFor="name">Nombre</label>
|
||||||
|
<div className="p-0 col-12 md:col-12">
|
||||||
|
|
||||||
|
<div className="p-inputgroup">
|
||||||
|
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
||||||
|
<i className="pi pi-home"></i>
|
||||||
|
</span>
|
||||||
|
<InputText id="name"
|
||||||
|
type="text"
|
||||||
|
onChange={(e) => onInputChange(e, 'name')}
|
||||||
|
value={commonArea.name}
|
||||||
|
required
|
||||||
|
autoFocus
|
||||||
|
className={classNames({
|
||||||
|
'p-invalid': submitted && commonArea.name === '',
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{submitted && commonArea.name === '' && (
|
||||||
|
<small className="p-invalid">Nombre es requirido.</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="field col-12 md:col-6">
|
||||||
|
<label htmlFor="hourMin">Hora apertura</label>
|
||||||
|
<div className="p-0 col-12 md:col-12">
|
||||||
|
<div className="p-inputgroup">
|
||||||
|
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
||||||
|
<i className="pi pi-clock"></i>
|
||||||
|
</span>
|
||||||
|
<InputText id="hourMin"
|
||||||
|
type="time"
|
||||||
|
min="00:00" max="23:59"
|
||||||
|
step="3600"
|
||||||
|
onChange={(e) => onTimeChange(e, 'hourMin')}
|
||||||
|
value={commonArea.hourMin}
|
||||||
|
required
|
||||||
|
autoFocus
|
||||||
|
className={classNames({
|
||||||
|
'p-invalid': submitted && compareTimesMinRequired(commonArea.hourMax, commonArea.hourMin),
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{submitted && compareTimesMinRequired(commonArea.hourMax, commonArea.hourMin) && (
|
||||||
|
<small className="p-invalid">La hora de apertura debe ser menor que la hora de cierre.</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="field col-12 md:col-6">
|
||||||
|
<label htmlFor="hourMax">Hora de cierre</label>
|
||||||
|
<div className="p-0 col-12 md:col-12">
|
||||||
|
<div className="p-inputgroup">
|
||||||
|
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
||||||
|
<i className="pi pi-clock"></i>
|
||||||
|
</span>
|
||||||
|
<InputText id="hourMax"
|
||||||
|
type="time"
|
||||||
|
min="00:00"
|
||||||
|
max="23:59"
|
||||||
|
step="3600"
|
||||||
|
onChange={(e) => onTimeChange(e, 'hourMax')}
|
||||||
|
value={commonArea.hourMax}
|
||||||
|
required
|
||||||
|
autoFocus
|
||||||
|
className={classNames({
|
||||||
|
'p-invalid': submitted && compareTimesMinRequired(commonArea.hourMax, commonArea.hourMin),
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{submitted && compareTimesMinRequired(commonArea.hourMax, commonArea.hourMin) && (
|
||||||
|
<small className="p-invalid">La hora de cierre debe ser mayor que la hora de apertura</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="field col-12 md:col-12">
|
||||||
|
<label htmlFor="bookable">¿Necesita Reservación?</label>
|
||||||
|
<div className="formgrid grid align-items-end" style={{ marginTop: '12px', width: '300px' }}>
|
||||||
|
<div className="field-radiobutton col-6">
|
||||||
|
|
||||||
|
<RadioButton
|
||||||
|
inputId="bookable1"
|
||||||
|
name="bookable"
|
||||||
|
value="1"
|
||||||
|
onChange={onBookableChange}
|
||||||
|
checked={commonArea.bookable === 1}
|
||||||
|
/>
|
||||||
|
<label htmlFor="bookable1">
|
||||||
|
<span className="p-icon-input-khaki">
|
||||||
|
<i className="pi pi-check status status-1"></i> Sí
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div className="field-radiobutton col-6">
|
||||||
|
<RadioButton
|
||||||
|
inputId="bookable2"
|
||||||
|
name="bookable"
|
||||||
|
value="0"
|
||||||
|
onChange={onBookableChange}
|
||||||
|
checked={commonArea.bookable === 0}
|
||||||
|
/>
|
||||||
|
<label htmlFor="bookable2">
|
||||||
|
<span className="p-icon-input-khaki">
|
||||||
|
<i className="pi pi-times status status-0"></i> No
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Dialog>
|
||||||
<Dialog visible={deleteCommonAreaDialog} style={{ width: '450px' }} header="Confirmar" modal footer={deleteCommonAreaDialogFooter} onHide={hideDeleteCommonAreaDialog}>
|
<Dialog visible={deleteCommonAreaDialog} style={{ width: '450px' }} header="Confirmar" modal footer={deleteCommonAreaDialogFooter} onHide={hideDeleteCommonAreaDialog}>
|
||||||
<div className="flex align-items-center justify-content-center">
|
<div className="flex align-items-center justify-content-center">
|
||||||
<i className="pi pi-exclamation-triangle mr-3" style={{ fontSize: '2rem' }} />
|
<i className="pi pi-exclamation-triangle mr-3" style={{ fontSize: '2rem' }} />
|
||||||
|
@ -542,123 +802,6 @@ const AreasComunes = () => {
|
||||||
</Dialog>
|
</Dialog>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-12">
|
|
||||||
<div className="card">
|
|
||||||
<h5>Registro de área común</h5>
|
|
||||||
<div className="p-fluid formgrid grid">
|
|
||||||
<div className="field col-12 md:col-6">
|
|
||||||
<label htmlFor="name">Nombre</label>
|
|
||||||
<div className="p-0 col-12 md:col-12">
|
|
||||||
|
|
||||||
<div className="p-inputgroup">
|
|
||||||
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
|
||||||
<i className="pi pi-home"></i>
|
|
||||||
</span>
|
|
||||||
<InputText id="name"
|
|
||||||
type="text"
|
|
||||||
onChange={(e) => onInputChange(e, 'name')}
|
|
||||||
value={commonArea.name}
|
|
||||||
required
|
|
||||||
autoFocus
|
|
||||||
className={classNames({
|
|
||||||
'p-invalid': submitted && commonArea.name === '',
|
|
||||||
})}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
{submitted && commonArea.name === '' && (
|
|
||||||
<small className="p-invalid">Nombre es requirido.</small>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="field col-12 md:col-6">
|
|
||||||
<label htmlFor="hourMin">Hora apertura</label>
|
|
||||||
<div className="p-0 col-12 md:col-12">
|
|
||||||
<div className="p-inputgroup">
|
|
||||||
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
|
||||||
<i className="pi pi-home"></i>
|
|
||||||
</span>
|
|
||||||
<InputText id="hourMin"
|
|
||||||
type="time"
|
|
||||||
min="00:00" max="23:59"
|
|
||||||
step="3600000"
|
|
||||||
onChange={(e) => onInputChange(e, 'hourMin')}
|
|
||||||
value={commonArea.hourMin}
|
|
||||||
required
|
|
||||||
autoFocus
|
|
||||||
className={classNames({
|
|
||||||
'p-invalid': submitted && compareTimesMinRequired(commonArea.hourMax, commonArea.hourMin),
|
|
||||||
})}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
{submitted && compareTimesMinRequired(commonArea.hourMax, commonArea.hourMin) && (
|
|
||||||
<small className="p-invalid">La hora de apertura debe ser menor que la hora de cierre.</small>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="field col-12 md:col-6">
|
|
||||||
<label htmlFor="hourMax">Hora de cierre</label>
|
|
||||||
<div className="p-0 col-12 md:col-12">
|
|
||||||
<div className="p-inputgroup">
|
|
||||||
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
|
||||||
<i className="pi pi-home"></i>
|
|
||||||
</span>
|
|
||||||
<InputText id="hourMax"
|
|
||||||
type="time"
|
|
||||||
min="00:00" max="23:59"
|
|
||||||
step="3600000"
|
|
||||||
onChange={(e) => onInputChange(e, 'hourMax')}
|
|
||||||
value={commonArea.hourMax}
|
|
||||||
required
|
|
||||||
autoFocus
|
|
||||||
className={classNames({
|
|
||||||
'p-invalid': submitted && compareTimesMinRequired(commonArea.hourMax, commonArea.hourMin),
|
|
||||||
})}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
{submitted && compareTimesMinRequired(commonArea.hourMax, commonArea.hourMin) && (
|
|
||||||
<small className="p-invalid">La hora de cierre debe ser mayor que la hora de apertura</small>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="field col-12 md:col-6">
|
|
||||||
<label htmlFor="bookable">¿Necesita Reservación?</label>
|
|
||||||
<div className="formgrid grid align-items-end" style={{ marginTop: '12px', width: '300px' }}>
|
|
||||||
<div className="field-radiobutton col-6">
|
|
||||||
|
|
||||||
<RadioButton
|
|
||||||
inputId="bookable1"
|
|
||||||
name="bookable"
|
|
||||||
value="1"
|
|
||||||
onChange={onBookableChange}
|
|
||||||
checked={commonArea.bookable === '1'}
|
|
||||||
/>
|
|
||||||
<label htmlFor="bookable1">
|
|
||||||
<span className="p-icon-input-khaki">
|
|
||||||
<i className="pi pi-check status status-1"></i> Sí
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
<div className="field-radiobutton col-6">
|
|
||||||
<RadioButton
|
|
||||||
inputId="bookable2"
|
|
||||||
name="bookable"
|
|
||||||
value="0"
|
|
||||||
onChange={onBookableChange}
|
|
||||||
checked={commonArea.bookable === '0'}
|
|
||||||
/>
|
|
||||||
<label htmlFor="bookable2">
|
|
||||||
<span className="p-icon-input-khaki">
|
|
||||||
<i className="pi pi-times status status-0"></i> No
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Button label="Registrar" onClick={saveCommonArea}></Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue