fix file issues
This commit is contained in:
parent
790f589abc
commit
460f6c3bd8
|
@ -1,19 +1,339 @@
|
||||||
import React from "react";
|
import React, { useState, useEffect, useRef } from 'react';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
import { Route, useLocation } from 'react-router-dom';
|
||||||
|
import { CSSTransition } from 'react-transition-group';
|
||||||
|
|
||||||
|
import { AppTopbar } from './AppTopbar';
|
||||||
|
import { AppFooter } from './AppFooter';
|
||||||
|
import { AppMenu } from './AppMenu';
|
||||||
|
import { AppConfig } from './AppConfig';
|
||||||
|
|
||||||
|
import Dashboard from './templates/Dashboard';
|
||||||
|
import ButtonDemo from './templates/ButtonDemo';
|
||||||
|
import ChartDemo from './templates/ChartDemo';
|
||||||
|
import Documentation from './templates/Documentation';
|
||||||
|
import FileDemo from './templates/FileDemo';
|
||||||
|
import FloatLabelDemo from './templates/FloatLabelDemo';
|
||||||
|
import FormLayoutDemo from './templates/FormLayoutDemo';
|
||||||
|
import InputDemo from './templates/InputDemo';
|
||||||
|
import ListDemo from './templates/ListDemo';
|
||||||
|
import MenuDemo from './templates/MenuDemo';
|
||||||
|
import MessagesDemo from './templates/MessagesDemo';
|
||||||
|
import MiscDemo from './templates/MiscDemo';
|
||||||
|
import OverlayDemo from './templates/OverlayDemo';
|
||||||
|
import MediaDemo from './templates/MediaDemo';
|
||||||
|
import PanelDemo from './templates/PanelDemo';
|
||||||
|
import TableDemo from './templates/TableDemo';
|
||||||
|
import TreeDemo from './templates/TreeDemo';
|
||||||
|
import InvalidStateDemo from './templates/InvalidStateDemo';
|
||||||
|
import BlocksDemo from './templates/BlocksDemo';
|
||||||
|
import IconsDemo from './templates/IconsDemo';
|
||||||
|
import FormAdminSistema from './components/FormAdminSistema';
|
||||||
|
|
||||||
|
import Crud from './pages/Crud';
|
||||||
|
import EmptyPage from './pages/EmptyPage';
|
||||||
|
import TimelineDemo from './pages/TimelineDemo';
|
||||||
|
|
||||||
|
import PrimeReact from 'primereact/api';
|
||||||
|
import { Tooltip } from 'primereact/tooltip';
|
||||||
|
|
||||||
|
import 'primereact/resources/primereact.css';
|
||||||
|
import 'primeicons/primeicons.css';
|
||||||
|
import 'primeflex/primeflex.css';
|
||||||
|
import 'prismjs/themes/prism-coy.css';
|
||||||
|
import './assets/demo/flags/flags.css';
|
||||||
|
import './assets/demo/Demos.scss';
|
||||||
|
import './assets/layout/layout.scss';
|
||||||
|
import './App.scss';
|
||||||
|
import LogIn from './components/LogIn';
|
||||||
|
|
||||||
const App = () => {
|
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();
|
||||||
|
|
||||||
|
PrimeReact.ripple = true;
|
||||||
|
|
||||||
|
let menuClick = false;
|
||||||
|
let mobileTopbarMenuClick = false;
|
||||||
|
|
||||||
|
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]);
|
||||||
|
|
||||||
|
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 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 menu = [
|
||||||
|
{
|
||||||
|
label: 'Home',
|
||||||
|
items: [
|
||||||
|
{label: 'Dashboard', icon: 'pi pi-fw pi-home', to: '/'},
|
||||||
|
{label: 'Registro admin sistema', icon: 'pi pi-fw pi-id-card', to: '/formAdminSistema'},
|
||||||
|
{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 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'
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className={wrapperClass} onClick={onWrapperClick}>
|
||||||
<h1> Initial page </h1>
|
<Tooltip ref={copyTooltipRef} target=".block-action-copy" position="bottom" content="Copied to clipboard" event="focus" />
|
||||||
|
|
||||||
<div className="layout-main">
|
<AppTopbar onToggleMenuClick={onToggleMenuClick} layoutColorMode={layoutColorMode}
|
||||||
<ul>
|
mobileTopbarMenuActive={mobileTopbarMenuActive} onMobileTopbarMenuClick={onMobileTopbarMenuClick} onMobileSubTopbarMenuClick={onMobileSubTopbarMenuClick} />
|
||||||
<li> <a href="Doc">Documentation page</a></li>
|
|
||||||
</ul>
|
<div className="layout-sidebar" onClick={onSidebarClick}>
|
||||||
|
<AppMenu model={menu} onMenuItemClick={onMenuItemClick} layoutColorMode={layoutColorMode} />
|
||||||
</div>
|
</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="/formAdminSistema" component={FormAdminSistema} />
|
||||||
|
<Route path="/logIn" component={LogIn} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<AppFooter layoutColorMode={layoutColorMode} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<AppConfig rippleEffect={ripple} onRippleEffect={onRipple} inputStyle={inputStyle} onInputStyleChange={onInputStyleChange}
|
||||||
|
layoutMode={layoutMode} onLayoutModeChange={onLayoutModeChange} layoutColorMode={layoutColorMode} onColorModeChange={onColorModeChange} />
|
||||||
|
|
||||||
|
<CSSTransition classNames="layout-mask" timeout={{ enter: 200, exit: 200 }} in={mobileMenuActive} unmountOnExit>
|
||||||
|
<div className="layout-mask p-component-overlay"></div>
|
||||||
|
</CSSTransition>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
)
|
);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App;
|
export default App;
|
|
@ -1,4 +1,4 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ export const AppTopbar = (props) => {
|
||||||
return (
|
return (
|
||||||
<div className="layout-topbar">
|
<div className="layout-topbar">
|
||||||
<Link to="/" className="layout-topbar-logo">
|
<Link to="/" className="layout-topbar-logo">
|
||||||
<img src={props.layoutColorMode === 'light' ? 'assets/layout/images/logo-dark.svg' : 'assets/layout/images/logo-white.svg'} alt="logo"/>
|
<img src={'assets/layout/images/logo-dark.svg' } alt="logo" />
|
||||||
<span>KATOIKIA</span>
|
<span>KATOIKIA</span>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
|
@ -15,30 +15,30 @@ export const AppTopbar = (props) => {
|
||||||
<i className="pi pi-bars"/>
|
<i className="pi pi-bars"/>
|
||||||
</button> */}
|
</button> */}
|
||||||
|
|
||||||
<button type="button" className="p-link layout-topbar-menu-button layout-topbar-button" onClick={props.onMobileTopbarMenuClick}>
|
<button type="button" className="p-link layout-topbar-menu-button layout-topbar-button" >
|
||||||
<i className="pi pi-ellipsis-v" />
|
<i className="pi pi-ellipsis-v" />
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<ul className={classNames("layout-topbar-menu lg:flex origin-top", {'layout-topbar-menu-mobile-active': props.mobileTopbarMenuActive })}>
|
<ul className="layout-topbar-menu lg:flex origin-top">
|
||||||
{/* <li>
|
{/* <li>
|
||||||
<button className="p-link layout-topbar-button" onClick={props.onMobileSubTopbarMenuClick}>
|
<button className="p-link layout-topbar-button" onClick={props.onMobileSubTopbarMenuClick}>
|
||||||
<i className="pi pi-calendar"/>
|
<i className="pi pi-calendar"/>
|
||||||
<span>Events</span>
|
<span>Events</span>
|
||||||
</button>
|
</button>
|
||||||
</li> */}
|
</li> */}
|
||||||
{/* <li>
|
{/* <li>
|
||||||
<button className="p-link layout-topbar-button" onClick={props.onMobileSubTopbarMenuClick}>
|
<button className="p-link layout-topbar-button" onClick={props.onMobileSubTopbarMenuClick}>
|
||||||
<i className="pi pi-cog"/>
|
<i className="pi pi-cog"/>
|
||||||
<span>Settings</span>
|
<span>Settings</span>
|
||||||
</button>
|
</button>
|
||||||
</li> */}
|
</li> */}
|
||||||
<li>
|
<li>
|
||||||
<button className="p-link layout-topbar-button" onClick={props.onMobileSubTopbarMenuClick}>
|
<button className="p-link layout-topbar-button" >
|
||||||
<i className="pi pi-user"/>
|
<i className="pi pi-user" />
|
||||||
<span>Profile</span>
|
<span>Profile</span>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { classNames } from 'primereact/utils';
|
import { classNames } from 'primereact/utils';
|
||||||
import { CodeHighlight } from './components/CodeHighlight';
|
import { CodeHighlight } from './templates/CodeHighlight';
|
||||||
|
|
||||||
const BlockViewer = (props) => {
|
const BlockViewer = (props) => {
|
||||||
|
|
||||||
|
|
|
@ -1,339 +0,0 @@
|
||||||
import React, { useState, useEffect, useRef } from 'react';
|
|
||||||
import classNames from 'classnames';
|
|
||||||
import { Route, useLocation } from 'react-router-dom';
|
|
||||||
import { CSSTransition } from 'react-transition-group';
|
|
||||||
|
|
||||||
import { AppTopbar } from './AppTopbar';
|
|
||||||
import { AppFooter } from './AppFooter';
|
|
||||||
import { AppMenu } from './AppMenu';
|
|
||||||
import { AppConfig } from './AppConfig';
|
|
||||||
|
|
||||||
import Dashboard from './components/Dashboard';
|
|
||||||
import ButtonDemo from './components/ButtonDemo';
|
|
||||||
import ChartDemo from './components/ChartDemo';
|
|
||||||
import Documentation from './components/Documentation';
|
|
||||||
import FileDemo from './components/FileDemo';
|
|
||||||
import FloatLabelDemo from './components/FloatLabelDemo';
|
|
||||||
import FormLayoutDemo from './components/FormLayoutDemo';
|
|
||||||
import InputDemo from './components/InputDemo';
|
|
||||||
import ListDemo from './components/ListDemo';
|
|
||||||
import MenuDemo from './components/MenuDemo';
|
|
||||||
import MessagesDemo from './components/MessagesDemo';
|
|
||||||
import MiscDemo from './components/MiscDemo';
|
|
||||||
import OverlayDemo from './components/OverlayDemo';
|
|
||||||
import MediaDemo from './components/MediaDemo';
|
|
||||||
import PanelDemo from './components/PanelDemo';
|
|
||||||
import TableDemo from './components/TableDemo';
|
|
||||||
import TreeDemo from './components/TreeDemo';
|
|
||||||
import InvalidStateDemo from './components/InvalidStateDemo';
|
|
||||||
import BlocksDemo from './components/BlocksDemo';
|
|
||||||
import IconsDemo from './components/IconsDemo';
|
|
||||||
import FormAdminSistema from './components/FormAdminSistema';
|
|
||||||
|
|
||||||
import Crud from './pages/Crud';
|
|
||||||
import EmptyPage from './pages/EmptyPage';
|
|
||||||
import TimelineDemo from './pages/TimelineDemo';
|
|
||||||
|
|
||||||
import PrimeReact from 'primereact/api';
|
|
||||||
import { Tooltip } from 'primereact/tooltip';
|
|
||||||
|
|
||||||
import 'primereact/resources/primereact.css';
|
|
||||||
import 'primeicons/primeicons.css';
|
|
||||||
import 'primeflex/primeflex.css';
|
|
||||||
import 'prismjs/themes/prism-coy.css';
|
|
||||||
import './assets/demo/flags/flags.css';
|
|
||||||
import './assets/demo/Demos.scss';
|
|
||||||
import './assets/layout/layout.scss';
|
|
||||||
import './App.scss';
|
|
||||||
import LogIn from './components/LogIn';
|
|
||||||
|
|
||||||
const Doc = () => {
|
|
||||||
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();
|
|
||||||
|
|
||||||
PrimeReact.ripple = true;
|
|
||||||
|
|
||||||
let menuClick = false;
|
|
||||||
let mobileTopbarMenuClick = false;
|
|
||||||
|
|
||||||
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]);
|
|
||||||
|
|
||||||
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 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 menu = [
|
|
||||||
{
|
|
||||||
label: 'Home',
|
|
||||||
items: [
|
|
||||||
{label: 'Dashboard', icon: 'pi pi-fw pi-home', to: '/'},
|
|
||||||
{label: 'Registro admin sistema', icon: 'pi pi-fw pi-id-card', to: '/formAdminSistema'},
|
|
||||||
{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 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'
|
|
||||||
});
|
|
||||||
|
|
||||||
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="/formAdminSistema" component={FormAdminSistema} />
|
|
||||||
<Route path="/logIn" component={LogIn} />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<AppFooter layoutColorMode={layoutColorMode} />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<AppConfig rippleEffect={ripple} onRippleEffect={onRipple} inputStyle={inputStyle} onInputStyleChange={onInputStyleChange}
|
|
||||||
layoutMode={layoutMode} onLayoutModeChange={onLayoutModeChange} layoutColorMode={layoutColorMode} onColorModeChange={onColorModeChange} />
|
|
||||||
|
|
||||||
<CSSTransition classNames="layout-mask" timeout={{ enter: 200, exit: 200 }} in={mobileMenuActive} unmountOnExit>
|
|
||||||
<div className="layout-mask p-component-overlay"></div>
|
|
||||||
</CSSTransition>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Doc;
|
|
|
@ -11,10 +11,10 @@ import { ContextMenu } from 'primereact/contextmenu';
|
||||||
import { MegaMenu } from 'primereact/megamenu';
|
import { MegaMenu } from 'primereact/megamenu';
|
||||||
import { PanelMenu } from 'primereact/panelmenu';
|
import { PanelMenu } from 'primereact/panelmenu';
|
||||||
import { Route, useHistory, useLocation } from 'react-router-dom';
|
import { Route, useHistory, useLocation } from 'react-router-dom';
|
||||||
import { PersonalDemo } from '../components/menu/PersonalDemo';
|
import { PersonalDemo } from '../templates/menu/PersonalDemo';
|
||||||
import { ConfirmationDemo } from '../components/menu/ConfirmationDemo';
|
import { ConfirmationDemo } from '../templates/menu/ConfirmationDemo';
|
||||||
import { PaymentDemo } from '../components/menu/PaymentDemo';
|
import { PaymentDemo } from '../templates/menu/PaymentDemo';
|
||||||
import { SeatDemo } from '../components/menu/SeatDemo';
|
import { SeatDemo } from '../templates/menu/SeatDemo';
|
||||||
|
|
||||||
const MenuDemo = () => {
|
const MenuDemo = () => {
|
||||||
const [activeIndex, setActiveIndex] = useState(0);
|
const [activeIndex, setActiveIndex] = useState(0);
|
Loading…
Reference in New Issue