mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-30 12:32:32 -05:00
f469d8e5e3
[web] BS5 downshift in account settings page GitOrigin-RevId: acfbde3ec87ae8038e0b19ddaca35e6c7392743b
70 lines
1.9 KiB
TypeScript
70 lines
1.9 KiB
TypeScript
import React, { forwardRef } from 'react'
|
|
import {
|
|
Dropdown as BS5Dropdown,
|
|
DropdownToggle as BS5DropdownToggle,
|
|
DropdownMenu as BS5DropdownMenu,
|
|
DropdownItem as BS5DropdownItem,
|
|
DropdownDivider as BS5DropdownDivider,
|
|
} from 'react-bootstrap-5'
|
|
import type {
|
|
DropdownProps,
|
|
DropdownItemProps,
|
|
DropdownToggleProps,
|
|
DropdownMenuProps,
|
|
} from '@/features/ui/components/types/dropdown-menu-props'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
export function Dropdown({ ...props }: DropdownProps) {
|
|
return <BS5Dropdown {...props} />
|
|
}
|
|
|
|
export const DropdownItem = forwardRef<
|
|
typeof BS5DropdownItem,
|
|
DropdownItemProps
|
|
>(
|
|
(
|
|
{ active, children, description, leadingIcon, trailingIcon, ...props },
|
|
ref
|
|
) => {
|
|
const trailingIconType = active ? 'check' : trailingIcon
|
|
return (
|
|
<BS5DropdownItem
|
|
active={active}
|
|
className={description ? 'dropdown-item-description-container' : ''}
|
|
role="menuitem"
|
|
{...props}
|
|
ref={ref}
|
|
>
|
|
{leadingIcon && (
|
|
<MaterialIcon
|
|
className="dropdown-item-leading-icon"
|
|
type={leadingIcon}
|
|
/>
|
|
)}
|
|
{children}
|
|
{trailingIconType && (
|
|
<MaterialIcon
|
|
className="dropdown-item-trailing-icon"
|
|
type={trailingIconType}
|
|
/>
|
|
)}
|
|
{description && (
|
|
<span className="dropdown-item-description">{description}</span>
|
|
)}
|
|
</BS5DropdownItem>
|
|
)
|
|
}
|
|
)
|
|
DropdownItem.displayName = 'DropdownItem'
|
|
|
|
export function DropdownToggle({ ...props }: DropdownToggleProps) {
|
|
return <BS5DropdownToggle {...props} />
|
|
}
|
|
|
|
export function DropdownMenu({ as = 'ul', ...props }: DropdownMenuProps) {
|
|
return <BS5DropdownMenu as={as} role="menubar" {...props} />
|
|
}
|
|
|
|
export function DropdownDivider() {
|
|
return <BS5DropdownDivider aria-hidden="true" />
|
|
}
|