@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
74 lines (71 loc) • 1.82 kB
JavaScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import React from 'react';
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
import { css, jsx } from '@emotion/react';
import ButtonGroup from '@atlaskit/button/button-group';
import { FloatingToolbarButton as Button } from '../ui';
/**
* Applying `pointer-events: none;` when disabled allows the Tooltip to be displayed
*/
const buttonStyle = css({
pointerEvents: 'auto'
});
const buttonStyleNoneEvent = css({
pointerEvents: 'none'
});
const DisallowedWrapper = ({
disabled,
...props
}) => {
// Ignored via go/ees005
// eslint-disable-next-line react/jsx-props-no-spreading
return jsx("div", props);
};
/**
* The button requires `pointer-events: none;` in order to fix the tooltip, hence
* leaving us without a disabled cursor, the following fixes this:
*/
const defaultWrapperStyle = css({
cursor: 'pointer'
});
const disallowedWrapperStyle = css({
cursor: 'not-allowed'
});
export const LinkToolbarButtonGroup = ({
options
}) => {
return jsx(ButtonGroup, null, options.map(({
onClick,
selected,
disabled,
testId,
tooltipContent,
title,
icon,
iconFallback
}) => {
const ButtonIcon = icon;
return jsx(DisallowedWrapper, {
css: disabled ? disallowedWrapperStyle : defaultWrapperStyle,
key: testId,
disabled: disabled
}, jsx(Button, {
css: disabled ? buttonStyleNoneEvent : buttonStyle,
title: title,
icon: jsx(ButtonIcon, {
label: title,
spacing: "spacious",
LEGACY_size: "medium",
LEGACY_fallbackIcon: iconFallback
}),
selected: selected,
onClick: onClick,
testId: testId,
disabled: disabled,
tooltipContent: tooltipContent
}));
}));
};