Files
supabase/apps/docs/components/Options.tsx
Ivan Vasilov 05a542ccea chore: Migrate all feather icons to lucide icons (#29038)
* Add lucide-react to docs (to make the autocomplete work).

* Migrate the docs app icons.

* Migrate the ui-patterns.

* Remove the old icons from ui package.

* Migrate the www app from react-feather icons.

* Migrate all of studio icons.

* Migrate the only component in design-system.

* Fix an old import in ui package. Revert an import in docs app.

* Fix some pages in www.

* Remove unneeded files used in generation of icons.

* Fix a prettier error.

* Fix more issues in www.

* Fix an issue in Log Date picker.

* Replace all string sizes with number sizes because the icons grew in some cases.

* Fix more imports in security page.

* Fix an extra import.

* Remove the size prop from all icons if they're in a button and they match the button size.

* Minor fixes for docs and www.

---------

Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
2024-09-04 19:46:21 +08:00

87 lines
2.4 KiB
TypeScript

import { XCircle } from 'lucide-react'
import { FC, PropsWithChildren, useState } from 'react'
interface IOptions {
name?: string
}
type IOption = any
type OptionsSubComponents = {
Option: IOption
}
const Options: FC<PropsWithChildren<IOptions>> & OptionsSubComponents = (props) => {
const [open, setOpen] = useState(false)
return (
<div className="mt-0">
<button
className={[
'px-5 py-1',
'border-t border-l border-r border-default',
'text-left text-sm text-foreground-light',
'hover:bg-surface-100',
'flex items-center gap-2',
open ? 'w-full rounded-tl-lg rounded-tr-lg' : 'border-b rounded-full',
].join(' ')}
onClick={() => setOpen(!open)}
>
<div>
<div className={[!open ? 'rotate-45' : 'rotate-0'].join(' ')}>
<XCircle size={14} />
</div>
</div>
{`${!open ? `Open` : `Close`} ${props.name ?? 'accepted values'}`}
</button>
<div className={['opacity-0', open ? 'opacity-100 h-auto' : 'invisible h-0'].join(' ')}>
{props.children}
</div>
</div>
)
}
const Option: FC<IOption> = (props) => {
return (
<div
className="
px-5 py-3 first:border-t border-b border-l border-r
border-default
last:rounded-bl-lg last:rounded-br-lg
flex flex-col gap-3
"
>
<div className="flex flex-wrap gap-3 items-center">
<span className="text-sm text-foreground font-mono font-medium">
{props.name ?? 'no-name'}
</span>
{!props.isEnum && (
<>
<span>
{props.isOptional ? (
<div className="text-[10px] px-3 tracking-wide font-mono text-foreground-lighter">
Optional
</div>
) : (
<div className="text-[10px] border border-amber-700 bg-amber-300 text-amber-900 px-2 tracking-wide font-mono py-0.25 rounded-full">
REQUIRED
</div>
)}
</span>
<span className="text-foreground-muted text-xs">{props.type ?? 'no type'}</span>
</>
)}
</div>
{props.description && (
<p className="text-sm text-foreground-lighter m-0">{props.description}</p>
)}
{props.children}
</div>
)
}
Options.Option = Option
export default Options