ef00732685
- Made the use of `const` and `let` consistent - import required functions and types from 'react' instead of using the `React.` namespace. - Added `Expand` type, which can expand complex types to their "final" result. - Ensured that we use `as const` for DEFAULT_XXX_TAG where we used a string. So that we have the type of `div` instead of `string` for example. - Used `interface` over `type` where possible. I'm personally more of a `type` fan. But the TypeScript recommends `interfaces` where possible because they are faster, yield better error messages and so on.
61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
import React, { useState, ReactNode } from 'react'
|
|
import { Transition } from '@headlessui/react'
|
|
|
|
export default function Home() {
|
|
let [isOpen, setIsOpen] = useState(true)
|
|
|
|
return (
|
|
<>
|
|
<div className="flex justify-center w-screen h-full p-12 bg-gray-50">
|
|
<div className="space-y-2 w-96">
|
|
<span className="inline-flex rounded-md shadow-sm">
|
|
<button
|
|
type="button"
|
|
onClick={() => setIsOpen(v => !v)}
|
|
className="inline-flex items-center px-3 py-2 text-sm font-medium leading-4 text-gray-700 transition bg-white border border-gray-300 rounded-md duration-150-out hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:text-gray-800 active:bg-gray-50"
|
|
>
|
|
{isOpen ? 'Hide' : 'Show'}
|
|
</button>
|
|
</span>
|
|
|
|
<Transition show={isOpen} unmount={false}>
|
|
<Box>
|
|
<Box>
|
|
<Box>
|
|
<Box />
|
|
</Box>
|
|
<Box>
|
|
<Box>
|
|
<Box>
|
|
<Box />
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
</Transition>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
function Box({ children }: { children?: ReactNode }) {
|
|
return (
|
|
<Transition.Child
|
|
unmount={false}
|
|
enter="transition translate duration-300"
|
|
enterFrom="transform -translate-x-full"
|
|
enterTo="transform translate-x-0"
|
|
leave="transition translate duration-300"
|
|
leaveFrom="transform translate-x-0"
|
|
leaveTo="transform translate-x-full"
|
|
>
|
|
<div className="p-4 space-y-2 text-sm font-semibold tracking-wide text-gray-700 uppercase bg-white rounded-md shadow">
|
|
<span>This is a box</span>
|
|
{children}
|
|
</div>
|
|
</Transition.Child>
|
|
)
|
|
}
|