@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
69 lines (66 loc) • 2.12 kB
JavaScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import React from 'react';
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports -- Ignored via go/DSP-18766; jsx required at runtime for @jsxRuntime classic
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
*/
var buttonStyle = css({
pointerEvents: 'auto'
});
var buttonStyleNoneEvent = css({
pointerEvents: 'none'
});
var DisallowedWrapper = function DisallowedWrapper(_ref) {
var disabled = _ref.disabled,
children = _ref.children;
return jsx("div", {
css: disabled ? disallowedWrapperStyle : defaultWrapperStyle
}, children);
};
/**
* The button requires `pointer-events: none;` in order to fix the tooltip, hence
* leaving us without a disabled cursor, the following fixes this:
*/
var defaultWrapperStyle = css({
cursor: 'pointer'
});
var disallowedWrapperStyle = css({
cursor: 'not-allowed'
});
export var LinkToolbarButtonGroup = function LinkToolbarButtonGroup(_ref2) {
var options = _ref2.options;
return jsx(ButtonGroup, null, options.map(function (_ref3) {
var onClick = _ref3.onClick,
selected = _ref3.selected,
disabled = _ref3.disabled,
testId = _ref3.testId,
tooltipContent = _ref3.tooltipContent,
title = _ref3.title,
icon = _ref3.icon,
areAnyNewToolbarFlagsEnabled = _ref3.areAnyNewToolbarFlagsEnabled;
var ButtonIcon = icon;
return jsx(DisallowedWrapper, {
key: testId,
disabled: disabled
}, jsx(Button, {
css: disabled ? buttonStyleNoneEvent : buttonStyle,
title: title,
icon: jsx(ButtonIcon, {
label: title,
spacing: "spacious"
}),
selected: selected,
onClick: onClick,
testId: testId,
disabled: disabled,
tooltipContent: tooltipContent,
areAnyNewToolbarFlagsEnabled: areAnyNewToolbarFlagsEnabled
}));
}));
};