* 2495-fix(front): cmdk removed; custom styles added * 2495-fix(front): search issue fixed * 2495-feat(front): Menu toggle funct added * 2495-fix(front): onclick handler added * 2495-fix(front): Focus with ArrowKeys added; cmdk removed * Remove cmdk * Introduce Selectable list * Improve api * Improve api * Complete refactoring * Fix ui regressions --------- Co-authored-by: Charles Bochet <charles@twenty.com>
62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
import { useNavigate } from 'react-router-dom';
|
|
|
|
import { IconArrowUpRight } from '@/ui/display/icon';
|
|
import { IconComponent } from '@/ui/display/icon/types/IconComponent';
|
|
import { useSelectableList } from '@/ui/layout/selectable-list/hooks/useSelectableList';
|
|
import { MenuItemCommand } from '@/ui/navigation/menu-item/components/MenuItemCommand';
|
|
|
|
import { useCommandMenu } from '../hooks/useCommandMenu';
|
|
|
|
export type CommandMenuItemProps = {
|
|
label: string;
|
|
to?: string;
|
|
id: string;
|
|
onClick?: () => void;
|
|
Icon?: IconComponent;
|
|
firstHotKey?: string;
|
|
secondHotKey?: string;
|
|
};
|
|
|
|
export const CommandMenuItem = ({
|
|
label,
|
|
to,
|
|
id,
|
|
onClick,
|
|
Icon,
|
|
firstHotKey,
|
|
secondHotKey,
|
|
}: CommandMenuItemProps) => {
|
|
const navigate = useNavigate();
|
|
const { toggleCommandMenu } = useCommandMenu();
|
|
|
|
if (to && !Icon) {
|
|
Icon = IconArrowUpRight;
|
|
}
|
|
|
|
const { isSelectedItemId } = useSelectableList({ itemId: id });
|
|
|
|
const onItemClick = () => {
|
|
toggleCommandMenu();
|
|
|
|
if (onClick) {
|
|
onClick();
|
|
return;
|
|
}
|
|
if (to) {
|
|
navigate(to);
|
|
return;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<MenuItemCommand
|
|
LeftIcon={Icon}
|
|
text={label}
|
|
firstHotKey={firstHotKey}
|
|
secondHotKey={secondHotKey}
|
|
onClick={onItemClick}
|
|
isSelected={isSelectedItemId}
|
|
/>
|
|
);
|
|
};
|