fdd2629795
* use esbuild for React instead of tsdx * remove tsdx from Vue * use consistent names * add jest and prettier * update scripts * ignore some folders for prettier * run lint script instead of tsdx lint * run prettier en-masse This has a few changes because of the new prettier version. * bump typescript to latest version * make typescript happy * cleanup playground package.json * make esbuild a dev dependency * make scripts consistent * fix husky hooks * add dedicated watch script * add `yarn playground-react` and `yarn react-playground` (alias) This will make sure to run a watcher for the actual @headlessui/react package, and start a development server in the playground-react package. * ignore formatting in the .next folder * run prettier on playground-react package * setup playground-vue Still not 100% working, but getting there! * add playground aliases in @headlessui/vue and @headlessui/react This allows you to run `yarn react playground` or `yarn vue playground` from the root. * add `clean` script * move examples folder in playground-vue to root * ensure new lines for consistency in scripts * fix typescript issue * fix typescript issues in playgrounds * make sure to run prettier on everything it can * run prettier on all files * improve error output If you minify the code, then it could happen that the errors are a bit obscure. This will hardcode the component name to improve errors. * add the `prettier-plugin-tailwindcss` plugin, party! * update changelog
73 lines
2.9 KiB
TypeScript
73 lines
2.9 KiB
TypeScript
import React from 'react'
|
|
import { Menu } from '@headlessui/react'
|
|
|
|
import { classNames } from '../../utils/class-names'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex h-full w-screen justify-center bg-gray-50 p-12">
|
|
<div className="relative inline-block text-left">
|
|
<Menu>
|
|
<span className="rounded-md shadow-sm">
|
|
<Menu.Button className="focus:shadow-outline-blue inline-flex w-full justify-center rounded-md border border-gray-300 bg-white px-4 py-2 text-sm font-medium leading-5 text-gray-700 transition duration-150 ease-in-out hover:text-gray-500 focus:border-blue-300 focus:outline-none active:bg-gray-50 active:text-gray-800">
|
|
<span>Options</span>
|
|
<svg
|
|
className="ml-2 -mr-1 h-5 w-5 transition-transform duration-150"
|
|
viewBox="0 0 20 20"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
</Menu.Button>
|
|
</span>
|
|
|
|
<Menu.Items className="absolute right-0 mt-2 w-56 origin-top-right divide-y divide-gray-100 rounded-md border border-gray-200 bg-white shadow-lg outline-none">
|
|
<div className="px-4 py-3">
|
|
<p className="text-sm leading-5">Signed in as</p>
|
|
<p className="truncate text-sm font-medium leading-5 text-gray-900">
|
|
tom@example.com
|
|
</p>
|
|
</div>
|
|
|
|
<div className="py-1">
|
|
<CustomMenuItem href="#account-settings">Account settings</CustomMenuItem>
|
|
<CustomMenuItem href="#support">Support</CustomMenuItem>
|
|
<CustomMenuItem disabled href="#new-feature">
|
|
New feature (soon)
|
|
</CustomMenuItem>
|
|
<CustomMenuItem href="#license">License</CustomMenuItem>
|
|
</div>
|
|
<div className="py-1">
|
|
<CustomMenuItem href="#sign-out">Sign out</CustomMenuItem>
|
|
</div>
|
|
</Menu.Items>
|
|
</Menu>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function CustomMenuItem(props: React.ComponentProps<typeof Menu.Item>) {
|
|
return (
|
|
<Menu.Item {...props}>
|
|
{({ active, disabled }) => (
|
|
<a
|
|
href={props.href}
|
|
className={classNames(
|
|
'flex w-full justify-between px-4 py-2 text-left text-sm leading-5',
|
|
active ? 'bg-indigo-500 text-white' : 'text-gray-700',
|
|
disabled && 'cursor-not-allowed opacity-50'
|
|
)}
|
|
>
|
|
<span className={classNames(active && 'font-bold')}>{props.children}</span>
|
|
<kbd className={classNames('font-sans', active && 'text-indigo-50')}>⌘K</kbd>
|
|
</a>
|
|
)}
|
|
</Menu.Item>
|
|
)
|
|
}
|