diff --git a/api-gateway/src/app.controller.ts b/api-gateway/src/app.controller.ts index 18196445..be6bd9ac 100644 --- a/api-gateway/src/app.controller.ts +++ b/api-gateway/src/app.controller.ts @@ -102,11 +102,17 @@ export class AppController { allUsersAdminComunidad() { return this.appService.allUsersAdminComunidad(); } + @Get('user/findGuards/:community') findGuardsCommunity(@Param('community_id') community_id: string) { return this.appService.findGuardsCommunity(community_id); } + @Get('user/findTenants/:community_id') + allUsersTenants(@Param('community_id') paramCommunity_id: string) { + return this.appService.findTenantsCommunity(paramCommunity_id); + } + @Get('user/find/:dni') findUser(@Param('dni') paramUserDNI: string) { return this.appService.findUser(paramUserDNI); diff --git a/api-gateway/src/app.service.ts b/api-gateway/src/app.service.ts index c7474c8d..632c97c2 100644 --- a/api-gateway/src/app.service.ts +++ b/api-gateway/src/app.service.ts @@ -119,6 +119,17 @@ export class AppService { .pipe(map((message: string) => ({ message }))); } + allUsersTenants() { + const pattern = { cmd: 'findTenants' }; + const payload = {}; + return this.clientUserApp + .send(pattern, payload) + .pipe( + map((message: string) => ({ message })), + ); + } + + //GET parameter from API findUser(paramUserDNI: string) { const pattern = { cmd: 'findUserDNI' }; @@ -136,6 +147,13 @@ export class AppService { .pipe(map((message: string) => ({ message }))); } + findTenantsCommunity(community_id: string) { + const pattern = { cmd: 'findTenantsCommunity' }; + const payload = { community_id: community_id }; + return this.clientUserApp + .send(pattern, payload) + .pipe(map((message: string) => ({ message }))); + } deleteAdminSystem(id: string) { const pattern = { cmd: 'deleteAdminSystem' }; diff --git a/servicio-usuarios/src/schemas/user.schema.ts b/servicio-usuarios/src/schemas/user.schema.ts index 02d1cf81..f09a3231 100644 --- a/servicio-usuarios/src/schemas/user.schema.ts +++ b/servicio-usuarios/src/schemas/user.schema.ts @@ -36,6 +36,9 @@ export class User { @Prop() community_id?: string; + + @Prop() + number_house?: string; } export const UserSchema = SchemaFactory.createForClass(User); diff --git a/servicio-usuarios/src/users/users.controller.ts b/servicio-usuarios/src/users/users.controller.ts index 3f759380..0b8a00be 100644 --- a/servicio-usuarios/src/users/users.controller.ts +++ b/servicio-usuarios/src/users/users.controller.ts @@ -46,6 +46,18 @@ export class UsersController { return this.userService.findGuardsCommunity(pcommunity_id); } + @MessagePattern({ cmd: 'findTenantsCommunity' }) + findTenantsCommunity(@Payload() community_id: string) { + let pcommunity_id = community_id['community_id']; + return this.userService.findTenantsCommunity(pcommunity_id); + } + + @MessagePattern({ cmd: 'findTenants' }) + findTenants() { + return this.userService.findTenants(); + } + + @MessagePattern({ cmd: 'updateUser' }) update(@Payload() user: UserDocument) { return this.userService.update(user.id, user); diff --git a/servicio-usuarios/src/users/users.service.ts b/servicio-usuarios/src/users/users.service.ts index 725127ab..268ab49a 100644 --- a/servicio-usuarios/src/users/users.service.ts +++ b/servicio-usuarios/src/users/users.service.ts @@ -25,24 +25,26 @@ export class UsersService { async createAdminCommunity(user: UserDocument) { - let password = user.password; - let passwordEncriptada = Md5.init(user.password); - user.password = passwordEncriptada; + let password = user.password; + let passwordEncriptada = Md5.init(user.password); + user.password = passwordEncriptada; - this.userModel.create(user) - + this.userModel.create(user) - let community = await this.findCommunity(user.community_id); - user.community_id = community['name']; - - const pattern = { cmd: 'emailCreateUserAdminCommunity' }; - const payload = { email: user['email'], password: password, name: user['name'], - date_entry: user['date_entry'], community_name: community['name'] }; - return this.clientNotificationtApp - .send(pattern, payload) - .pipe( - map((message: string) => ({ message })), - ); + + let community = await this.findCommunity(user.community_id); + user.community_id = community['name']; + + const pattern = { cmd: 'emailCreateUserAdminCommunity' }; + const payload = { + email: user['email'], password: password, name: user['name'], + date_entry: user['date_entry'], community_name: community['name'] + }; + return this.clientNotificationtApp + .send(pattern, payload) + .pipe( + map((message: string) => ({ message })), + ); } async findCommunity(community_id: string) { @@ -123,6 +125,36 @@ export class UsersService { return this.userModel.find({ user_type: 2 }).exec(); } + + //find inquilinos + async findTenants(): Promise { + return this.userModel.find({ user_type: 3 }).exec(); + } + + + //find inquilinos + async findTenantsCommunity(pcommunity_id: string) { + //let tenants = await this.findCommunityTenants(pcommunity_id); + + + + return await this.userModel.find({ community_id: pcommunity_id, user_type: 4 }) + .then(async (users) => { + if (users) { + await Promise.all( + users.map(async (u) => { + //buscar al usuario con el id de la comunidad anexado + let number_house = await this.findNumHouseTenant(pcommunity_id, u['_id']); + u['number_house'] = number_house; + return u; + }), + ) + } + return users; + }) + } + + async testSendMail(user: UserDocument) { let passwordEncriptada = Md5.init(user.password); user.password = passwordEncriptada; @@ -170,5 +202,26 @@ export class UsersService { }); } + async findNumHouseTenant(community_id: string, tenant_id: string) { + const pattern = { cmd: 'findOneCommunity' } + const payload = { _id: community_id } + + let callback = await this.clientCommunityApp + .send(pattern, payload) + .pipe( + map((response: string) => ({ response })) + ) + const finalValue = await lastValueFrom(callback); + const response = finalValue['response']; + const houses = response['houses']; + let num_house = ""; + await houses.forEach(async house => { + if (tenant_id == house.tenants.tenant_id) { + num_house = house.number_house; + } + }) + return num_house; + } + } diff --git a/web-ui/web-react/src/components/AdministradoresComunidad.js b/web-ui/web-react/src/components/AdministradoresComunidad.js index 09c1fcf6..826f0619 100644 --- a/web-ui/web-react/src/components/AdministradoresComunidad.js +++ b/web-ui/web-react/src/components/AdministradoresComunidad.js @@ -75,7 +75,6 @@ const AdministradoresComunidad = () => { let response = await fetch('http://localhost:4000/community/allCommunities', { method: 'GET' }); let resList = await response.json(); let list = await resList.message; - console.log(list); setCommunitiesList(await list); } @@ -323,7 +322,7 @@ const AdministradoresComunidad = () => { <>

{' '} {' '} - Correo Electrónic + Correo Electrónico

) diff --git a/web-ui/web-react/src/components/Inquilinos.js b/web-ui/web-react/src/components/Inquilinos.js index cecf52c8..78fa76df 100644 --- a/web-ui/web-react/src/components/Inquilinos.js +++ b/web-ui/web-react/src/components/Inquilinos.js @@ -1,23 +1,95 @@ import { Button } from 'primereact/button'; +import { InputText } from 'primereact/inputtext' +import React, { useEffect, useState, useRef } from 'react' +import { DataTable } from 'primereact/datatable'; +import { Column } from 'primereact/column'; import { Dropdown } from 'primereact/dropdown'; -import { InputText } from 'primereact/inputtext'; -import React, { useEffect, useState } from 'react'; +import { Toast } from 'primereact/toast'; +import { Dialog } from 'primereact/dialog'; +import { Toolbar } from 'primereact/toolbar'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faHome } from '@fortawesome/free-solid-svg-icons'; +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 { faEllipsis } from '@fortawesome/free-solid-svg-icons'; +import { faHashtag } from '@fortawesome/free-solid-svg-icons'; + +import { useCookies } from "react-cookie"; + const Inquilinos = () => { + + let emptyTenant = { + _id: null, + dni: '', + name: '', + last_name: '', + email: '', + phone: '', + password: '', + community_id: '', + community_name: '', + number_house: 'Sin número de vivienda', + user_type: '4', + date_entry: new Date(), + status: '1' + }; + + 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 communityIdList = communitiesList.map((community) => community.id); + const [communityId, setCommunityId] = useState(null); + const [submitted, setSubmitted] = useState(false); + const toast = useRef(null); + const dt = useRef(null); + + const [cookies, setCookie] = useCookies(); + + + async function tenantsList() { + await fetch(`http://localhost:4000/user/findTenants/${cookies.community_id}`, { method: 'GET' }) + .then((response) => response.json()) + .then(data => data.message) + .then(data => { + + data.map((item) => { + if(item.number_house ==""){ + item.number_house = "Sin vivienda asignada"; + } + }) + setTenants(data) + }); + } + + async function getCommunites() { - let response = await fetch( - 'http://localhost:4000/community/allCommunities', - { method: 'GET' }, - ); - let list = await response.json(); - setCommunitiesList(list.message); + let response = await fetch('http://localhost:4000/community/allCommunities', { method: 'GET' }); + let resList = await response.json(); + let list = await resList.message; + + setCommunitiesList(await list); } + useEffect(() => { + tenantsList(); + }, []) + + useEffect(() => { getCommunites(); - }, []); + }, []) + + const cList = communitiesList.map((item) => ({ + label: item.name, + value: item._id, + })) + function registrarInquilino() { let data = { dni: document.getElementById('identificacion').value, @@ -47,8 +119,220 @@ const Inquilinos = () => { }); } + const deleteTenant = () => { + /* fetch('http://localhost:4000/community/deleteCommunity/' + community._id, { + cache: 'no-cache', + method: 'DELETE', + 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 (response) { + + let _community = communities.filter(val => val._id !== community._id); + setCommunities(_community); + setDeleteCommunityDialog(false); + setCommunity(emptyCommunity); + toast.current.show({ severity: 'success', summary: 'Exito', detail: 'Comunidad de Viviendas Eliminada', life: 3000 }); + } + ) + .catch( + err => { + console.log('Ocurrió un error con el fetch', err) + toast.current.show({ severity: 'danger', summary: 'Error', detail: 'Comunidad de Viviendas no se pudo eliminar', life: 3000 }); + } + ); + */ + let _tenants = tenants.filter( + (val) => val._id !== tenant._id, + ); + setTenants(_tenants); + setDeleteTenantDialog(false); + setTenant(emptyTenant); + toast.current.show({ + severity: 'success', + summary: 'Inquilino Eliminado', + life: 3000, + }); + }; + + const deleteSelectedTenants = () => { + let _tenants = tenants.filter( + (val) => !selectedTentants.includes(val), + ); + /* selectedCommunities.map((item) => { + fetch('http://localhost:4000/user/deleteCommunity/' + item._id, { + cache: 'no-cache', + method: 'DELETE', + headers: { + 'Content-Type': 'application/json' + } + }) + })*/ + setTenants(_tenants); + setDeleteTenantsDialog(false); + setSelectedTenants(null); + toast.current.show({ + severity: 'success', + summary: 'Éxito', + detail: 'Inquilinos Eliminados', + life: 3000, + }); + }; + + + const hideDeleteTenantDialog = () => { + setDeleteTenantDialog(false); + } + + const hideDeleteTenantsDialog = () => { + setDeleteTenantsDialog(false); + } + + const confirmDeleteTenant = (tenant) => { + setTenant(tenant); + setDeleteTenantDialog(true); + } + + const confirmDeleteSelected = () => { + setDeleteTenantsDialog(true); + }; + + + const actionsTenant = (rowData) => { + return ( +
+
+ ); + } + + const leftToolbarTemplate = () => { + return ( + +
+
+
+ ) + } + + const rightToolbarTemplate = () => { + return ( + +