Instantly share code, notes, and snippets.
Created
May 11, 2020 02:54
-
Star
1
(1)
You must be signed in to star a gist -
Fork
1
(1)
You must be signed in to fork a gist
-
Save dhazeley/03c48b3c6b8a8968f4b2f81a708551dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { FC, useState } from 'react'; | |
import Transition from '../../utils/transition'; | |
const Test: FC<{}> = () => { | |
const [open, setOpen] = useState(true); | |
const handleOpen = (): void => { | |
setOpen(true); | |
}; | |
const handleClose = (): void => { | |
setOpen(false); | |
}; | |
return ( | |
<div className="h-screen flex overflow-hidden bg-gray-100"> | |
{/* <!-- Off-canvas menu for mobile --> */} | |
<div className={`${open ? 'md:hidden' : 'hidden'}`}> | |
<div className="fixed inset-0 flex z-40"> | |
<Transition | |
show={open} | |
enter="transition-opacity ease-linear duration-300" | |
enterFrom="opacity-0" | |
enterTo="opacity-100" | |
leave="transition-opacity ease-linear duration-300" | |
leaveFrom="opacity-100" | |
leaveTo="opacity-0" | |
> | |
<div className="fixed inset-0"> | |
<div className="absolute inset-0 bg-gray-600 opacity-75"></div> | |
</div> | |
</Transition> | |
<Transition | |
show={open} | |
enter="transition ease-in-out duration-300 transform" | |
enterFrom="-translate-x-full" | |
enterTo="translate-x-0" | |
leave="transition ease-in-out duration-300 transform" | |
leaveFrom="translate-x-0" | |
leaveTo="-translate-x-full" | |
> | |
<div | |
className={ | |
'relative flex-1 flex flex-col max-w-xs w-full pt-5 pb-4 bg-white' | |
} | |
> | |
<div className="absolute top-0 right-0 -mr-14 p-1"> | |
<button | |
className="flex items-center justify-center h-12 w-12 rounded-full focus:outline-none focus:bg-gray-600" | |
aria-label="Close sidebar" | |
onClick={handleClose} | |
> | |
<svg | |
className="h-6 w-6 text-white" | |
stroke="currentColor" | |
fill="none" | |
viewBox="0 0 24 24" | |
> | |
<path | |
strokeLinecap="round" | |
strokeLinejoin="round" | |
strokeWidth="2" | |
d="M6 18L18 6M6 6l12 12" | |
/> | |
</svg> | |
</button> | |
</div> | |
<div className="flex-shrink-0 flex items-center px-4"> | |
<img | |
className="h-8 w-auto" | |
src="/img/logo-black.png" | |
alt="Workflow" | |
/> | |
</div> | |
<div className="mt-5 flex-1 h-0 overflow-y-auto"> | |
<nav className="px-2"> | |
<a | |
href="#" | |
className="group flex items-center px-2 py-2 text-base leading-6 font-medium text-gray-900 rounded-md bg-gray-100 focus:outline-none focus:bg-gray-200 transition ease-in-out duration-150" | |
> | |
<svg | |
className="mr-4 h-6 w-6 text-gray-500 group-hover:text-gray-500 group-focus:text-gray-600 transition ease-in-out duration-150" | |
stroke="currentColor" | |
fill="none" | |
viewBox="0 0 24 24" | |
> | |
<path | |
strokeLinecap="round" | |
strokeLinejoin="round" | |
strokeWidth="2" | |
d="M3 12l9-9 9 9M5 10v10a1 1 0 001 1h3a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1h3a1 1 0 001-1V10M9 21h6" | |
/> | |
</svg> | |
Dashboard | |
</a> | |
<a | |
href="#" | |
className="mt-1 group flex items-center px-2 py-2 text-base leading-6 font-medium text-gray-600 rounded-md hover:text-gray-900 hover:bg-gray-50 focus:outline-none focus:text-gray-900 focus:bg-gray-100 transition ease-in-out duration-150" | |
> | |
<svg | |
className="mr-4 h-6 w-6 text-gray-400 group-hover:text-gray-500 group-focus:text-gray-500 transition ease-in-out duration-150" | |
stroke="currentColor" | |
fill="none" | |
viewBox="0 0 24 24" | |
> | |
<path | |
strokeLinecap="round" | |
strokeLinejoin="round" | |
strokeWidth="2" | |
d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" | |
/> | |
</svg> | |
Publications | |
</a> | |
</nav> | |
</div> | |
</div> | |
</Transition> | |
<div className="flex-shrink-0 w-14"> | |
{/* Dummy element to force sidebar to shrink to fit close icon */} | |
</div> | |
</div> | |
</div> | |
{/* <!-- Desktop Sidebar --> */} | |
<div className="hidden md:flex md:flex-shrink-0"> | |
<div className="flex flex-col w-64 border-r border-gray-200 pt-5 pb-4 bg-white"> | |
<div className="flex items-center flex-shrink-0 px-4"> | |
<img | |
className="h-8 w-auto" | |
src="/img/logo-black.png" | |
alt="Workflow" | |
/> | |
</div> | |
<div className="mt-5 h-0 flex-1 flex flex-col overflow-y-auto"> | |
<nav className="flex-1 px-2 bg-white"> | |
<a | |
href="#" | |
className="group flex items-center px-2 py-2 text-sm leading-5 font-medium text-gray-900 rounded-md bg-gray-100 hover:text-gray-900 hover:bg-gray-100 focus:outline-none focus:bg-gray-200 transition ease-in-out duration-150" | |
> | |
<svg | |
className="mr-3 h-6 w-6 text-gray-500 group-hover:text-gray-500 group-focus:text-gray-600 transition ease-in-out duration-150" | |
stroke="currentColor" | |
fill="none" | |
viewBox="0 0 24 24" | |
> | |
<path | |
strokeLinecap="round" | |
strokeLinejoin="round" | |
strokeWidth="2" | |
d="M3 12l9-9 9 9M5 10v10a1 1 0 001 1h3a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1h3a1 1 0 001-1V10M9 21h6" | |
/> | |
</svg> | |
Dashboard | |
</a> | |
<a | |
href="#" | |
className="mt-1 group flex items-center px-2 py-2 text-sm leading-5 font-medium text-gray-600 rounded-md hover:text-gray-900 hover:bg-gray-50 focus:outline-none focus:bg-gray-100 transition ease-in-out duration-150" | |
> | |
<svg | |
className="mr-3 h-6 w-6 text-gray-400 group-hover:text-gray-500 group-focus:text-gray-500 transition ease-in-out duration-150" | |
stroke="currentColor" | |
fill="none" | |
viewBox="0 0 24 24" | |
> | |
<path | |
strokeLinecap="round" | |
strokeLinejoin="round" | |
strokeWidth="2" | |
d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" | |
/> | |
</svg> | |
Publications | |
</a> | |
</nav> | |
</div> | |
</div> | |
</div> | |
<div className="flex flex-col w-0 flex-1 overflow-hidden"> | |
<div className="relative z-10 flex-shrink-0 flex h-16 bg-white shadow"> | |
<button | |
className="px-4 border-r border-gray-200 text-gray-500 focus:outline-none focus:bg-gray-100 focus:text-gray-600 md:hidden" | |
aria-label="Open sidebar" | |
onClick={handleOpen} | |
> | |
<svg | |
className="h-6 w-6" | |
stroke="currentColor" | |
fill="none" | |
viewBox="0 0 24 24" | |
> | |
<path | |
strokeLinecap="round" | |
strokeLinejoin="round" | |
strokeWidth="2" | |
d="M4 6h16M4 12h16M4 18h7" | |
/> | |
</svg> | |
</button> | |
<div className="flex-1 px-4 flex justify-between"> | |
<div className="flex-1 flex"> | |
<div className="w-full flex md:ml-0"> | |
<label htmlFor="search_field" className="sr-only"> | |
Search | |
</label> | |
<div className="relative w-full text-gray-400 focus-within:text-gray-600"> | |
<div className="absolute inset-y-0 left-0 flex items-center pointer-events-none"> | |
<svg | |
className="h-5 w-5" | |
fill="currentColor" | |
viewBox="0 0 20 20" | |
> | |
<path | |
fillRule="evenodd" | |
clipRule="evenodd" | |
d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z" | |
/> | |
</svg> | |
</div> | |
<input | |
id="search_field" | |
className="block w-full h-full pl-8 pr-3 py-2 rounded-md text-gray-900 placeholder-gray-500 focus:outline-none focus:placeholder-gray-400 sm:text-sm" | |
placeholder="Search" | |
type="search" | |
/> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<main | |
className="flex-1 relative z-0 overflow-y-auto py-6 focus:outline-none" | |
tabIndex={0} | |
> | |
<div className="max-w-7xl mx-auto px-4 sm:px-6 md:px-8"> | |
<h1 className="text-2xl font-semibold text-gray-900">Dashboard</h1> | |
</div> | |
<div className="max-w-7xl mx-auto px-4 sm:px-6 md:px-8"> | |
{/* <!-- Replace with your content --> */} | |
<div className="py-4"> | |
<div className="border-4 border-dashed border-gray-200 rounded-lg h-96"></div> | |
</div> | |
{/* <!-- /End replace --> */} | |
</div> | |
</main> | |
</div> | |
</div> | |
); | |
}; | |
export default Test; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment