d7f025157b
As per title --------- Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
105 lines
2.8 KiB
TypeScript
105 lines
2.8 KiB
TypeScript
import styled from '@emotion/styled';
|
|
import { Draggable } from '@hello-pangea/dnd';
|
|
import { useLingui } from '@lingui/react/macro';
|
|
import { type ReactNode, useState } from 'react';
|
|
import { type IconComponent } from 'twenty-ui/display';
|
|
|
|
import { CommandMenuItem } from '@/command-menu/components/CommandMenuItem';
|
|
import { AddToNavigationDragHandle } from '@/navigation-menu-item/components/AddToNavigationDragHandle';
|
|
import { addToNavPayloadRegistryStateV2 } from '@/navigation-menu-item/states/addToNavPayloadRegistryStateV2';
|
|
import { useSetRecoilStateV2 } from '@/ui/utilities/state/jotai/hooks/useSetRecoilStateV2';
|
|
import type { AddToNavigationDragPayload } from '@/navigation-menu-item/types/add-to-navigation-drag-payload';
|
|
|
|
type CommandMenuItemWithAddToNavigationDragProps = {
|
|
icon?: IconComponent;
|
|
customIconContent?: ReactNode;
|
|
label: string;
|
|
description?: string;
|
|
id: string;
|
|
onClick: () => void;
|
|
payload: AddToNavigationDragPayload;
|
|
dragIndex?: number;
|
|
};
|
|
|
|
const StyledDraggableMenuItem = styled.div`
|
|
cursor: grab;
|
|
width: 100%;
|
|
|
|
&:active {
|
|
cursor: grabbing;
|
|
}
|
|
`;
|
|
|
|
export const CommandMenuItemWithAddToNavigationDrag = ({
|
|
icon,
|
|
customIconContent,
|
|
label,
|
|
description,
|
|
id,
|
|
onClick,
|
|
payload,
|
|
dragIndex,
|
|
}: CommandMenuItemWithAddToNavigationDragProps) => {
|
|
const { t } = useLingui();
|
|
const setRegistry = useSetRecoilStateV2(addToNavPayloadRegistryStateV2);
|
|
const [isHovered, setIsHovered] = useState(false);
|
|
|
|
const contextualDescription = isHovered
|
|
? t`Drag to add to navbar`
|
|
: description;
|
|
|
|
const DragHandleIcon = () => (
|
|
<AddToNavigationDragHandle
|
|
icon={icon}
|
|
customIconContent={customIconContent}
|
|
payload={payload}
|
|
isHovered={isHovered}
|
|
/>
|
|
);
|
|
|
|
const registerPayload = () => {
|
|
if (dragIndex !== undefined) {
|
|
setRegistry((prev) => new Map(prev).set(id, payload));
|
|
}
|
|
};
|
|
|
|
const menuItemContent = (
|
|
<StyledDraggableMenuItem
|
|
onMouseEnter={() => {
|
|
setIsHovered(true);
|
|
registerPayload();
|
|
}}
|
|
onMouseLeave={() => setIsHovered(false)}
|
|
onMouseDown={registerPayload}
|
|
>
|
|
<CommandMenuItem
|
|
Icon={DragHandleIcon}
|
|
label={label}
|
|
description={contextualDescription}
|
|
id={id}
|
|
onClick={onClick}
|
|
/>
|
|
</StyledDraggableMenuItem>
|
|
);
|
|
|
|
if (dragIndex !== undefined) {
|
|
return (
|
|
<Draggable draggableId={id} index={dragIndex} isDragDisabled={false}>
|
|
{(provided) => (
|
|
<div
|
|
ref={provided.innerRef}
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
{...provided.draggableProps}
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
{...provided.dragHandleProps}
|
|
>
|
|
{menuItemContent}
|
|
</div>
|
|
)}
|
|
</Draggable>
|
|
);
|
|
}
|
|
|
|
return menuItemContent;
|
|
};
|