Files
twenty/packages/twenty-front/src/modules/action-menu/actions/display/components/ActionButton.tsx
Guillim 8512904c0a refacto clickoutside componentv2 (#11644)
Switch to ComponentV2

Friday morning refacto & chill with @charles

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2025-04-18 17:48:30 +02:00

66 lines
1.7 KiB
TypeScript

import { ActionDisplayProps } from '@/action-menu/actions/display/components/ActionDisplay';
import { getActionLabel } from '@/action-menu/utils/getActionLabel';
import styled from '@emotion/styled';
import { isDefined } from 'twenty-shared/utils';
import { AppTooltip, TooltipDelay, TooltipPosition } from 'twenty-ui/display';
import { Button, IconButton } from 'twenty-ui/input';
const StyledWrapper = styled.div`
font-size: ${({ theme }) => theme.font.size.md};
`;
export const ActionButton = ({
action,
onClick,
to,
}: {
action: ActionDisplayProps;
onClick?: (event?: React.MouseEvent<HTMLElement>) => void;
to?: string;
}) => {
const label = getActionLabel(action.label);
const shortLabel = isDefined(action.shortLabel)
? getActionLabel(action.shortLabel)
: undefined;
return (
<>
{action.shortLabel ? (
<Button
Icon={action.Icon}
size="small"
variant="secondary"
accent="default"
to={to}
onClick={onClick}
title={shortLabel}
ariaLabel={label}
/>
) : (
<div id={`action-menu-entry-${action.key}`} key={action.key}>
<IconButton
Icon={action.Icon}
size="small"
variant="secondary"
accent="default"
to={to}
onClick={onClick}
ariaLabel={label}
/>
<StyledWrapper>
<AppTooltip
anchorSelect={`#action-menu-entry-${action.key}`}
content={label}
delay={TooltipDelay.longDelay}
place={TooltipPosition.Bottom}
offset={5}
noArrow
/>
</StyledWrapper>
</div>
)}
</>
);
};