Backdrop and menu

This commit is contained in:
Max Lynch
2020-12-21 15:10:40 -06:00
parent b0aec7fc3d
commit f7974d10ac
6 changed files with 90 additions and 56 deletions
+17
View File
@@ -0,0 +1,17 @@
import classNames from 'classnames';
import { useCallback, useEffect, useState } from 'react';
const Backdrop = ({ open, onClose }) => {
return (
<div
onClick={onClose}
className={classNames('fixed z-10 inset-0 bg-black transition-opacity w-full h-full', {
'pointer-events-none': !open,
'opacity-10': open,
'opacity-0': !open,
})}
></div>
);
};
export default Backdrop;
+29
View File
@@ -0,0 +1,29 @@
import classNames from 'classnames';
const Menu = ({ open, onClose }) => (
<div
className={classNames(
'fixed z-40 transform transform-gpu translate w-48 h-full bg-gray-100 transition-transform',
{
'-translate-x-full': !open,
'-translate-x-0': open,
}
)}
>
<div className="p-4">
<h2 className="text-xl select-none">Menu</h2>
</div>
<ul>
<li>
<a
href="#"
className="text-gray-800 hover:text-gray-400 block px-4 py-2 rounded-md text-base font-medium"
>
Calendar
</a>
</li>
</ul>
</div>
);
export default Menu;
+8 -45
View File
@@ -1,30 +1,28 @@
import { useEffect, useState } from "react";
import { useEffect, useState } from 'react';
import { Plugins } from '@capacitor/core';
const Nav = ({ page }) => {
const Nav = ({ page, onShowMenu }) => {
const [showMenu, setShowMenu] = useState(false);
const [showMobileMenu, setShowMobileMenu] = useState(false);
useEffect(() => {
Plugins.StatusBar.setStyle({
style: 'DARK'
style: 'DARK',
});
}, []);
return (
<nav
className="bg-gray-800 w-full flex-0 flex items-end flex-row"
className="bg-gray-800 w-full flex-0 flex items-end flex-row z-10"
style={{
height: `calc(env(safe-area-inset-bottom, 0px) + 64px)`
height: `calc(env(safe-area-inset-bottom, 0px) + 64px)`,
}}
>
<div className="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8 flex-1">
<div className="relative flex items-center justify-between h-16">
<div
className="absolute inset-y-0 left-0 flex items-center sm:hidden"
onClick={() => setShowMobileMenu(!showMobileMenu)}
onClick={onShowMenu}
>
{/* Mobile menu button*/}
<button
@@ -204,43 +202,8 @@ const Nav = ({ page }) => {
</div>
</div>
</div>
{/*
Mobile menu, toggle classes based on menu state.
Menu open: "block", Menu closed: "hidden"
*/}
<div className={`${showMobileMenu ? '' : 'hidden sm:hidden'}`}>
<div className="px-2 pt-2 pb-3 space-y-1">
{/* Current: "bg-gray-900 text-white", Default: "text-gray-300 hover:bg-gray-700 hover:text-white" */}
<a
href="#"
className="bg-gray-900 text-white block px-3 py-2 rounded-md text-base font-medium"
>
Dashboard
</a>
<a
href="#"
className="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium"
>
Team
</a>
<a
href="#"
className="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium"
>
Projects
</a>
<a
href="#"
className="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium"
>
Calendar
</a>
</div>
</div>
</nav>
);
}
};
export default Nav;
export default Nav;