optimizely-oui
Version:
Optimizely's Component Library.
66 lines (52 loc) • 3.15 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import React from "react";
import classNames from "classnames";
import PropTypes from "prop-types";
var TD = function TD(_ref) {
var children = _ref.children,
className = _ref.className,
colSpan = _ref.colSpan,
_ref$isNumerical = _ref.isNumerical,
isNumerical = _ref$isNumerical === void 0 ? false : _ref$isNumerical,
testSection = _ref.testSection,
textAlign = _ref.textAlign,
verticalAlign = _ref.verticalAlign,
width = _ref.width,
props = _objectWithoutProperties(_ref, ["children", "className", "colSpan", "isNumerical", "testSection", "textAlign", "verticalAlign", "width"]);
var classes = classNames(_defineProperty({
"oui-numerical": isNumerical
}, "vertical-align--".concat(verticalAlign), verticalAlign), className);
var styles = {
width: width,
textAlign: textAlign
};
return React.createElement("td", _extends({
className: classes,
"data-test-section": testSection,
style: styles,
colSpan: colSpan
}, props), children);
};
TD.propTypes = {
/** Content within the `Table.TD` component */
children: PropTypes.node,
/** CSS class names. */
className: PropTypes.string,
/** Number of columns that the cell should span */
colSpan: PropTypes.number,
/** Right-align the cell if the contents are numerical */
isNumerical: PropTypes.bool,
/** Hook for automated JavaScript tests */
testSection: PropTypes.string,
/** Text alignment */
textAlign: PropTypes.oneOf(["center", "right", "left"]),
/** Apply a class that vertically aligns the cells within the children */
verticalAlign: PropTypes.oneOf(["top", "middle", "bottom"]),
/** A number with a unit that becomes the width of the `Table` cell */
width: PropTypes.string
};
TD.displayName = "Table.TD";
export default TD;