@elastic/eui
Version:
Elastic UI Component Library
55 lines (54 loc) • 2.98 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["hasAlt", "hasShadow", "children", "onClick", "onKeyDown", "isFullScreen", "isFullWidth", "fullScreenIconColor"];
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import React from 'react';
import { useEuiMemoizedStyles } from '../../services';
import { useEuiI18n } from '../i18n';
import { EuiIcon } from '../icon';
import { EuiScreenReaderOnly } from '../accessibility';
import { euiImageButtonStyles, euiImageButtonIconStyles } from './image_button.styles';
import { jsx as ___EmotionJSX } from "@emotion/react";
var fullScreenIconColorMap = {
light: 'ghost',
dark: 'default'
};
export var EuiImageButton = function EuiImageButton(_ref) {
var hasAlt = _ref.hasAlt,
hasShadow = _ref.hasShadow,
children = _ref.children,
onClick = _ref.onClick,
onKeyDown = _ref.onKeyDown,
isFullScreen = _ref.isFullScreen,
isFullWidth = _ref.isFullWidth,
_ref$fullScreenIconCo = _ref.fullScreenIconColor,
fullScreenIconColor = _ref$fullScreenIconCo === void 0 ? 'light' : _ref$fullScreenIconCo,
rest = _objectWithoutProperties(_ref, _excluded);
var buttonStyles = useEuiMemoizedStyles(euiImageButtonStyles);
var cssButtonStyles = [buttonStyles.euiImageButton, hasShadow ? buttonStyles.hasShadowHover : buttonStyles.shadowHover, !isFullScreen && isFullWidth && buttonStyles.fullWidth];
var iconStyles = useEuiMemoizedStyles(euiImageButtonIconStyles);
var cssIconStyles = [iconStyles.euiImageButton__icon, iconStyles.openFullScreen];
var openFullScreenInstructions = useEuiI18n('euiImageButton.openFullScreen', 'Click to open this image in fullscreen mode');
var closeFullScreenInstructions = useEuiI18n('euiImageButton.closeFullScreen', 'Press Escape or click to close image fullscreen mode');
var iconColor = fullScreenIconColorMap[fullScreenIconColor];
return ___EmotionJSX("button", _extends({
type: "button",
css: cssButtonStyles,
onClick: onClick,
onKeyDown: onKeyDown
}, rest), isFullScreen &&
// In fullscreen mode, instructions should come first to allow screen reader
// users to quickly exit vs. potentially reading out long/unskippable alt text
___EmotionJSX(EuiScreenReaderOnly, null, ___EmotionJSX("p", null, closeFullScreenInstructions, hasAlt && ' — ')), children, !isFullScreen && ___EmotionJSX("div", {
css: cssIconStyles
}, ___EmotionJSX(EuiScreenReaderOnly, null, ___EmotionJSX("p", null, hasAlt && ' — ', openFullScreenInstructions)), ___EmotionJSX(EuiIcon, {
type: "fullScreen",
color: iconColor
})));
};