import { IconArchive, IconDotsVertical, IconEye, IconPencil, IconTextSize, } from '@/ui/display/icon'; import { LightIconButton } from '@/ui/input/button/components/LightIconButton'; import { Dropdown } from '@/ui/layout/dropdown/components/Dropdown'; import { DropdownMenu } from '@/ui/layout/dropdown/components/DropdownMenu'; import { DropdownMenuItemsContainer } from '@/ui/layout/dropdown/components/DropdownMenuItemsContainer'; import { useDropdown } from '@/ui/layout/dropdown/hooks/useDropdown'; import { MenuItem } from '@/ui/navigation/menu-item/components/MenuItem'; type SettingsObjectFieldActiveActionDropdownProps = { isCustomField?: boolean; onDeactivate?: () => void; onEdit: () => void; onSetAsLabelIdentifier?: () => void; scopeKey: string; }; export const SettingsObjectFieldActiveActionDropdown = ({ isCustomField, onDeactivate, onEdit, onSetAsLabelIdentifier, scopeKey, }: SettingsObjectFieldActiveActionDropdownProps) => { const dropdownId = `${scopeKey}-settings-field-active-action-dropdown`; const { closeDropdown } = useDropdown(dropdownId); const handleEdit = () => { onEdit(); closeDropdown(); }; const handleDeactivate = () => { onDeactivate?.(); closeDropdown(); }; const handleSetAsLabelIdentifier = () => { onSetAsLabelIdentifier?.(); closeDropdown(); }; return ( } dropdownComponents={ {!!onSetAsLabelIdentifier && ( )} {!!onDeactivate && ( )} } dropdownHotkeyScope={{ scope: dropdownId, }} /> ); };