katoikia-app/web-ui/web-react/src/components/Inquilinos.js

655 lines
18 KiB
JavaScript
Raw Normal View History

2022-08-04 03:55:04 +00:00
import { Button } from 'primereact/button'
2022-07-20 00:54:20 +00:00
import { InputText } from 'primereact/inputtext'
2022-08-04 03:55:04 +00:00
import React, { useEffect, useRef, useState } from 'react'
import { DataTable } from 'primereact/datatable'
import { Column } from 'primereact/column'
import { Dropdown } from 'primereact/dropdown'
import { Toast } from 'primereact/toast'
import { Dialog } from 'primereact/dialog'
import { Toolbar } from 'primereact/toolbar'
2022-07-24 23:44:25 +00:00
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
2022-08-04 03:55:04 +00:00
import { faUserAlt } from '@fortawesome/free-solid-svg-icons'
import { faPhoneAlt } from '@fortawesome/free-solid-svg-icons'
import { faAt } from '@fortawesome/free-solid-svg-icons'
import { faIdCardAlt } from '@fortawesome/free-solid-svg-icons'
import { faHashtag } from '@fortawesome/free-solid-svg-icons'
import { faCircleQuestion } from '@fortawesome/free-solid-svg-icons'
import { useCookies } from 'react-cookie'
const Inquilinos = () => {
2022-08-01 00:19:20 +00:00
let emptyTenant = {
_id: null,
dni: '',
name: '',
last_name: '',
email: '',
phone: '',
password: '',
community_id: '',
community_name: '',
2022-08-01 02:02:13 +00:00
number_house: 'Sin número de vivienda',
2022-08-01 00:19:20 +00:00
user_type: '4',
date_entry: new Date(),
status: '1',
status_text: '',
2022-08-04 03:55:04 +00:00
}
2022-08-01 00:19:20 +00:00
2022-08-04 03:55:04 +00:00
const [tenants, setTenants] = useState([])
const [tenant, setTenant] = useState(emptyTenant)
const [selectedTentants, setSelectedTenants] = useState(null)
const [globalFilter, setGlobalFilter] = useState(null)
const [deleteTenantDialog, setDeleteTenantDialog] = useState(false)
const [deleteTenantsDialog, setDeleteTenantsDialog] = useState(false)
const [communitiesList, setCommunitiesList] = useState([])
const [communityId, setCommunityId] = useState(null)
const [submitted, setSubmitted] = useState(false)
const toast = useRef(null)
const dt = useRef(null)
2022-08-16 22:36:06 +00:00
const [housesList, setHousesList] = useState([])
const [houseId, setHouseId] = useState(null)
2022-08-04 03:55:04 +00:00
const [cookies, setCookie] = useCookies()
const [changeStatusTenantDialog, setChangeStatusTenantDialog] =
useState(false)
2022-08-01 00:19:20 +00:00
async function tenantsList() {
2022-08-04 03:55:04 +00:00
await fetch(
`http://localhost:4000/user/findTenants/${cookies.community_id}`,
{ method: 'GET' },
)
2022-08-01 00:19:20 +00:00
.then((response) => response.json())
2022-08-04 03:55:04 +00:00
.then((data) => data.message)
.then((data) => {
2022-08-04 06:54:52 +00:00
data = data.filter((val) => val.status !== -1)
2022-08-01 02:02:13 +00:00
data.map((item) => {
2022-08-04 06:54:52 +00:00
if (item.status === '1') {
2022-08-04 03:55:04 +00:00
item.status_text = 'Activo'
2022-08-04 06:54:52 +00:00
} else if (item.status === '0') {
2022-08-04 03:55:04 +00:00
item.status_text = 'Inactivo'
}
2022-08-04 06:54:52 +00:00
if (item.number_house === '') {
2022-08-04 03:55:04 +00:00
item.number_house = 'Sin vivienda asignada'
2022-08-01 02:02:13 +00:00
}
})
setTenants(data)
2022-08-04 03:55:04 +00:00
})
2022-08-01 00:19:20 +00:00
}
async function getCommunites() {
2022-08-04 03:55:04 +00:00
let response = await fetch(
'http://localhost:4000/community/allCommunities',
{ method: 'GET' },
)
2022-08-04 03:55:04 +00:00
let resList = await response.json()
let list = await resList.message
2022-08-04 06:54:52 +00:00
list = await list.filter((val) => val.status !== -1)
2022-08-04 03:55:04 +00:00
setCommunitiesList(await list)
}
2022-08-16 22:36:06 +00:00
async function getHouses() {
let response = await fetch(
`http://localhost:4000/community/findHousesCommunity/${cookies.community_id}`,
{ method: 'GET' },
)
.then(res => res.json())
.then(res => console.log())
let resList = await response.json()
let list = await resList.message
setHousesList(await list)
}
2022-08-01 00:19:20 +00:00
useEffect(() => {
2022-08-04 03:55:04 +00:00
tenantsList()
2022-08-04 06:31:21 +00:00
}, [tenantsList])
2022-08-01 00:19:20 +00:00
2022-08-16 22:36:06 +00:00
useEffect(() => {
getHouses()
}, [])
useEffect(() => {
2022-08-04 03:55:04 +00:00
getCommunites()
}, [])
2022-07-24 23:44:25 +00:00
2022-08-01 00:19:20 +00:00
const cList = communitiesList.map((item) => ({
label: item.name,
value: item._id,
}))
2022-07-24 23:44:25 +00:00
2022-08-16 22:36:06 +00:00
const hList = housesList.map((item) => ({
label: item.number_house,
value: item._id,
}))
function registrarInquilino() {
let newTenant = {
2022-08-04 03:54:57 +00:00
_id: null,
2022-08-04 03:55:04 +00:00
dni: '',
name: '',
last_name: '',
email: document.getElementById('correo_electronico').value,
phone: '',
password: '',
community_id: document.getElementById('numero_vivienda').value,
community_name: '',
number_house: 'Sin número de vivienda',
2022-08-04 03:54:57 +00:00
date_entry: new Date(),
2022-08-04 03:55:04 +00:00
user_type: '3',
status: '1',
status_text: '',
}
2022-07-20 00:28:41 +00:00
fetch('http://localhost:3000/api/createUser', {
method: 'POST',
cache: 'no-cache',
body: JSON.stringify(newTenant),
2022-07-20 00:28:41 +00:00
headers: {
'Content-Type': 'application/json',
},
}).then((response) => {
if (response.ok) {
2022-08-04 03:55:04 +00:00
alert('Inquilino registrado correctamente')
2022-07-20 00:28:41 +00:00
} else {
2022-08-04 03:55:04 +00:00
alert('Error al registrar inquilino')
2022-07-20 00:28:41 +00:00
}
2022-08-04 03:55:04 +00:00
})
}
2022-07-18 01:20:03 +00:00
2022-08-01 00:19:20 +00:00
const deleteTenant = () => {
2022-08-04 03:55:04 +00:00
let _tenants = tenants.filter((val) => val._id !== tenant._id)
setTenants(_tenants)
setDeleteTenantDialog(false)
setTenant(emptyTenant)
2022-08-01 00:19:20 +00:00
toast.current.show({
severity: 'success',
summary: 'Inquilino Eliminado',
life: 3000,
2022-08-04 03:55:04 +00:00
})
}
2022-08-01 00:19:20 +00:00
const deleteSelectedTenants = () => {
2022-08-04 03:55:04 +00:00
let _tenants = tenants.filter((val) => !selectedTentants.includes(val))
setTenants(_tenants)
setDeleteTenantsDialog(false)
setSelectedTenants(null)
2022-08-01 00:19:20 +00:00
toast.current.show({
severity: 'success',
summary: 'Éxito',
detail: 'Inquilinos Eliminados',
life: 3000,
2022-08-04 03:55:04 +00:00
})
}
2022-07-24 23:44:25 +00:00
const cambiarStatusUser = () => {
2022-08-04 06:54:52 +00:00
if (tenant.status === '1') {
2022-08-04 03:55:04 +00:00
tenant.status = '0'
tenant.status_text = 'Inactivo'
2022-08-04 06:54:52 +00:00
} else if (tenant.status === '0') {
2022-08-04 03:55:04 +00:00
tenant.status = '1'
tenant.status_text = 'Activo'
}
var data = {
id: tenant._id,
status: tenant.status,
2022-08-04 03:55:04 +00:00
}
fetch('http://localhost:4000/user/changeStatus', {
cache: 'no-cache',
method: 'POST',
body: JSON.stringify(data),
headers: {
2022-08-04 03:55:04 +00:00
'Content-Type': 'application/json',
},
})
2022-08-04 03:01:34 +00:00
.then((response) => {
2022-08-04 06:54:52 +00:00
if (response.status !== 201) {
2022-08-04 03:55:04 +00:00
console.log('Ocurrió un error con el servicio: ' + response.status)
} else {
return response.json()
}
2022-08-04 03:01:34 +00:00
})
2022-08-04 06:01:39 +00:00
.then(() => {
2022-08-04 03:55:04 +00:00
setChangeStatusTenantDialog(false)
2022-08-04 03:01:34 +00:00
toast.current.show({
severity: 'success',
summary: 'Éxito',
detail: 'Inquilino Actualizado',
life: 3000,
2022-08-04 03:55:04 +00:00
})
2022-08-04 03:01:34 +00:00
})
2022-08-04 03:55:04 +00:00
.catch((err) => console.log('Ocurrió un error con el fetch', err))
}
2022-07-24 23:44:25 +00:00
2022-08-01 00:19:20 +00:00
const hideDeleteTenantDialog = () => {
2022-08-04 03:55:04 +00:00
setDeleteTenantDialog(false)
2022-08-01 00:19:20 +00:00
}
const hideDeleteTenantsDialog = () => {
2022-08-04 03:55:04 +00:00
setDeleteTenantsDialog(false)
2022-08-01 00:19:20 +00:00
}
const confirmDeleteTenant = (tenant) => {
2022-08-04 03:55:04 +00:00
setTenant(tenant)
setDeleteTenantDialog(true)
2022-08-01 00:19:20 +00:00
}
const confirmDeleteSelected = () => {
2022-08-04 03:55:04 +00:00
setDeleteTenantsDialog(true)
}
2022-08-01 00:19:20 +00:00
const hideChangeStatusTenantDialog = () => {
2022-08-04 03:55:04 +00:00
setChangeStatusTenantDialog(false)
}
const confirmChangeStatusTenant = (tenant) => {
2022-08-04 03:55:04 +00:00
setTenant(tenant)
setChangeStatusTenantDialog(true)
}
2022-08-01 00:19:20 +00:00
const actionsTenant = (rowData) => {
2022-08-04 03:55:04 +00:00
let icono = ''
let text = ''
2022-08-04 06:54:52 +00:00
if (rowData.status === '0') {
2022-08-04 03:55:04 +00:00
icono = 'pi pi-eye'
text = 'Activar Inquilino'
2022-08-04 06:54:52 +00:00
} else if (rowData.status === '1') {
2022-08-04 03:55:04 +00:00
icono = 'pi pi-eye-slash'
text = 'Inactivar Inquilino'
}
2022-08-01 00:19:20 +00:00
return (
2022-08-04 03:55:04 +00:00
<div className='actions'>
<Button
icon={`${icono}`}
2022-08-04 03:55:04 +00:00
className='p-button-rounded p-button-warning mt-2 mx-2'
onClick={() => confirmChangeStatusTenant(rowData)}
title={`${text}`}
/>
2022-08-04 03:55:04 +00:00
<Button
icon='pi pi-trash'
className='p-button-rounded p-button-danger mt-2 mx-2'
onClick={() => confirmDeleteTenant(rowData)}
/>
2022-07-24 23:44:25 +00:00
</div>
2022-08-04 03:55:04 +00:00
)
2022-08-01 00:19:20 +00:00
}
2022-07-24 23:44:25 +00:00
2022-08-01 00:19:20 +00:00
const leftToolbarTemplate = () => {
return (
2022-07-24 23:44:25 +00:00
<React.Fragment>
2022-08-04 03:55:04 +00:00
<div className='my-2'>
<Button
label='Eliminar'
icon='pi pi-trash'
className='p-button-danger'
onClick={confirmDeleteSelected}
disabled={!selectedTentants || !selectedTentants.length}
/>
2022-08-01 00:19:20 +00:00
</div>
2022-07-24 23:44:25 +00:00
</React.Fragment>
2022-08-01 00:19:20 +00:00
)
}
2022-07-24 23:44:25 +00:00
2022-08-01 00:19:20 +00:00
const rightToolbarTemplate = () => {
return (
2022-07-24 23:44:25 +00:00
<React.Fragment>
2022-08-04 03:55:04 +00:00
<Button
label='Exportar'
icon='pi pi-upload'
className='p-button-help'
/>
2022-07-24 23:44:25 +00:00
</React.Fragment>
2022-08-01 00:19:20 +00:00
)
}
2022-07-24 23:44:25 +00:00
2022-08-01 00:19:20 +00:00
const header = (
2022-08-04 03:55:04 +00:00
<div className='flex flex-column md:flex-row md:justify-content-between md:align-items-center'>
<h5 className='m-0'>Inquilinos</h5>
<span className='block mt-2 md:mt-0 p-input-icon-left'>
<i className='pi pi-search' />
<InputText
type='search'
onInput={(e) => setGlobalFilter(e.target.value)}
placeholder='Buscar...'
/>
2022-07-24 23:44:25 +00:00
</span>
2022-08-01 00:19:20 +00:00
</div>
2022-08-04 03:55:04 +00:00
)
2022-08-01 00:19:20 +00:00
const deleteTenantDialogFooter = (
<>
2022-08-04 03:55:04 +00:00
<Button
label='No'
icon='pi pi-times'
className='p-button-text'
onClick={hideDeleteTenantDialog}
/>
<Button
label='Sí'
icon='pi pi-check'
className='p-button-text'
onClick={deleteTenant}
/>
2022-08-01 00:19:20 +00:00
</>
2022-08-04 03:55:04 +00:00
)
2022-08-01 00:19:20 +00:00
const deleteTenantsDialogFooter = (
<>
2022-08-04 03:55:04 +00:00
<Button
label='No'
icon='pi pi-times'
className='p-button-text'
onClick={hideDeleteTenantsDialog}
/>
<Button
label='Sí'
icon='pi pi-check'
className='p-button-text'
onClick={deleteSelectedTenants}
/>
2022-08-01 00:19:20 +00:00
</>
2022-08-04 03:55:04 +00:00
)
const changeStatusTenantDialogFooter = (
<>
<Button
2022-08-04 03:55:04 +00:00
label='No'
icon='pi pi-times'
className='p-button-text'
onClick={hideChangeStatusTenantDialog}
/>
<Button
2022-08-04 03:55:04 +00:00
label='Sí'
icon='pi pi-check'
className='p-button-text'
onClick={cambiarStatusUser}
/>
</>
2022-08-04 03:55:04 +00:00
)
2022-08-01 00:19:20 +00:00
const headerName = (
<>
2022-08-04 03:55:04 +00:00
<p>
<FontAwesomeIcon icon={faUserAlt} style={{ color: '#C08135' }} /> Nombre
</p>
2022-08-01 00:19:20 +00:00
</>
)
const headerLastName = (
<>
2022-08-04 03:55:04 +00:00
<p>
<FontAwesomeIcon icon={faUserAlt} style={{ color: '#D7A86E' }} />{' '}
Apellidos
</p>
2022-08-01 00:19:20 +00:00
</>
)
const headerDNI = (
<>
2022-08-04 03:55:04 +00:00
<p>
<FontAwesomeIcon icon={faIdCardAlt} style={{ color: '#C08135' }} />{' '}
Identificación
</p>
2022-08-01 00:19:20 +00:00
</>
)
const headerEmail = (
<>
2022-08-04 03:55:04 +00:00
<p>
<FontAwesomeIcon icon={faAt} style={{ color: '#D7A86E' }} /> Correo
Electrónico
</p>
2022-08-01 00:19:20 +00:00
</>
)
const headerPhone = (
<>
2022-08-04 03:55:04 +00:00
<p>
<FontAwesomeIcon icon={faPhoneAlt} style={{ color: '#C08135' }} />{' '}
Teléfono
</p>
2022-08-01 00:19:20 +00:00
</>
)
const headerNumberHouse = (
<>
2022-08-04 03:55:04 +00:00
<p>
<FontAwesomeIcon icon={faHashtag} style={{ color: '#C08135' }} /> Número
de vivienda
</p>
2022-08-01 00:19:20 +00:00
</>
)
2022-07-24 23:44:25 +00:00
2022-08-03 04:48:36 +00:00
const headerStatus = (
<>
2022-08-04 03:55:04 +00:00
<p>
{' '}
<FontAwesomeIcon
icon={faCircleQuestion}
style={{ color: '#D7A86E' }}
/>{' '}
2022-08-03 04:48:36 +00:00
Estado
</p>
</>
)
const statusBodyTemplate = (rowData) => {
return (
<>
2022-08-04 03:55:04 +00:00
<span className={`status status-${rowData.status}`}>
2022-08-03 04:48:36 +00:00
{rowData.status_text}
</span>
</>
2022-08-04 03:55:04 +00:00
)
}
2022-07-18 01:20:03 +00:00
return (
2022-08-04 03:55:04 +00:00
<div className='grid'>
<div className='col-12'>
2022-08-01 00:19:20 +00:00
<Toast ref={toast} />
2022-08-04 03:55:04 +00:00
<div className='card'>
<Toolbar
className='mb-4'
left={leftToolbarTemplate}
right={rightToolbarTemplate}
></Toolbar>
<DataTable
ref={dt}
value={tenants}
dataKey='_id'
paginator
rows={5}
selection={selectedTentants}
onSelectionChange={(e) => setSelectedTenants(e.value)}
scrollable
scrollHeight='400px'
scrollDirection='both'
header={header}
rowsPerPageOptions={[5, 10, 25]}
className='datatable-responsive mt-3'
paginatorTemplate='FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink CurrentPageReport RowsPerPageDropdown'
currentPageReportTemplate='Mostrando {first} a {last} de {totalRecords} inquilinos'
globalFilter={globalFilter}
emptyMessage='No hay inquilinos en esta comunidad registrados.'
>
<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='last_name'
sortable
header={headerLastName}
style={{
flexGrow: 1,
flexBasis: '160px',
minWidth: '160px',
wordBreak: 'break-word',
}}
alignFrozen='left'
></Column>
<Column
field='dni'
sortable
header={headerDNI}
style={{
flexGrow: 1,
flexBasis: '160px',
minWidth: '160px',
wordBreak: 'break-word',
}}
></Column>
<Column
field='email'
sortable
header={headerEmail}
style={{
flexGrow: 1,
flexBasis: '160px',
minWidth: '160px',
wordBreak: 'break-word',
}}
></Column>
<Column
field='phone'
header={headerPhone}
style={{
flexGrow: 1,
flexBasis: '80px',
minWidth: '80px',
wordBreak: 'break-word',
}}
></Column>
<Column
field='number_house'
sortable
header={headerNumberHouse}
style={{
flexGrow: 1,
flexBasis: '160px',
minWidth: '160px',
wordBreak: 'break-word',
justifyContent: 'center',
}}
></Column>
2022-08-03 04:48:36 +00:00
<Column
2022-08-04 03:55:04 +00:00
field='status'
2022-08-03 04:48:36 +00:00
sortable
header={headerStatus}
body={statusBodyTemplate}
2022-08-04 03:55:04 +00:00
style={{
flexGrow: 1,
flexBasis: '160px',
minWidth: '160px',
wordBreak: 'break-word',
}}
></Column>
<Column
style={{ flexGrow: 1, flexBasis: '80px', minWidth: '80px' }}
body={actionsTenant}
></Column>
2022-08-01 00:19:20 +00:00
</DataTable>
2022-08-04 03:55:04 +00:00
<Dialog
visible={deleteTenantDialog}
style={{ width: '450px' }}
header='Confirmar'
modal
footer={deleteTenantDialogFooter}
onHide={hideDeleteTenantDialog}
>
<div className='flex align-items-center justify-content-center'>
<i
className='pi pi-exclamation-triangle mr-3'
style={{ fontSize: '2rem' }}
/>
{tenant && (
<span>
¿Estás seguro que desea eliminar a <b>{tenant.name}</b>?
</span>
)}
2022-08-01 00:19:20 +00:00
</div>
</Dialog>
2022-08-04 03:55:04 +00:00
<Dialog
visible={deleteTenantsDialog}
style={{ width: '450px' }}
header='Confirmar'
modal
footer={deleteTenantsDialogFooter}
onHide={hideDeleteTenantsDialog}
>
<div className='flex align-items-center justify-content-center'>
<i
className='pi pi-exclamation-triangle mr-3'
style={{ fontSize: '2rem' }}
/>
{selectedTentants && (
<span>¿Está seguro eliminar los inquilinos seleccionados?</span>
)}
2022-08-01 00:19:20 +00:00
</div>
</Dialog>
<Dialog
visible={changeStatusTenantDialog}
style={{ width: '450px' }}
2022-08-04 03:55:04 +00:00
header='Confirmar'
modal
footer={changeStatusTenantDialogFooter}
onHide={hideChangeStatusTenantDialog}
>
2022-08-04 03:55:04 +00:00
<div className='flex align-items-center justify-content-center'>
<i
2022-08-04 03:55:04 +00:00
className='pi pi-exclamation-triangle mr-3'
style={{ fontSize: '2rem' }}
/>
{tenant && (
<span>
¿Estás seguro que desea cambiar estado a <b>{tenant.name}</b>?
</span>
)}
</div>
</Dialog>
2022-08-01 00:19:20 +00:00
</div>
</div>
2022-08-04 03:55:04 +00:00
<div className='col-12'>
<div className='card'>
<h5 className='card-header'>Registrar Inquilino</h5>
<div className='p-fluid formgrid grid'>
<div className='field col-12 md:col-6'>
<label htmlFor='correo_electronico'>Correo electrónico</label>
2022-07-25 04:38:48 +00:00
<InputText
2022-08-04 06:54:36 +00:00
required
2022-08-04 03:55:04 +00:00
type='email'
className='form-control'
id='correo_electronico'
2022-07-25 04:38:48 +00:00
/>
</div>
2022-08-04 03:55:04 +00:00
<div className='field col-12 md:col-6'>
<label htmlFor='numero_vivienda'>Número de Vivienda</label>
<Dropdown
2022-08-04 06:54:36 +00:00
required
2022-08-04 03:55:04 +00:00
id='numero_vivienda'
2022-08-16 22:36:06 +00:00
value={houseId}
options={hList}
onChange={(e) => setHouseId(e.value)}
2022-08-04 03:55:04 +00:00
/>
2022-07-20 00:28:41 +00:00
</div>
2022-08-04 03:55:04 +00:00
<Button label='Registrar' onClick={registrarInquilino} />
2022-07-20 00:28:41 +00:00
</div>
2022-07-18 01:20:03 +00:00
</div>
</div>
</div>
2022-08-04 03:55:04 +00:00
)
}
2022-07-18 01:30:06 +00:00
2022-08-04 03:55:04 +00:00
export default React.memo(Inquilinos)