UNPKG

baseui

Version:

A React Component library implementing the Base design language

88 lines (85 loc) 3.88 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var React = _interopRequireWildcard(require("react")); var _checkbox = require("../checkbox"); var _locale = require("../locale"); var _styles = require("../styles"); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); } function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } /* Copyright (c) Uber Technologies, Inc. This source code is licensed under the MIT license found in the LICENSE file in the root directory of this source tree. */ function Column(options) { return { kind: options.kind, buildFilter: options.buildFilter || (() => () => true), textQueryFilter: options.textQueryFilter, fillWidth: options.fillWidth === undefined ? true : options.fillWidth, filterable: Boolean(options.filterable) && Boolean(options.renderFilter) && Boolean(options.buildFilter), mapDataToValue: options.mapDataToValue, maxWidth: options.maxWidth, minWidth: options.minWidth, // todo(flow->ts) add proper type annotation // eslint-disable-next-line @typescript-eslint/no-explicit-any,react/display-name renderCell: /*#__PURE__*/React.forwardRef((props, ref) => { const locale = React.useContext(_locale.LocaleContext); const [css, theme] = (0, _styles.useStyletron)(); const ProvidedCell = options.renderCell; let cellBlockAlign = 'flex-start'; if (options.cellBlockAlign === 'center') { cellBlockAlign = 'center'; } else if (options.cellBlockAlign === 'end') { cellBlockAlign = 'flex-end'; } return /*#__PURE__*/React.createElement("div", { ref: ref, className: css({ ...theme.typography.font100, boxSizing: 'border-box', color: theme.colors.contentPrimary, // @ts-ignore display: props.isMeasured ? 'inline-block' : null, height: '100%', paddingTop: theme.sizing.scale300, paddingLeft: theme.sizing.scale500, paddingBottom: theme.sizing.scale300, paddingRight: theme.sizing.scale500, // @ts-ignore width: props.isMeasured ? null : '100%' }) }, /*#__PURE__*/React.createElement("div", { className: css({ alignItems: cellBlockAlign, display: 'flex', height: '100%' }) }, Boolean(props.onSelect) && /*#__PURE__*/React.createElement("span", { className: css({ paddingRight: theme.sizing.scale300 }) }, /*#__PURE__*/React.createElement(_checkbox.Checkbox, { "aria-label": locale.datatable.selectRow, onChange: props.onSelect, checked: props.isSelected, overrides: { Checkmark: { style: { marginTop: null, marginBottom: null } } } })), /*#__PURE__*/React.createElement(ProvidedCell, props))); }), renderFilter: options.renderFilter || (() => null), sortable: Boolean(options.sortable) && Boolean(options.sortFn), sortFn: options.sortFn || (() => 0), title: options.title }; } var _default = exports.default = Column;