import React, { Component, Fragment } from 'react'; import Cookies from 'universal-cookie'; import { InputText } from 'primereact/inputtext'; import { Button } from 'primereact/button'; import { Dialog } from 'primereact/dialog'; const baseUrl = 'http://localhost:4000/user/loginUser'; const cookies = new Cookies(); const passwordResetUrl = 'http://localhost:4000/user/resetUserPassword'; class LogInUser extends Component { constructor(props) { super(props); this.state = { form: { email: '', password: '', }, errorEmail: false, errorPassword: false, logged: null, showPwdResetDialog: false, resetEmail: '', errorResetEmail: false, }; } handleChange = async (e) => { this.setState({ form: { ...this.state.form, [e.target.name]: e.target.value, }, }); }; handleResetEmailChange = async (event) => { this.setState({ resetEmail: event.target.value, }); }; validaciones = (data) => { let error = false; if (data.email == '') { this.setState({ errorEmail: true, }); error = true; } else { this.setState({ errorEmail: false, }); } if (data.password == '') { this.setState({ errorPassword: true, }); error = true; } else { this.setState({ errorPassword: false, }); } return error; }; validarResetEmail = (data) => { let error = false; if (data.email == '') { this.setState({ errorResetEmail: true, }); error = true; } return error; } iniciarSesion = async () => { const data = { email: this.state.form.email, password: this.state.form.password, }; console.log(data); if (!this.validaciones(data)) { this.setState({ email: true, password: true, }); await fetch(baseUrl, { cache: 'no-cache', method: 'POST', body: JSON.stringify(data), headers: { 'Content-Type': 'application/json', }, }) .then((response) => { if (response.status != 201) console.log('Ocurrió un error con el servicio: ' + response.status); else return response.json(); }) .then((response) => { console.log(response.message); if (response.message) { const user = response.message; if (user.user_type == '1' || user.user_type == '2') { cookies.set('id', user._id, { path: '/' }); cookies.set('name', user.name, { path: '/' }); cookies.set('email', user.email, { path: '/' }); cookies.set('type', user.user_type, { path: '/' }); if (user.user_type != '1') { cookies.set('community_id', user.community_id, { path: '/' }); } // alert(`Bienvenido ${user.name}`); document.getElementById('notification').hidden = true; document.getElementById('notification2').hidden = false; document.getElementById( 'message2', ).innerHTML = `Bienvenido ${user.name}`; window.location.href = '/'; } window.location.href = '/page404'; } else { document.getElementById('notification2').hidden = true; document.getElementById('notification').hidden = false; //alert('El usuario o la contraseña no son correctos'); document.getElementById('message').innerHTML = 'El usuario o la contraseña son incorrectos'; } }) .catch((error) => { console.log(error); }); } }; sendResetRequest = (user) => { if (user) { fetch(`${passwordResetUrl}/${user._id}`, { method: 'PUT', cache: 'no-cache', body: JSON.stringify(user), headers: { 'Content-Type': 'application/json', }, }).then((response) => { if (response.status != 200) console.log(`Ocurrió un error con el servicio: ${response.status}`); else return response.json(); }).then((_response) => { console.log('Se ha enviado un correo con la información para resetear la contraseña'); }).catch((error) => { console.log(error) }) } this.setState.showPwdResetDialog = false; }; resetPassword = () => { const data = { email: this.state.resetEmail, }; if (!this.validarResetEmail(data)) { fetch('http://localhost:4000/user/allUsers', { method: 'GET' }) .then((response) => response.json()) .then((response) => response.message) .then((response) => { response = response.find((value) => value.email === data.email) this.sendResetRequest(response); }) .catch((error) => { console.log(error); }); } } pwdResetDialogFooter = ( <>