@elastic/eui
Version:
Elastic UI Component Library
67 lines (66 loc) • 3.4 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["children", "className", "hasSelection", "isSelected", "isSelectable", "hasActions", "isExpandedRow", "isExpandable", "onClick"];
/*
* 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, { useContext } from 'react';
import classNames from 'classnames';
import { keys, useEuiMemoizedStyles } from '../../services';
import { useEuiTableIsResponsive } from './mobile/responsive_context';
import { EuiTableVariantContext } from './table_context';
import { euiTableRowStyles } from './table_row.styles';
import { jsx as ___EmotionJSX } from "@emotion/react";
export var EuiTableRow = function EuiTableRow(_ref) {
var children = _ref.children,
className = _ref.className,
hasSelection = _ref.hasSelection,
isSelected = _ref.isSelected,
isSelectable = _ref.isSelectable,
hasActions = _ref.hasActions,
isExpandedRow = _ref.isExpandedRow,
isExpandable = _ref.isExpandable,
onClick = _ref.onClick,
rest = _objectWithoutProperties(_ref, _excluded);
var isResponsive = useEuiTableIsResponsive();
var _useContext = useContext(EuiTableVariantContext),
hasBackground = _useContext.hasBackground;
var styles = useEuiMemoizedStyles(euiTableRowStyles);
var cssStyles = isResponsive ? [styles.euiTableRow, styles.mobile.mobile, !hasBackground && styles.mobile.hasBorder, hasBackground && styles.mobile.hasBackground, isSelected && styles.mobile.selected, isExpandedRow && styles.mobile.expanded, (hasActions === true || isExpandable || isExpandedRow) && styles.mobile.hasRightColumn, hasSelection && styles.mobile.hasLeftColumn] : [styles.euiTableRow, styles.desktop.desktop, onClick && styles.desktop.clickable, isSelected && styles.desktop.selected, isExpandedRow && styles.desktop.expanded.expanded, isExpandedRow && hasBackground && styles.desktop.expanded.hasBackground, isExpandedRow && hasSelection && styles.desktop.checkboxOffset];
var classes = classNames('euiTableRow', className, {
'euiTableRow-isSelectable': isSelectable,
'euiTableRow-isSelected': isSelected,
'euiTableRow-hasActions': hasActions,
'euiTableRow-isExpandedRow': isExpandedRow,
'euiTableRow-isExpandable': isExpandable,
'euiTableRow-isClickable': onClick
});
if (!onClick) {
return ___EmotionJSX("tr", _extends({
css: cssStyles,
className: classes
}, rest), children);
}
var onKeyDown = function onKeyDown(event) {
// Prevent a scroll from occurring if the user has hit space.
if (event.key === keys.SPACE) event.preventDefault();
};
var onKeyUp = function onKeyUp(event) {
// Support keyboard accessibility by emulating mouse click on ENTER or SPACE keypress.
if (event.key === keys.ENTER || event.key === keys.SPACE) {
onClick(event);
}
};
return ___EmotionJSX("tr", _extends({
css: cssStyles,
className: classes,
onClick: onClick,
onKeyDown: onKeyDown,
onKeyUp: onKeyUp,
tabIndex: 0
}, rest), children);
};