Merge pull request #166 from DeimosPr4/UH-iniciarsesionV2
login frontend
This commit is contained in:
		
						commit
						85ae89df61
					
				| 
						 | 
				
			
			@ -7156,4 +7156,11 @@
 | 
			
		|||
.status.status--1 {
 | 
			
		||||
    background: #565656;
 | 
			
		||||
    color: #f7f9f7;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
.login-wrapper {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    align-items: center;
 | 
			
		||||
}
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 37 KiB  | 
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| 
		 After Width: | Height: | Size: 66 KiB  | 
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
import React, { useState, useEffect, useRef } from 'react';
 | 
			
		||||
import classNames from 'classnames';
 | 
			
		||||
import { Route, useLocation } from 'react-router-dom';
 | 
			
		||||
import { BrowserRouter, Switch, Route, useLocation } from 'react-router-dom';
 | 
			
		||||
import { CSSTransition } from 'react-transition-group';
 | 
			
		||||
 | 
			
		||||
import { AppTopbar } from './AppTopbar';
 | 
			
		||||
| 
						 | 
				
			
			@ -50,407 +50,483 @@ import './assets/demo/flags/flags.css';
 | 
			
		|||
import './assets/demo/Demos.scss';
 | 
			
		||||
import './assets/layout/layout.scss';
 | 
			
		||||
import './App.scss';
 | 
			
		||||
import LogIn from './components/LogIn';
 | 
			
		||||
import { PrimeIcons } from 'primereact/api';
 | 
			
		||||
import AreasComunes from './components/AreasComunes';
 | 
			
		||||
import { useCookies } from "react-cookie";
 | 
			
		||||
import LogInUser from './components/LogInUser';
 | 
			
		||||
import Page404 from './components/Page404'
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const App = () => {
 | 
			
		||||
  const [layoutMode, setLayoutMode] = useState('static');
 | 
			
		||||
  const [layoutColorMode, setLayoutColorMode] = useState('light');
 | 
			
		||||
  const [inputStyle, setInputStyle] = useState('outlined');
 | 
			
		||||
  const [ripple, setRipple] = useState(true);
 | 
			
		||||
  const [staticMenuInactive, setStaticMenuInactive] = useState(false);
 | 
			
		||||
  const [overlayMenuActive, setOverlayMenuActive] = useState(false);
 | 
			
		||||
  const [mobileMenuActive, setMobileMenuActive] = useState(false);
 | 
			
		||||
  const [mobileTopbarMenuActive, setMobileTopbarMenuActive] = useState(false);
 | 
			
		||||
  const copyTooltipRef = useRef();
 | 
			
		||||
  const location = useLocation();
 | 
			
		||||
    const [layoutMode, setLayoutMode] = useState('static');
 | 
			
		||||
    const [layoutColorMode, setLayoutColorMode] = useState('light')
 | 
			
		||||
    const [inputStyle, setInputStyle] = useState('outlined');
 | 
			
		||||
    const [ripple, setRipple] = useState(true);
 | 
			
		||||
    const [staticMenuInactive, setStaticMenuInactive] = useState(false);
 | 
			
		||||
    const [overlayMenuActive, setOverlayMenuActive] = useState(false);
 | 
			
		||||
    const [mobileMenuActive, setMobileMenuActive] = useState(false);
 | 
			
		||||
    const [mobileTopbarMenuActive, setMobileTopbarMenuActive] = useState(false);
 | 
			
		||||
    const copyTooltipRef = useRef();
 | 
			
		||||
    const location = useLocation();
 | 
			
		||||
    const [cookies, setCookies] = useCookies();
 | 
			
		||||
    const [logged, setLogged] = useState()
 | 
			
		||||
 | 
			
		||||
  PrimeReact.ripple = true;
 | 
			
		||||
    PrimeReact.ripple = true;
 | 
			
		||||
 | 
			
		||||
  let menuClick = false;
 | 
			
		||||
  let mobileTopbarMenuClick = false;
 | 
			
		||||
    let menuClick = false;
 | 
			
		||||
    let mobileTopbarMenuClick = false;
 | 
			
		||||
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    if (mobileMenuActive) {
 | 
			
		||||
      addClass(document.body, 'body-overflow-hidden');
 | 
			
		||||
    } else {
 | 
			
		||||
      removeClass(document.body, 'body-overflow-hidden');
 | 
			
		||||
    }
 | 
			
		||||
  }, [mobileMenuActive]);
 | 
			
		||||
    useEffect(() => {
 | 
			
		||||
        if (mobileMenuActive) {
 | 
			
		||||
            addClass(document.body, 'body-overflow-hidden');
 | 
			
		||||
        } else {
 | 
			
		||||
            removeClass(document.body, 'body-overflow-hidden');
 | 
			
		||||
        }
 | 
			
		||||
    }, [mobileMenuActive]);
 | 
			
		||||
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    copyTooltipRef &&
 | 
			
		||||
      copyTooltipRef.current &&
 | 
			
		||||
      copyTooltipRef.current.updateTargetEvents();
 | 
			
		||||
  }, [location]);
 | 
			
		||||
    useEffect(() => {
 | 
			
		||||
        copyTooltipRef &&
 | 
			
		||||
            copyTooltipRef.current &&
 | 
			
		||||
            copyTooltipRef.current.updateTargetEvents();
 | 
			
		||||
    }, [location]);
 | 
			
		||||
 | 
			
		||||
  const onInputStyleChange = (inputStyle) => {
 | 
			
		||||
    setInputStyle(inputStyle);
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const onRipple = (e) => {
 | 
			
		||||
    PrimeReact.ripple = e.value;
 | 
			
		||||
    setRipple(e.value);
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const onLayoutModeChange = (mode) => {
 | 
			
		||||
    setLayoutMode(mode);
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const onColorModeChange = (mode) => {
 | 
			
		||||
    setLayoutColorMode(mode);
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const onWrapperClick = (event) => {
 | 
			
		||||
    if (!menuClick) {
 | 
			
		||||
      setOverlayMenuActive(false);
 | 
			
		||||
      setMobileMenuActive(false);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (!mobileTopbarMenuClick) {
 | 
			
		||||
      setMobileTopbarMenuActive(false);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    mobileTopbarMenuClick = false;
 | 
			
		||||
    menuClick = false;
 | 
			
		||||
  };
 | 
			
		||||
    const onInputStyleChange = (inputStyle) => {
 | 
			
		||||
        setInputStyle(inputStyle);
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
  const onToggleMenuClick = (event) => {
 | 
			
		||||
    menuClick = true;
 | 
			
		||||
    const onRipple = (e) => {
 | 
			
		||||
        PrimeReact.ripple = e.value;
 | 
			
		||||
        setRipple(e.value);
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    if (isDesktop()) {
 | 
			
		||||
      if (layoutMode === 'overlay') {
 | 
			
		||||
        if (mobileMenuActive === true) {
 | 
			
		||||
          setOverlayMenuActive(true);
 | 
			
		||||
    const onLayoutModeChange = (mode) => {
 | 
			
		||||
        setLayoutMode(mode);
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const onColorModeChange = (mode) => {
 | 
			
		||||
        setLayoutColorMode(mode);
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const onWrapperClick = (event) => {
 | 
			
		||||
        if (!menuClick) {
 | 
			
		||||
            setOverlayMenuActive(false);
 | 
			
		||||
            setMobileMenuActive(false);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        setOverlayMenuActive((prevState) => !prevState);
 | 
			
		||||
        setMobileMenuActive(false);
 | 
			
		||||
      } else if (layoutMode === 'static') {
 | 
			
		||||
        setStaticMenuInactive((prevState) => !prevState);
 | 
			
		||||
      }
 | 
			
		||||
    } else {
 | 
			
		||||
      setMobileMenuActive((prevState) => !prevState);
 | 
			
		||||
        if (!mobileTopbarMenuClick) {
 | 
			
		||||
            setMobileTopbarMenuActive(false);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        mobileTopbarMenuClick = false;
 | 
			
		||||
        menuClick = false;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const onToggleMenuClick = (event) => {
 | 
			
		||||
        menuClick = true;
 | 
			
		||||
 | 
			
		||||
        if (isDesktop()) {
 | 
			
		||||
            if (layoutMode === 'overlay') {
 | 
			
		||||
                if (mobileMenuActive === true) {
 | 
			
		||||
                    setOverlayMenuActive(true);
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                setOverlayMenuActive((prevState) => !prevState);
 | 
			
		||||
                setMobileMenuActive(false);
 | 
			
		||||
            } else if (layoutMode === 'static') {
 | 
			
		||||
                setStaticMenuInactive((prevState) => !prevState);
 | 
			
		||||
            }
 | 
			
		||||
        } else {
 | 
			
		||||
            setMobileMenuActive((prevState) => !prevState);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        event.preventDefault();
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const onSidebarClick = () => {
 | 
			
		||||
        menuClick = true;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const onMobileTopbarMenuClick = (event) => {
 | 
			
		||||
        mobileTopbarMenuClick = true;
 | 
			
		||||
 | 
			
		||||
        setMobileTopbarMenuActive((prevState) => !prevState);
 | 
			
		||||
        event.preventDefault();
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const onMobileSubTopbarMenuClick = (event) => {
 | 
			
		||||
        mobileTopbarMenuClick = true;
 | 
			
		||||
 | 
			
		||||
        event.preventDefault();
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const onMenuItemClick = (event) => {
 | 
			
		||||
        if (!event.item.items) {
 | 
			
		||||
            setOverlayMenuActive(false);
 | 
			
		||||
            setMobileMenuActive(false);
 | 
			
		||||
        }
 | 
			
		||||
    };
 | 
			
		||||
    const isDesktop = () => {
 | 
			
		||||
        return window.innerWidth >= 992;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const menu2 = [
 | 
			
		||||
        {
 | 
			
		||||
            label: 'Inicio',
 | 
			
		||||
            items: [
 | 
			
		||||
                { label: 'Dashboard', icon: 'pi pi-fw pi-home', to: '/' },
 | 
			
		||||
                { label: 'Administradores del sistema', icon: PrimeIcons.USERS, to: '/administradoresSistema' },
 | 
			
		||||
                { label: 'Administradores de comunidad', icon: PrimeIcons.USERS, to: '/administradoresComunidad' },
 | 
			
		||||
                { label: 'Comunidades', icon: PrimeIcons.BUILDING, to: '/comunidadesViviendas' },
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    const menu3 = [
 | 
			
		||||
        {
 | 
			
		||||
            label: 'Inicio',
 | 
			
		||||
            items: [
 | 
			
		||||
                { label: 'Dashboard', icon: 'pi pi-fw pi-home', to: '/' },
 | 
			
		||||
                { label: 'Inquilinos', icon: PrimeIcons.USERS, to: '/inquilinos' },
 | 
			
		||||
                { label: 'Guardas de seguridad', icon: PrimeIcons.LOCK, to: '/guardasSeguridad' },
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Áreas Comunes de Comunidad',
 | 
			
		||||
                    icon: PrimeIcons.BUILDING,
 | 
			
		||||
                    to: '/areasComunes',
 | 
			
		||||
                },
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
    const menuLogin = [
 | 
			
		||||
        {
 | 
			
		||||
            label: 'Inicio',
 | 
			
		||||
            items: [
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Inicio de sesion',
 | 
			
		||||
                    icon: PrimeIcons.BUILDING,
 | 
			
		||||
                    to: '/login'
 | 
			
		||||
                },
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
    function menu4() {
 | 
			
		||||
        if (cookies.type == '1') {
 | 
			
		||||
            return menu2;
 | 
			
		||||
        } else if (cookies.type == '2') {
 | 
			
		||||
            return menu3;
 | 
			
		||||
        } else {
 | 
			
		||||
            return menuLogin;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    event.preventDefault();
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const onSidebarClick = () => {
 | 
			
		||||
    menuClick = true;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const onMobileTopbarMenuClick = (event) => {
 | 
			
		||||
    mobileTopbarMenuClick = true;
 | 
			
		||||
 | 
			
		||||
    setMobileTopbarMenuActive((prevState) => !prevState);
 | 
			
		||||
    event.preventDefault();
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const onMobileSubTopbarMenuClick = (event) => {
 | 
			
		||||
    mobileTopbarMenuClick = true;
 | 
			
		||||
 | 
			
		||||
    event.preventDefault();
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const onMenuItemClick = (event) => {
 | 
			
		||||
    if (!event.item.items) {
 | 
			
		||||
      setOverlayMenuActive(false);
 | 
			
		||||
      setMobileMenuActive(false);
 | 
			
		||||
    }
 | 
			
		||||
  };
 | 
			
		||||
  const isDesktop = () => {
 | 
			
		||||
    return window.innerWidth >= 992;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const menu = [
 | 
			
		||||
    {
 | 
			
		||||
      label: 'Home',
 | 
			
		||||
      items: [
 | 
			
		||||
        { label: 'Dashboard', icon: 'pi pi-fw pi-home', to: '/' },
 | 
			
		||||
    const menu = [
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Administradores del sistema',
 | 
			
		||||
          icon: PrimeIcons.USERS,
 | 
			
		||||
          to: '/administradoresSistema',
 | 
			
		||||
            label: 'Inicio',
 | 
			
		||||
            items:
 | 
			
		||||
                [
 | 
			
		||||
                    {
 | 
			
		||||
                        label: 'Administradores del sistema',
 | 
			
		||||
                        icon: PrimeIcons.USERS,
 | 
			
		||||
                        to: '/administradoresSistema',
 | 
			
		||||
                    },
 | 
			
		||||
                    {
 | 
			
		||||
                        label: 'Administradores de comunidad',
 | 
			
		||||
                        icon: PrimeIcons.USERS,
 | 
			
		||||
                        to: '/administradoresComunidad',
 | 
			
		||||
                    },
 | 
			
		||||
                    {
 | 
			
		||||
                        label: 'Guardas de seguridad',
 | 
			
		||||
                        icon: PrimeIcons.LOCK,
 | 
			
		||||
                        to: '/guardasSeguridad',
 | 
			
		||||
                    },
 | 
			
		||||
                    {
 | 
			
		||||
                        label: 'Comunidades',
 | 
			
		||||
                        icon: PrimeIcons.BUILDING,
 | 
			
		||||
                        to: '/comunidadesViviendas',
 | 
			
		||||
                    },
 | 
			
		||||
                    {
 | 
			
		||||
                        label: 'Inquilinos',
 | 
			
		||||
                        icon: PrimeIcons.USER,
 | 
			
		||||
                        to: '/inquilinos'
 | 
			
		||||
                    },
 | 
			
		||||
                    {
 | 
			
		||||
                        label: 'Áreas Comunes de Comunidad',
 | 
			
		||||
                        icon: PrimeIcons.BUILDING,
 | 
			
		||||
                        to: '/areasComunes',
 | 
			
		||||
                    },
 | 
			
		||||
                    { label: 'Log in', icon: 'pi pi-fw pi-id-card', to: '/logIn' },
 | 
			
		||||
                ],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Administradores de comunidad',
 | 
			
		||||
          icon: PrimeIcons.USERS,
 | 
			
		||||
          to: '/administradoresComunidad',
 | 
			
		||||
            label: 'UI Components',
 | 
			
		||||
            icon: 'pi pi-fw pi-sitemap',
 | 
			
		||||
            items: [
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Form Layout',
 | 
			
		||||
                    icon: 'pi pi-fw pi-id-card',
 | 
			
		||||
                    to: '/formlayout',
 | 
			
		||||
                },
 | 
			
		||||
                { label: 'Input', icon: 'pi pi-fw pi-check-square', to: '/input' },
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Float Label',
 | 
			
		||||
                    icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
                    to: '/floatlabel',
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Invalid State',
 | 
			
		||||
                    icon: 'pi pi-fw pi-exclamation-circle',
 | 
			
		||||
                    to: 'invalidstate',
 | 
			
		||||
                },
 | 
			
		||||
                { label: 'Button', icon: 'pi pi-fw pi-mobile', to: '/button' },
 | 
			
		||||
                { label: 'Table', icon: 'pi pi-fw pi-table', to: '/table' },
 | 
			
		||||
                { label: 'List', icon: 'pi pi-fw pi-list', to: '/list' },
 | 
			
		||||
                { label: 'Tree', icon: 'pi pi-fw pi-share-alt', to: '/tree' },
 | 
			
		||||
                { label: 'Panel', icon: 'pi pi-fw pi-tablet', to: '/panel' },
 | 
			
		||||
                { label: 'Overlay', icon: 'pi pi-fw pi-clone', to: '/overlay' },
 | 
			
		||||
                { label: 'Media', icon: 'pi pi-fw pi-image', to: '/media' },
 | 
			
		||||
                { label: 'Menu', icon: 'pi pi-fw pi-bars', to: '/menu' },
 | 
			
		||||
                { label: 'Message', icon: 'pi pi-fw pi-comment', to: '/messages' },
 | 
			
		||||
                { label: 'File', icon: 'pi pi-fw pi-file', to: '/file' },
 | 
			
		||||
                { label: 'Chart', icon: 'pi pi-fw pi-chart-bar', to: '/chart' },
 | 
			
		||||
                { label: 'Misc', icon: 'pi pi-fw pi-circle-off', to: '/misc' },
 | 
			
		||||
            ],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Guardas de seguridad',
 | 
			
		||||
          icon: PrimeIcons.LOCK,
 | 
			
		||||
          to: '/guardasSeguridad',
 | 
			
		||||
            label: 'UI Blocks',
 | 
			
		||||
            items: [
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Free Blocks',
 | 
			
		||||
                    icon: 'pi pi-fw pi-eye',
 | 
			
		||||
                    to: '/blocks',
 | 
			
		||||
                    badge: 'NEW',
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'All Blocks',
 | 
			
		||||
                    icon: 'pi pi-fw pi-globe',
 | 
			
		||||
                    url: 'https://www.primefaces.org/primeblocks-react',
 | 
			
		||||
                },
 | 
			
		||||
            ],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Comunidades',
 | 
			
		||||
          icon: PrimeIcons.BUILDING,
 | 
			
		||||
          to: '/comunidadesViviendas',
 | 
			
		||||
            label: 'Icons',
 | 
			
		||||
            items: [{ label: 'PrimeIcons', icon: 'pi pi-fw pi-prime', to: '/icons' }],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Inquilinos',
 | 
			
		||||
          icon: PrimeIcons.USER,
 | 
			
		||||
          to: '/inquilinos'
 | 
			
		||||
            label: 'Pages',
 | 
			
		||||
            icon: 'pi pi-fw pi-clone',
 | 
			
		||||
            items: [
 | 
			
		||||
                { label: 'Crud', icon: 'pi pi-fw pi-user-edit', to: '/crud' },
 | 
			
		||||
                { label: 'Timeline', icon: 'pi pi-fw pi-calendar', to: '/timeline' },
 | 
			
		||||
                { label: 'Empty', icon: 'pi pi-fw pi-circle-off', to: '/empty' },
 | 
			
		||||
            ],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Áreas Comunes de Comunidad',
 | 
			
		||||
          icon: PrimeIcons.BUILDING,
 | 
			
		||||
          to: '/areasComunes',
 | 
			
		||||
            label: 'Menu Hierarchy',
 | 
			
		||||
            icon: 'pi pi-fw pi-search',
 | 
			
		||||
            items: [
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Submenu 1',
 | 
			
		||||
                    icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
                    items: [
 | 
			
		||||
                        {
 | 
			
		||||
                            label: 'Submenu 1.1',
 | 
			
		||||
                            icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
                            items: [
 | 
			
		||||
                                { label: 'Submenu 1.1.1', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                                { label: 'Submenu 1.1.2', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                                { label: 'Submenu 1.1.3', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                            ],
 | 
			
		||||
                        },
 | 
			
		||||
                        {
 | 
			
		||||
                            label: 'Submenu 1.2',
 | 
			
		||||
                            icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
                            items: [
 | 
			
		||||
                                { label: 'Submenu 1.2.1', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                                { label: 'Submenu 1.2.2', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                            ],
 | 
			
		||||
                        },
 | 
			
		||||
                    ],
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Submenu 2',
 | 
			
		||||
                    icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
                    items: [
 | 
			
		||||
                        {
 | 
			
		||||
                            label: 'Submenu 2.1',
 | 
			
		||||
                            icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
                            items: [
 | 
			
		||||
                                { label: 'Submenu 2.1.1', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                                { label: 'Submenu 2.1.2', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                                { label: 'Submenu 2.1.3', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                            ],
 | 
			
		||||
                        },
 | 
			
		||||
                        {
 | 
			
		||||
                            label: 'Submenu 2.2',
 | 
			
		||||
                            icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
                            items: [
 | 
			
		||||
                                { label: 'Submenu 2.2.1', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                                { label: 'Submenu 2.2.2', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                            ],
 | 
			
		||||
                        },
 | 
			
		||||
                    ],
 | 
			
		||||
                },
 | 
			
		||||
            ],
 | 
			
		||||
        },
 | 
			
		||||
        { label: 'Log in', icon: 'pi pi-fw pi-id-card', to: '/logIn' },
 | 
			
		||||
      ],
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      label: 'UI Components',
 | 
			
		||||
      icon: 'pi pi-fw pi-sitemap',
 | 
			
		||||
      items: [
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Form Layout',
 | 
			
		||||
          icon: 'pi pi-fw pi-id-card',
 | 
			
		||||
          to: '/formlayout',
 | 
			
		||||
        },
 | 
			
		||||
        { label: 'Input', icon: 'pi pi-fw pi-check-square', to: '/input' },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Float Label',
 | 
			
		||||
          icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
          to: '/floatlabel',
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Invalid State',
 | 
			
		||||
          icon: 'pi pi-fw pi-exclamation-circle',
 | 
			
		||||
          to: 'invalidstate',
 | 
			
		||||
        },
 | 
			
		||||
        { label: 'Button', icon: 'pi pi-fw pi-mobile', to: '/button' },
 | 
			
		||||
        { label: 'Table', icon: 'pi pi-fw pi-table', to: '/table' },
 | 
			
		||||
        { label: 'List', icon: 'pi pi-fw pi-list', to: '/list' },
 | 
			
		||||
        { label: 'Tree', icon: 'pi pi-fw pi-share-alt', to: '/tree' },
 | 
			
		||||
        { label: 'Panel', icon: 'pi pi-fw pi-tablet', to: '/panel' },
 | 
			
		||||
        { label: 'Overlay', icon: 'pi pi-fw pi-clone', to: '/overlay' },
 | 
			
		||||
        { label: 'Media', icon: 'pi pi-fw pi-image', to: '/media' },
 | 
			
		||||
        { label: 'Menu', icon: 'pi pi-fw pi-bars', to: '/menu' },
 | 
			
		||||
        { label: 'Message', icon: 'pi pi-fw pi-comment', to: '/messages' },
 | 
			
		||||
        { label: 'File', icon: 'pi pi-fw pi-file', to: '/file' },
 | 
			
		||||
        { label: 'Chart', icon: 'pi pi-fw pi-chart-bar', to: '/chart' },
 | 
			
		||||
        { label: 'Misc', icon: 'pi pi-fw pi-circle-off', to: '/misc' },
 | 
			
		||||
      ],
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      label: 'UI Blocks',
 | 
			
		||||
      items: [
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Free Blocks',
 | 
			
		||||
          icon: 'pi pi-fw pi-eye',
 | 
			
		||||
          to: '/blocks',
 | 
			
		||||
          badge: 'NEW',
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'All Blocks',
 | 
			
		||||
          icon: 'pi pi-fw pi-globe',
 | 
			
		||||
          url: 'https://www.primefaces.org/primeblocks-react',
 | 
			
		||||
        },
 | 
			
		||||
      ],
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      label: 'Icons',
 | 
			
		||||
      items: [{ label: 'PrimeIcons', icon: 'pi pi-fw pi-prime', to: '/icons' }],
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      label: 'Pages',
 | 
			
		||||
      icon: 'pi pi-fw pi-clone',
 | 
			
		||||
      items: [
 | 
			
		||||
        { label: 'Crud', icon: 'pi pi-fw pi-user-edit', to: '/crud' },
 | 
			
		||||
        { label: 'Timeline', icon: 'pi pi-fw pi-calendar', to: '/timeline' },
 | 
			
		||||
        { label: 'Empty', icon: 'pi pi-fw pi-circle-off', to: '/empty' },
 | 
			
		||||
      ],
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      label: 'Menu Hierarchy',
 | 
			
		||||
      icon: 'pi pi-fw pi-search',
 | 
			
		||||
      items: [
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Submenu 1',
 | 
			
		||||
          icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
          items: [
 | 
			
		||||
            {
 | 
			
		||||
              label: 'Submenu 1.1',
 | 
			
		||||
              icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
              items: [
 | 
			
		||||
                { label: 'Submenu 1.1.1', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                { label: 'Submenu 1.1.2', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                { label: 'Submenu 1.1.3', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
              ],
 | 
			
		||||
            },
 | 
			
		||||
            {
 | 
			
		||||
              label: 'Submenu 1.2',
 | 
			
		||||
              icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
              items: [
 | 
			
		||||
                { label: 'Submenu 1.2.1', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                { label: 'Submenu 1.2.2', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
              ],
 | 
			
		||||
            },
 | 
			
		||||
          ],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: 'Submenu 2',
 | 
			
		||||
          icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
          items: [
 | 
			
		||||
            {
 | 
			
		||||
              label: 'Submenu 2.1',
 | 
			
		||||
              icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
              items: [
 | 
			
		||||
                { label: 'Submenu 2.1.1', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                { label: 'Submenu 2.1.2', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                { label: 'Submenu 2.1.3', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
              ],
 | 
			
		||||
            },
 | 
			
		||||
            {
 | 
			
		||||
              label: 'Submenu 2.2',
 | 
			
		||||
              icon: 'pi pi-fw pi-bookmark',
 | 
			
		||||
              items: [
 | 
			
		||||
                { label: 'Submenu 2.2.1', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
                { label: 'Submenu 2.2.2', icon: 'pi pi-fw pi-bookmark' },
 | 
			
		||||
              ],
 | 
			
		||||
            },
 | 
			
		||||
          ],
 | 
			
		||||
        },
 | 
			
		||||
      ],
 | 
			
		||||
    },
 | 
			
		||||
  ];
 | 
			
		||||
    ];
 | 
			
		||||
 | 
			
		||||
  const addClass = (element, className) => {
 | 
			
		||||
    if (element.classList) element.classList.add(className);
 | 
			
		||||
    else element.className += ' ' + className;
 | 
			
		||||
  };
 | 
			
		||||
    const addClass = (element, className) => {
 | 
			
		||||
        if (element.classList) element.classList.add(className);
 | 
			
		||||
        else element.className += ' ' + className;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
  const removeClass = (element, className) => {
 | 
			
		||||
    if (element.classList) element.classList.remove(className);
 | 
			
		||||
    else
 | 
			
		||||
      element.className = element.className.replace(
 | 
			
		||||
        new RegExp(
 | 
			
		||||
          '(^|\\b)' + className.split(' ').join('|') + '(\\b|$)',
 | 
			
		||||
          'gi',
 | 
			
		||||
        ),
 | 
			
		||||
        ' ',
 | 
			
		||||
      );
 | 
			
		||||
  };
 | 
			
		||||
    const removeClass = (element, className) => {
 | 
			
		||||
        if (element.classList) element.classList.remove(className);
 | 
			
		||||
        else
 | 
			
		||||
            element.className = element.className.replace(
 | 
			
		||||
                new RegExp(
 | 
			
		||||
                    '(^|\\b)' + className.split(' ').join('|') + '(\\b|$)',
 | 
			
		||||
                    'gi',
 | 
			
		||||
                ),
 | 
			
		||||
                ' ',
 | 
			
		||||
            );
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
  const wrapperClass = classNames('layout-wrapper', {
 | 
			
		||||
    'layout-overlay': layoutMode === 'overlay',
 | 
			
		||||
    'layout-static': layoutMode === 'static',
 | 
			
		||||
    'layout-static-sidebar-inactive':
 | 
			
		||||
      staticMenuInactive && layoutMode === 'static',
 | 
			
		||||
    'layout-overlay-sidebar-active':
 | 
			
		||||
      overlayMenuActive && layoutMode === 'overlay',
 | 
			
		||||
    'layout-mobile-sidebar-active': mobileMenuActive,
 | 
			
		||||
    'p-input-filled': inputStyle === 'filled',
 | 
			
		||||
    'p-ripple-disabled': ripple === false,
 | 
			
		||||
    'layout-theme-light': layoutColorMode === 'light',
 | 
			
		||||
  });
 | 
			
		||||
    const wrapperClass = classNames('layout-wrapper', {
 | 
			
		||||
        'layout-overlay': layoutMode === 'overlay',
 | 
			
		||||
        'layout-static': layoutMode === 'static',
 | 
			
		||||
        'layout-static-sidebar-inactive':
 | 
			
		||||
            staticMenuInactive && layoutMode === 'static',
 | 
			
		||||
        'layout-overlay-sidebar-active':
 | 
			
		||||
            overlayMenuActive && layoutMode === 'overlay',
 | 
			
		||||
        'layout-mobile-sidebar-active': mobileMenuActive,
 | 
			
		||||
        'p-input-filled': inputStyle === 'filled',
 | 
			
		||||
        'p-ripple-disabled': ripple === false,
 | 
			
		||||
        'layout-theme-light': layoutColorMode === 'light',
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <div className={wrapperClass} onClick={onWrapperClick}>
 | 
			
		||||
      <Tooltip
 | 
			
		||||
        ref={copyTooltipRef}
 | 
			
		||||
        target=".block-action-copy"
 | 
			
		||||
        position="bottom"
 | 
			
		||||
        content="Copied to clipboard"
 | 
			
		||||
        event="focus"
 | 
			
		||||
      />
 | 
			
		||||
 | 
			
		||||
      <AppTopbar
 | 
			
		||||
        onToggleMenuClick={onToggleMenuClick}
 | 
			
		||||
        layoutColorMode={layoutColorMode}
 | 
			
		||||
        mobileTopbarMenuActive={mobileTopbarMenuActive}
 | 
			
		||||
        onMobileTopbarMenuClick={onMobileTopbarMenuClick}
 | 
			
		||||
        onMobileSubTopbarMenuClick={onMobileSubTopbarMenuClick}
 | 
			
		||||
      />
 | 
			
		||||
 | 
			
		||||
      <div className="layout-sidebar" onClick={onSidebarClick}>
 | 
			
		||||
        <AppMenu
 | 
			
		||||
          model={menu}
 | 
			
		||||
          onMenuItemClick={onMenuItemClick}
 | 
			
		||||
          layoutColorMode={layoutColorMode}
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
 | 
			
		||||
      <div className="layout-main-container">
 | 
			
		||||
        <div className="layout-main">
 | 
			
		||||
          <Route
 | 
			
		||||
            path="/"
 | 
			
		||||
            exact
 | 
			
		||||
            render={() => (
 | 
			
		||||
              <Dashboard colorMode={layoutColorMode} location={location} />
 | 
			
		||||
            )}
 | 
			
		||||
          />
 | 
			
		||||
          <Route path="/formlayout" component={FormLayoutDemo} />
 | 
			
		||||
          <Route path="/input" component={InputDemo} />
 | 
			
		||||
          <Route path="/floatlabel" component={FloatLabelDemo} />
 | 
			
		||||
          <Route path="/invalidstate" component={InvalidStateDemo} />
 | 
			
		||||
          <Route path="/button" component={ButtonDemo} />
 | 
			
		||||
          <Route path="/table" component={TableDemo} />
 | 
			
		||||
          <Route path="/list" component={ListDemo} />
 | 
			
		||||
          <Route path="/tree" component={TreeDemo} />
 | 
			
		||||
          <Route path="/panel" component={PanelDemo} />
 | 
			
		||||
          <Route path="/overlay" component={OverlayDemo} />
 | 
			
		||||
          <Route path="/media" component={MediaDemo} />
 | 
			
		||||
          <Route path="/menu" component={MenuDemo} />
 | 
			
		||||
          <Route path="/messages" component={MessagesDemo} />
 | 
			
		||||
          <Route path="/blocks" component={BlocksDemo} />
 | 
			
		||||
          <Route path="/icons" component={IconsDemo} />
 | 
			
		||||
          <Route path="/file" component={FileDemo} />
 | 
			
		||||
          <Route
 | 
			
		||||
            path="/chart"
 | 
			
		||||
            render={() => (
 | 
			
		||||
              <ChartDemo colorMode={layoutColorMode} location={location} />
 | 
			
		||||
            )}
 | 
			
		||||
          />
 | 
			
		||||
          <Route path="/misc" component={MiscDemo} />
 | 
			
		||||
          <Route path="/timeline" component={TimelineDemo} />
 | 
			
		||||
          <Route path="/crud" component={Crud} />
 | 
			
		||||
          <Route path="/empty" component={EmptyPage} />
 | 
			
		||||
          <Route path="/documentation" component={Documentation} />
 | 
			
		||||
          <Route
 | 
			
		||||
            path="/administradoresSistema"
 | 
			
		||||
            component={AdministradoresSistema}
 | 
			
		||||
          />
 | 
			
		||||
          <Route
 | 
			
		||||
            path="/administradoresComunidad"
 | 
			
		||||
            component={AdministradoresComunidad}
 | 
			
		||||
          />
 | 
			
		||||
          <Route path="/guardasSeguridad" component={GuardasSeguridad} />
 | 
			
		||||
          <Route path="/comunidadesViviendas" component={Communities} />
 | 
			
		||||
          <Route path="/inquilinos" component={Inquilinos} />
 | 
			
		||||
          <Route path="/InquilinosCompletar" component={InquilinosCompletar} />
 | 
			
		||||
          <Route path="/areasComunes" component={AreasComunes} />
 | 
			
		||||
          <Route path="/logIn" component={LogIn} />
 | 
			
		||||
        </div>
 | 
			
		||||
    return (
 | 
			
		||||
 | 
			
		||||
        <AppFooter layoutColorMode={layoutColorMode} />
 | 
			
		||||
      </div>
 | 
			
		||||
        <BrowserRouter>
 | 
			
		||||
            <Switch>
 | 
			
		||||
 | 
			
		||||
      <AppConfig
 | 
			
		||||
        rippleEffect={ripple}
 | 
			
		||||
        onRippleEffect={onRipple}
 | 
			
		||||
        inputStyle={inputStyle}
 | 
			
		||||
        onInputStyleChange={onInputStyleChange}
 | 
			
		||||
        layoutMode={layoutMode}
 | 
			
		||||
        onLayoutModeChange={onLayoutModeChange}
 | 
			
		||||
        layoutColorMode={layoutColorMode}
 | 
			
		||||
        onColorModeChange={onColorModeChange}
 | 
			
		||||
      />
 | 
			
		||||
                <div className={wrapperClass} onClick={onWrapperClick}>
 | 
			
		||||
 | 
			
		||||
      <CSSTransition
 | 
			
		||||
        classNames="layout-mask"
 | 
			
		||||
        timeout={{ enter: 200, exit: 200 }}
 | 
			
		||||
        in={mobileMenuActive}
 | 
			
		||||
        unmountOnExit
 | 
			
		||||
      >
 | 
			
		||||
        <div className="layout-mask p-component-overlay"></div>
 | 
			
		||||
      </CSSTransition>
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
                    <Tooltip ref={copyTooltipRef} target=".block-action-copy" position="bottom" content="Copied to clipboard" event="focus" />
 | 
			
		||||
 | 
			
		||||
                    <AppTopbar onToggleMenuClick={onToggleMenuClick} layoutColorMode={layoutColorMode}
 | 
			
		||||
                        mobileTopbarMenuActive={mobileTopbarMenuActive} onMobileTopbarMenuClick={onMobileTopbarMenuClick} onMobileSubTopbarMenuClick={onMobileSubTopbarMenuClick} />
 | 
			
		||||
 | 
			
		||||
                    <div className="layout-sidebar" onClick={onSidebarClick}>
 | 
			
		||||
                        <AppMenu model={menu4()} onMenuItemClick={onMenuItemClick} layoutColorMode={layoutColorMode} />
 | 
			
		||||
                    </div>
 | 
			
		||||
 | 
			
		||||
                    <div className="layout-main-container">
 | 
			
		||||
                        <div className="layout-main">
 | 
			
		||||
                            {(() => {
 | 
			
		||||
                                if (!cookies.email) {
 | 
			
		||||
                                    return (
 | 
			
		||||
                                        <>
 | 
			
		||||
 | 
			
		||||
                                            <Route path="/login" exact component={LogInUser} />
 | 
			
		||||
 | 
			
		||||
                                        </>
 | 
			
		||||
 | 
			
		||||
                                    )
 | 
			
		||||
                                } else {
 | 
			
		||||
 | 
			
		||||
                                    if (cookies.type == '1') {
 | 
			
		||||
                                        return (
 | 
			
		||||
                                            <>
 | 
			
		||||
                                                <Route path="/" exact render={() => <Dashboard colorMode={layoutColorMode} location={location} />} />
 | 
			
		||||
                                                <Route path="/administradoresSistema" component={AdministradoresSistema} />
 | 
			
		||||
                                                <Route path="/administradoresComunidad" component={AdministradoresComunidad} />
 | 
			
		||||
                                                <Route path="/comunidadesViviendas" component={Communities} />
 | 
			
		||||
                                                <Route to="*" exact component={Page404} />
 | 
			
		||||
                                            </>
 | 
			
		||||
 | 
			
		||||
                                        )
 | 
			
		||||
 | 
			
		||||
                                    } else if (cookies.type == '2') {
 | 
			
		||||
                                        return (
 | 
			
		||||
                                            <>
 | 
			
		||||
                                                <Route path="/" exact render={() => <Dashboard colorMode={layoutColorMode} location={location} />} />
 | 
			
		||||
                                                <Route path="/guardasSeguridad" component={GuardasSeguridad} />
 | 
			
		||||
                                                <Route path="/inquilinos" component={Inquilinos} />
 | 
			
		||||
                                                <Route path="/areasComunes" component={AreasComunes} />
 | 
			
		||||
                                                <Route to="*" exact component={Page404} />
 | 
			
		||||
 | 
			
		||||
                                            </>
 | 
			
		||||
                                        )
 | 
			
		||||
                                    } else {
 | 
			
		||||
                                        return (
 | 
			
		||||
                                            <Route path="/page404" exact component={Page404} />
 | 
			
		||||
                                        )
 | 
			
		||||
                                    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
                                    return (
 | 
			
		||||
                                        <>
 | 
			
		||||
                                            <Route path="/" exact render={() => <Dashboard colorMode={layoutColorMode} location={location} />} />
 | 
			
		||||
 | 
			
		||||
                                            <Route path="/formlayout" component={FormLayoutDemo} />
 | 
			
		||||
                                            <Route path="/input" component={InputDemo} />
 | 
			
		||||
                                            <Route path="/floatlabel" component={FloatLabelDemo} />
 | 
			
		||||
                                            <Route path="/invalidstate" component={InvalidStateDemo} />
 | 
			
		||||
                                            <Route path="/button" component={ButtonDemo} />
 | 
			
		||||
                                            <Route path="/table" component={TableDemo} />
 | 
			
		||||
                                            <Route path="/list" component={ListDemo} />
 | 
			
		||||
                                            <Route path="/tree" component={TreeDemo} />
 | 
			
		||||
                                            <Route path="/panel" component={PanelDemo} />
 | 
			
		||||
                                            <Route path="/overlay" component={OverlayDemo} />
 | 
			
		||||
                                            <Route path="/media" component={MediaDemo} />
 | 
			
		||||
                                            <Route path="/menu" component={MenuDemo} />
 | 
			
		||||
                                            <Route path="/messages" component={MessagesDemo} />
 | 
			
		||||
                                            {/*<Route path="/blocks" component={BlocksDemo} />*/}
 | 
			
		||||
                                            <Route path="/icons" component={IconsDemo} />
 | 
			
		||||
                                            <Route path="/file" component={FileDemo} />
 | 
			
		||||
                                            <Route path="/chart" render={() => <ChartDemo colorMode={layoutColorMode} location={location} />} />
 | 
			
		||||
                                            <Route path="/misc" component={MiscDemo} />
 | 
			
		||||
                                            <Route path="/timeline" component={TimelineDemo} />
 | 
			
		||||
                                            <Route path="/crud" component={Crud} />
 | 
			
		||||
                                            <Route path="/empty" component={EmptyPage} />
 | 
			
		||||
                                            <Route path="/documentation" component={Documentation} />
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
                                        </>
 | 
			
		||||
 | 
			
		||||
                                    )
 | 
			
		||||
 | 
			
		||||
                                }
 | 
			
		||||
                            })()}
 | 
			
		||||
 | 
			
		||||
                        </div>
 | 
			
		||||
 | 
			
		||||
                        <AppFooter layoutColorMode={layoutColorMode} />
 | 
			
		||||
                    </div>
 | 
			
		||||
 | 
			
		||||
                    <AppConfig />
 | 
			
		||||
 | 
			
		||||
                    <CSSTransition classNames="layout-mask" timeout={{ enter: 200, exit: 200 }} in={mobileMenuActive} unmountOnExit>
 | 
			
		||||
                        <div className="layout-mask p-component-overlay"></div>
 | 
			
		||||
                    </CSSTransition>
 | 
			
		||||
                </div>
 | 
			
		||||
            </Switch>
 | 
			
		||||
        </BrowserRouter>
 | 
			
		||||
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default App;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -6,171 +6,161 @@ import { Ripple } from 'primereact/ripple';
 | 
			
		|||
import { Badge } from 'primereact/badge';
 | 
			
		||||
 | 
			
		||||
const AppSubmenu = (props) => {
 | 
			
		||||
  const [activeIndex, setActiveIndex] = useState(null);
 | 
			
		||||
    const [activeIndex, setActiveIndex] = useState(null);
 | 
			
		||||
 | 
			
		||||
  const onMenuItemClick = (event, item, index) => {
 | 
			
		||||
    //avoid processing disabled items
 | 
			
		||||
    if (item.disabled) {
 | 
			
		||||
      event.preventDefault();
 | 
			
		||||
      return true;
 | 
			
		||||
    }
 | 
			
		||||
    const onMenuItemClick = (event, item, index) => {
 | 
			
		||||
        //avoid processing disabled items
 | 
			
		||||
        if (item.disabled) {
 | 
			
		||||
            event.preventDefault();
 | 
			
		||||
            return true;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
    //execute command
 | 
			
		||||
    if (item.command) {
 | 
			
		||||
      item.command({ originalEvent: event, item: item });
 | 
			
		||||
    }
 | 
			
		||||
        //execute command
 | 
			
		||||
        if (item.command) {
 | 
			
		||||
            item.command({ originalEvent: event, item: item });
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
    if (index === activeIndex) setActiveIndex(null);
 | 
			
		||||
    else setActiveIndex(index);
 | 
			
		||||
        if (index === activeIndex) setActiveIndex(null);
 | 
			
		||||
        else setActiveIndex(index);
 | 
			
		||||
 | 
			
		||||
    if (props.onMenuItemClick) {
 | 
			
		||||
      props.onMenuItemClick({
 | 
			
		||||
        originalEvent: event,
 | 
			
		||||
        item: item,
 | 
			
		||||
      });
 | 
			
		||||
    }
 | 
			
		||||
  };
 | 
			
		||||
        if (props.onMenuItemClick) {
 | 
			
		||||
            props.onMenuItemClick({
 | 
			
		||||
                originalEvent: event,
 | 
			
		||||
                item: item,
 | 
			
		||||
            });
 | 
			
		||||
        }
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
  const onKeyDown = (event) => {
 | 
			
		||||
    if (event.code === 'Enter' || event.code === 'Space') {
 | 
			
		||||
      event.preventDefault();
 | 
			
		||||
      event.target.click();
 | 
			
		||||
    }
 | 
			
		||||
  };
 | 
			
		||||
    const onKeyDown = (event) => {
 | 
			
		||||
        if (event.code === 'Enter' || event.code === 'Space') {
 | 
			
		||||
            event.preventDefault();
 | 
			
		||||
            event.target.click();
 | 
			
		||||
        }
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
  const renderLinkContent = (item) => {
 | 
			
		||||
    let submenuIcon = item.items && (
 | 
			
		||||
      <i className="pi pi-fw pi-angle-down menuitem-toggle-icon"></i>
 | 
			
		||||
    );
 | 
			
		||||
    let badge = item.badge && <Badge value={item.badge} />;
 | 
			
		||||
    const renderLinkContent = (item) => {
 | 
			
		||||
        let submenuIcon = item.items && (
 | 
			
		||||
            <i className="pi pi-fw pi-angle-down menuitem-toggle-icon"></i>
 | 
			
		||||
        );
 | 
			
		||||
        let badge = item.badge && <Badge value={item.badge} />;
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
      <React.Fragment>
 | 
			
		||||
        <i className={item.icon}></i>
 | 
			
		||||
        <span>{item.label}</span>
 | 
			
		||||
        {submenuIcon}
 | 
			
		||||
        {badge}
 | 
			
		||||
        <Ripple />
 | 
			
		||||
      </React.Fragment>
 | 
			
		||||
    );
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const renderLink = (item, i) => {
 | 
			
		||||
    let content = renderLinkContent(item);
 | 
			
		||||
 | 
			
		||||
    if (item.to) {
 | 
			
		||||
      return (
 | 
			
		||||
        <NavLink
 | 
			
		||||
          aria-label={item.label}
 | 
			
		||||
          onKeyDown={onKeyDown}
 | 
			
		||||
          role="menuitem"
 | 
			
		||||
          className="p-ripple"
 | 
			
		||||
          activeClassName="router-link-active router-link-exact-active"
 | 
			
		||||
          to={item.to}
 | 
			
		||||
          onClick={(e) => onMenuItemClick(e, item, i)}
 | 
			
		||||
          exact
 | 
			
		||||
          target={item.target}
 | 
			
		||||
        >
 | 
			
		||||
          {content}
 | 
			
		||||
        </NavLink>
 | 
			
		||||
      );
 | 
			
		||||
    } else {
 | 
			
		||||
      return (
 | 
			
		||||
        <a
 | 
			
		||||
          tabIndex="0"
 | 
			
		||||
          aria-label={item.label}
 | 
			
		||||
          onKeyDown={onKeyDown}
 | 
			
		||||
          role="menuitem"
 | 
			
		||||
          href={item.url}
 | 
			
		||||
          className="p-ripple"
 | 
			
		||||
          onClick={(e) => onMenuItemClick(e, item, i)}
 | 
			
		||||
          target={item.target}
 | 
			
		||||
        >
 | 
			
		||||
          {content}
 | 
			
		||||
        </a>
 | 
			
		||||
      );
 | 
			
		||||
    }
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  let items =
 | 
			
		||||
    props.items &&
 | 
			
		||||
    props.items.map((item, i) => {
 | 
			
		||||
      let active = activeIndex === i;
 | 
			
		||||
      let styleClass = classNames(item.badgeStyleClass, {
 | 
			
		||||
        'layout-menuitem-category': props.root,
 | 
			
		||||
        'active-menuitem': active && !item.to,
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      if (props.root) {
 | 
			
		||||
        return (
 | 
			
		||||
          <li className={styleClass} key={i} role="none">
 | 
			
		||||
            {props.root === true && (
 | 
			
		||||
              <React.Fragment>
 | 
			
		||||
                <div
 | 
			
		||||
                  className="layout-menuitem-root-text"
 | 
			
		||||
                  aria-label={item.label}
 | 
			
		||||
            <React.Fragment>
 | 
			
		||||
                <i className={item.icon}></i>
 | 
			
		||||
                <span>{item.label}</span>
 | 
			
		||||
                {submenuIcon}
 | 
			
		||||
                {badge}
 | 
			
		||||
                <Ripple />
 | 
			
		||||
            </React.Fragment>
 | 
			
		||||
        );
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const renderLink = (item, i) => {
 | 
			
		||||
        let content = renderLinkContent(item);
 | 
			
		||||
 | 
			
		||||
        if (item.to) {
 | 
			
		||||
            return (
 | 
			
		||||
                <NavLink
 | 
			
		||||
                    aria-label={item.label}
 | 
			
		||||
                    onKeyDown={onKeyDown}
 | 
			
		||||
                    role="menuitem"
 | 
			
		||||
                    className="p-ripple"
 | 
			
		||||
                    activeClassName="router-link-active router-link-exact-active"
 | 
			
		||||
                    to={item.to}
 | 
			
		||||
                    onClick={(e) => onMenuItemClick(e, item, i)}
 | 
			
		||||
                    exact
 | 
			
		||||
                    target={item.target}
 | 
			
		||||
                >
 | 
			
		||||
                  {item.label}
 | 
			
		||||
                </div>
 | 
			
		||||
                <AppSubmenu
 | 
			
		||||
                  items={item.items}
 | 
			
		||||
                  onMenuItemClick={props.onMenuItemClick}
 | 
			
		||||
                />
 | 
			
		||||
              </React.Fragment>
 | 
			
		||||
            )}
 | 
			
		||||
          </li>
 | 
			
		||||
        );
 | 
			
		||||
      } else {
 | 
			
		||||
        return (
 | 
			
		||||
          <li className={styleClass} key={i} role="none">
 | 
			
		||||
            {renderLink(item, i)}
 | 
			
		||||
            <CSSTransition
 | 
			
		||||
              classNames="layout-submenu-wrapper"
 | 
			
		||||
              timeout={{ enter: 1000, exit: 450 }}
 | 
			
		||||
              in={active}
 | 
			
		||||
              unmountOnExit
 | 
			
		||||
            >
 | 
			
		||||
              <AppSubmenu
 | 
			
		||||
                items={item.items}
 | 
			
		||||
                onMenuItemClick={props.onMenuItemClick}
 | 
			
		||||
              />
 | 
			
		||||
            </CSSTransition>
 | 
			
		||||
          </li>
 | 
			
		||||
        );
 | 
			
		||||
      }
 | 
			
		||||
    });
 | 
			
		||||
                    {content}
 | 
			
		||||
                </NavLink>
 | 
			
		||||
            );
 | 
			
		||||
        } else {
 | 
			
		||||
            return (
 | 
			
		||||
                <a
 | 
			
		||||
                    tabIndex="0"
 | 
			
		||||
                    aria-label={item.label}
 | 
			
		||||
                    onKeyDown={onKeyDown}
 | 
			
		||||
                    role="menuitem"
 | 
			
		||||
                    href={item.url}
 | 
			
		||||
                    className="p-ripple"
 | 
			
		||||
                    onClick={(e) => onMenuItemClick(e, item, i)}
 | 
			
		||||
                    target={item.target}
 | 
			
		||||
                >
 | 
			
		||||
                    {content}
 | 
			
		||||
                </a>
 | 
			
		||||
            );
 | 
			
		||||
        }
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
  return items ? (
 | 
			
		||||
    <ul className={props.className} role="menu">
 | 
			
		||||
      {items}
 | 
			
		||||
    </ul>
 | 
			
		||||
  ) : null;
 | 
			
		||||
    let items =
 | 
			
		||||
        props.items &&
 | 
			
		||||
        props.items.map((item, i) => {
 | 
			
		||||
            let active = activeIndex === i;
 | 
			
		||||
            let styleClass = classNames(item.badgeStyleClass, {
 | 
			
		||||
                'layout-menuitem-category': props.root,
 | 
			
		||||
                'active-menuitem': active && !item.to,
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            if (props.root) {
 | 
			
		||||
                return (
 | 
			
		||||
                    <li className={styleClass} key={i} role="none">
 | 
			
		||||
                        {props.root === true && (
 | 
			
		||||
                            <React.Fragment>
 | 
			
		||||
                                <div
 | 
			
		||||
                                    className="layout-menuitem-root-text"
 | 
			
		||||
                                    aria-label={item.label}
 | 
			
		||||
                                >
 | 
			
		||||
                                    {item.label}
 | 
			
		||||
                                </div>
 | 
			
		||||
                                <AppSubmenu
 | 
			
		||||
                                    items={item.items}
 | 
			
		||||
                                    onMenuItemClick={props.onMenuItemClick}
 | 
			
		||||
                                />
 | 
			
		||||
                            </React.Fragment>
 | 
			
		||||
                        )}
 | 
			
		||||
                    </li>
 | 
			
		||||
                );
 | 
			
		||||
            } else {
 | 
			
		||||
                return (
 | 
			
		||||
                    <li className={styleClass} key={i} role="none">
 | 
			
		||||
                        {renderLink(item, i)}
 | 
			
		||||
                        <CSSTransition
 | 
			
		||||
                            classNames="layout-submenu-wrapper"
 | 
			
		||||
                            timeout={{ enter: 1000, exit: 450 }}
 | 
			
		||||
                            in={active}
 | 
			
		||||
                            unmountOnExit
 | 
			
		||||
                        >
 | 
			
		||||
                            <AppSubmenu
 | 
			
		||||
                                items={item.items}
 | 
			
		||||
                                onMenuItemClick={props.onMenuItemClick}
 | 
			
		||||
                            />
 | 
			
		||||
                        </CSSTransition>
 | 
			
		||||
                    </li>
 | 
			
		||||
                );
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
    return items ? (
 | 
			
		||||
        <ul className={props.className} role="menu">
 | 
			
		||||
            {items}
 | 
			
		||||
        </ul>
 | 
			
		||||
    ) : null;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export const AppMenu = (props) => {
 | 
			
		||||
  return (
 | 
			
		||||
    <div className="layout-menu-container">
 | 
			
		||||
      <AppSubmenu
 | 
			
		||||
        items={props.model}
 | 
			
		||||
        className="layout-menu"
 | 
			
		||||
        onMenuItemClick={props.onMenuItemClick}
 | 
			
		||||
        root={true}
 | 
			
		||||
        role="menu"
 | 
			
		||||
      />
 | 
			
		||||
      <a
 | 
			
		||||
        href="https://www.primefaces.org/primeblocks-react"
 | 
			
		||||
        className="block mt-3"
 | 
			
		||||
      >
 | 
			
		||||
        <img
 | 
			
		||||
          alt="primeblocks"
 | 
			
		||||
          className="w-full"
 | 
			
		||||
          src={
 | 
			
		||||
            props.layoutColorMode === 'light'
 | 
			
		||||
              ? 'assets/layout/images/banner-primeblocks.png'
 | 
			
		||||
              : 'assets/layout/images/banner-primeblocks-dark.png'
 | 
			
		||||
          }
 | 
			
		||||
        />
 | 
			
		||||
      </a>
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
};
 | 
			
		||||
    return (
 | 
			
		||||
        <div className="layout-menu-container">
 | 
			
		||||
            <AppSubmenu
 | 
			
		||||
                items={props.model}
 | 
			
		||||
                className="layout-menu"
 | 
			
		||||
                onMenuItemClick={props.onMenuItemClick}
 | 
			
		||||
                root={true}
 | 
			
		||||
                role="menu"
 | 
			
		||||
            />
 | 
			
		||||
           
 | 
			
		||||
        </div>
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,46 +1,118 @@
 | 
			
		|||
import React from 'react';
 | 
			
		||||
import React, { useState, useEffect } from 'react';
 | 
			
		||||
import { Link } from 'react-router-dom';
 | 
			
		||||
import classNames from 'classnames';
 | 
			
		||||
import Cookies from 'universal-cookie';
 | 
			
		||||
import { Button } from 'primereact/button';
 | 
			
		||||
import { Menubar } from 'primereact/menubar';
 | 
			
		||||
 | 
			
		||||
const cookies = new Cookies();
 | 
			
		||||
 | 
			
		||||
export const AppTopbar = (props) => {
 | 
			
		||||
  return (
 | 
			
		||||
    <div className="layout-topbar">
 | 
			
		||||
      <Link to="/" className="layout-topbar-logo">
 | 
			
		||||
        <img src={'assets/layout/images/logo-dark.svg'} alt="logo" />
 | 
			
		||||
        <span>KATOIKIA</span>
 | 
			
		||||
      </Link>
 | 
			
		||||
    const [logged, setLogged] = useState(null);
 | 
			
		||||
 | 
			
		||||
      {/* <button type="button" className="p-link  layout-menu-button layout-topbar-button" onClick={props.onToggleMenuClick}>
 | 
			
		||||
 | 
			
		||||
    function cerrarSesion() {
 | 
			
		||||
        cookies.remove('id', { path: "/" });
 | 
			
		||||
        cookies.remove('email', { path: "/" });
 | 
			
		||||
        cookies.remove('name', { path: "/" });
 | 
			
		||||
        cookies.remove('type', { path: "/" });
 | 
			
		||||
        cookies.remove('community_id', { path: "/" });
 | 
			
		||||
        window.location.href = '/login';
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    useEffect(() => {
 | 
			
		||||
        if (cookies.get('email')) {
 | 
			
		||||
            setLogged(true);
 | 
			
		||||
        } else {
 | 
			
		||||
            setLogged(false);
 | 
			
		||||
        };
 | 
			
		||||
    }, [])
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    const buttonLogout = () => {
 | 
			
		||||
        return (
 | 
			
		||||
            <>
 | 
			
		||||
                <div className="my-2">
 | 
			
		||||
                    <Button label="Cerrar Sesión"
 | 
			
		||||
                        className="p-button-danger"
 | 
			
		||||
                        onClick={cerrarSesion}
 | 
			
		||||
                        disabled={logged} />
 | 
			
		||||
                </div>
 | 
			
		||||
            </>
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    const menuProfile = [
 | 
			
		||||
        {
 | 
			
		||||
            label: 'Perfil',
 | 
			
		||||
            icon: 'pi pi-user',
 | 
			
		||||
            items: [
 | 
			
		||||
                {
 | 
			
		||||
                    label: 'Cerrar Sesion',
 | 
			
		||||
                    icon: 'pi pi-fw pi-lock',
 | 
			
		||||
                }
 | 
			
		||||
            ],
 | 
			
		||||
        },
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
        <div className="layout-topbar">
 | 
			
		||||
            <Link to="/" className="layout-topbar-logo">
 | 
			
		||||
                <img src={'images/Logo_Katoikia.svg'} alt="logo" />
 | 
			
		||||
                <span>KATOIKIA</span>
 | 
			
		||||
            </Link>
 | 
			
		||||
 | 
			
		||||
            {/* <button type="button" className="p-link  layout-menu-button layout-topbar-button" onClick={props.onToggleMenuClick}>
 | 
			
		||||
                <i className="pi pi-bars"/>
 | 
			
		||||
            </button> */}
 | 
			
		||||
 | 
			
		||||
      <button
 | 
			
		||||
        type="button"
 | 
			
		||||
        className="p-link layout-topbar-menu-button layout-topbar-button"
 | 
			
		||||
      >
 | 
			
		||||
        <i className="pi pi-ellipsis-v" />
 | 
			
		||||
      </button>
 | 
			
		||||
            <button
 | 
			
		||||
                type="button"
 | 
			
		||||
                className="p-link layout-topbar-menu-button layout-topbar-button"
 | 
			
		||||
            >
 | 
			
		||||
                <i className="pi pi-ellipsis-v" />
 | 
			
		||||
            </button>
 | 
			
		||||
 | 
			
		||||
      <ul className="layout-topbar-menu lg:flex origin-top">
 | 
			
		||||
        {/* <li>
 | 
			
		||||
            <ul className="layout-topbar-menu lg:flex origin-top">
 | 
			
		||||
                {/* <li>
 | 
			
		||||
                        <button className="p-link layout-topbar-button" onClick={props.onMobileSubTopbarMenuClick}>
 | 
			
		||||
                            <i className="pi pi-calendar"/>
 | 
			
		||||
                            <span>Events</span>
 | 
			
		||||
                        </button>
 | 
			
		||||
                    </li> */}
 | 
			
		||||
        {/* <li>
 | 
			
		||||
                {/* <li>
 | 
			
		||||
                        <button className="p-link layout-topbar-button" onClick={props.onMobileSubTopbarMenuClick}>
 | 
			
		||||
                            <i className="pi pi-cog"/>
 | 
			
		||||
                            <span>Settings</span>
 | 
			
		||||
                        </button>
 | 
			
		||||
                    </li> */}
 | 
			
		||||
        <li>
 | 
			
		||||
          <button className="p-link layout-topbar-button">
 | 
			
		||||
            <i className="pi pi-user" />
 | 
			
		||||
            <span>Profile</span>
 | 
			
		||||
          </button>
 | 
			
		||||
        </li>
 | 
			
		||||
      </ul>
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
};
 | 
			
		||||
                <li className='mx-2' hidden={!logged}>
 | 
			
		||||
                    <button className="p-link layout-topbar-button" >
 | 
			
		||||
                        <i className="pi pi-user" />
 | 
			
		||||
                        <span>Perfil</span>
 | 
			
		||||
                    </button>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li className='mx-2' hidden={!logged}>
 | 
			
		||||
                    <button className="p-link layout-topbar-button" onClick={cerrarSesion} >
 | 
			
		||||
                        <i className="pi pi-sign-out" />
 | 
			
		||||
                        <span>Cerrar Sesión</span>
 | 
			
		||||
                    </button>
 | 
			
		||||
                </li>
 | 
			
		||||
                {/*
 | 
			
		||||
                    <Menubar model={menuProfile} ></Menubar>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
                </li>
 | 
			
		||||
                <li hidden={!logged}>
 | 
			
		||||
                    <div className="my-2" >
 | 
			
		||||
                        <Button label="Cerrar Sesión"
 | 
			
		||||
                            className="p-button-danger"
 | 
			
		||||
                            onClick={cerrarSesion}
 | 
			
		||||
                        />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </li>*/}
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
    );
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,30 +0,0 @@
 | 
			
		|||
import React from 'react';
 | 
			
		||||
import { InputText } from 'primereact/inputtext';
 | 
			
		||||
 | 
			
		||||
const LogIn = () => {
 | 
			
		||||
  return (
 | 
			
		||||
    <div className="grid">
 | 
			
		||||
      <div className="col-12">
 | 
			
		||||
        <div className="card">
 | 
			
		||||
          <h5>Iniciar Sesión</h5>
 | 
			
		||||
          <div className="p-fluid formgrid grid">
 | 
			
		||||
            <div className="field col-12">
 | 
			
		||||
              <label htmlFor="nombre">Correo electrónico</label>
 | 
			
		||||
              <InputText id="nombre" type="text" />
 | 
			
		||||
            </div>
 | 
			
		||||
            <div className="field col-12 ">
 | 
			
		||||
              <label htmlFor="apellidos">Contraseña</label>
 | 
			
		||||
              <InputText id="apellidos" type="text" />
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            {/* <Button label="Registrar" onClick={registrarAdmin}></Button> */}
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default LogIn;
 | 
			
		||||
 | 
			
		||||
/* image 1 */
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,226 @@
 | 
			
		|||
import React, { Component, Fragment, useRef } from 'react';
 | 
			
		||||
import Cookies from 'universal-cookie';
 | 
			
		||||
import { InputText } from 'primereact/inputtext';
 | 
			
		||||
import { Button } from 'primereact/button';
 | 
			
		||||
import { Toast } from 'primereact/toast';
 | 
			
		||||
 | 
			
		||||
const baseUrl = "http://localhost:4000/user/loginUser";
 | 
			
		||||
const cookies = new Cookies();
 | 
			
		||||
 | 
			
		||||
class LogInUser extends Component {
 | 
			
		||||
    constructor(props) {
 | 
			
		||||
        super(props);
 | 
			
		||||
        this.state = {
 | 
			
		||||
            form: {
 | 
			
		||||
                email: '',
 | 
			
		||||
                password: ''
 | 
			
		||||
            },
 | 
			
		||||
            errorEmail: false,
 | 
			
		||||
            errorPassword: false,
 | 
			
		||||
            logged: null
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    handleChange = async e => {
 | 
			
		||||
        await this.setState({
 | 
			
		||||
            form: {
 | 
			
		||||
                ...this.state.form,
 | 
			
		||||
                [e.target.name]: e.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;
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    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);
 | 
			
		||||
                })
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    componentDidMount() {
 | 
			
		||||
        if (cookies.get('email')) {
 | 
			
		||||
            window.location.href = "/";
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    renderErrorMessage = (name) =>
 | 
			
		||||
        name === this.state.errorMessages.name && (
 | 
			
		||||
            <div className="error">{this.state.errorMessages.message}</div>
 | 
			
		||||
        );
 | 
			
		||||
 | 
			
		||||
    errors = {
 | 
			
		||||
        email: "Correo requerido",
 | 
			
		||||
        pass: "Contraseña requerida"
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    render() {
 | 
			
		||||
        return (
 | 
			
		||||
 | 
			
		||||
            <Fragment>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
                <div className="grid ">
 | 
			
		||||
                    <div className="col-10 xl:col-8">
 | 
			
		||||
                        <div id="notification" className="p-message p-message-error" hidden={true} >
 | 
			
		||||
                            <div className="card">
 | 
			
		||||
                                <h5 className='card-header' id="message">
 | 
			
		||||
                                </h5>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div id="notification2" className="p-message p-message-success" hidden={true} >
 | 
			
		||||
                            <div className="card">
 | 
			
		||||
                                <h5 className='card-header' id="message2">
 | 
			
		||||
                                </h5>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div className="col-10 xl:col-8">
 | 
			
		||||
 | 
			
		||||
                        <div className="card">
 | 
			
		||||
                            <h5 className='card-header'>Iniciar Sesión</h5>
 | 
			
		||||
                            <div className="p-fluid formgrid grid">
 | 
			
		||||
 | 
			
		||||
                                <div className="field col-12 md:col-12">
 | 
			
		||||
                                    <label htmlFor="email">Correo electrónico</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-user"></i>
 | 
			
		||||
                                            </span>
 | 
			
		||||
                                            <InputText id="email"
 | 
			
		||||
                                                type="email"
 | 
			
		||||
                                                name="email"
 | 
			
		||||
                                                onChange={this.handleChange}
 | 
			
		||||
                                                placeholder='Correo electrónico'
 | 
			
		||||
                                                className={this.state.errorEmail ? 'p-invalid' : ''}
 | 
			
		||||
 | 
			
		||||
                                            />
 | 
			
		||||
                                        </div>
 | 
			
		||||
                                        {this.state.errorEmail && (
 | 
			
		||||
                                            <small className="p-invalid">Correo electrónico es requerido</small>
 | 
			
		||||
                                        )}
 | 
			
		||||
 | 
			
		||||
                                    </div>
 | 
			
		||||
                                </div>
 | 
			
		||||
                                <div className="field col-12 md:col-12">
 | 
			
		||||
                                    <label htmlFor="v">Contraseña</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-lock"></i>
 | 
			
		||||
                                            </span>
 | 
			
		||||
                                            <InputText id="password"
 | 
			
		||||
                                                type="password"
 | 
			
		||||
                                                name="password"
 | 
			
		||||
                                                onChange={this.handleChange}
 | 
			
		||||
                                                placeholder='Contraseña'
 | 
			
		||||
                                                className={this.state.errorPassword ? 'p-invalid' : ''}
 | 
			
		||||
                                            />
 | 
			
		||||
                                        </div>
 | 
			
		||||
                                        {this.state.errorPassword && (
 | 
			
		||||
                                            <small className="p-invalid">Contraseña es requerida</small>
 | 
			
		||||
                                        )}
 | 
			
		||||
                                    </div>
 | 
			
		||||
                                </div>
 | 
			
		||||
 | 
			
		||||
                                <Button label="Iniciar sesión" type="button" onClick={() => this.iniciarSesion()}></Button>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </Fragment>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default LogInUser;
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,20 @@
 | 
			
		|||
import React from 'react';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const Page404 = () => {
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
        <div className="col-12 xl:col-12">
 | 
			
		||||
            <div className="card">
 | 
			
		||||
                <div className="surface-section px-4 py-8 md:px-6 lg:px-8">
 | 
			
		||||
                    <div className="text-700 text-center">
 | 
			
		||||
                        <div className="text-900 font-bold text-5xl mb-3">404</div>
 | 
			
		||||
                        <div className="text-700 text-2xl mb-5">No se encuentra la página</div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    )
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default React.memo(Page404)
 | 
			
		||||
| 
						 | 
				
			
			@ -7,6 +7,8 @@ import { HashRouter } from 'react-router-dom';
 | 
			
		|||
import ScrollToTop from './ScrollToTop';
 | 
			
		||||
import { CookiesProvider } from "react-cookie";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
ReactDOM.render(
 | 
			
		||||
  <HashRouter>
 | 
			
		||||
    <ScrollToTop>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue