UNPKG

@blueprintjs/table

Version:

Scalable interactive table component

115 lines 6.27 kB
"use strict"; /* * Copyright 2022 Palantir Technologies, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ColumnHeaderCell = void 0; const tslib_1 = require("tslib"); const classnames_1 = tslib_1.__importDefault(require("classnames")); const React = tslib_1.__importStar(require("react")); const core_1 = require("@blueprintjs/core"); const Classes = tslib_1.__importStar(require("../common/classes")); const loadableContent_1 = require("../common/loadableContent"); const utils_1 = require("../common/utils"); const headerCell_1 = require("./headerCell"); const horizontalCellDivider_1 = require("./horizontalCellDivider"); /** * Column header cell component. * * @see https://blueprintjs.com/docs/#table/api.columnheadercell */ class ColumnHeaderCell extends core_1.AbstractPureComponent { constructor() { super(...arguments); this.state = { isActive: false, }; this.handlePopoverOpened = () => this.setState({ isActive: true }); this.handlePopoverClosing = () => this.setState({ isActive: false }); } /** * This method determines if a `MouseEvent` was triggered on a target that * should be used as the header click/drag target. This enables users of * this component to render fully interactive components in their header * cells without worry of selection or resize operations from capturing * their mouse events. */ static isHeaderMouseTarget(target) { return (target.classList.contains(Classes.TABLE_HEADER) || target.classList.contains(Classes.TABLE_COLUMN_NAME) || target.classList.contains(Classes.TABLE_INTERACTION_BAR) || target.classList.contains(Classes.TABLE_HEADER_CONTENT)); } render() { const { enableColumnInteractionBar, enableColumnReordering, isColumnSelected, menuIcon, name, nameRenderer, ...spreadableProps } = this.props; const classes = (0, classnames_1.default)(spreadableProps.className, Classes.TABLE_COLUMN_HEADER_CELL, { [Classes.TABLE_HAS_INTERACTION_BAR]: enableColumnInteractionBar, [Classes.TABLE_HAS_REORDER_HANDLE]: this.props.reorderHandle != null, }); return (React.createElement(headerCell_1.HeaderCell, { isReorderable: enableColumnReordering, isSelected: isColumnSelected, ...spreadableProps, className: classes }, this.renderName(), this.maybeRenderContent(), this.props.loading ? undefined : this.props.resizeHandle)); } renderName() { var _a; const { enableColumnInteractionBar, index, loading, name, nameRenderer, reorderHandle } = this.props; const dropdownMenu = this.maybeRenderDropdownMenu(); const defaultName = React.createElement("div", { className: Classes.TABLE_TRUNCATED_TEXT }, name); const nameComponent = (React.createElement(loadableContent_1.LoadableContent, { loading: loading !== null && loading !== void 0 ? loading : false, variableLength: true }, (_a = nameRenderer === null || nameRenderer === void 0 ? void 0 : nameRenderer(name, index)) !== null && _a !== void 0 ? _a : defaultName)); if (enableColumnInteractionBar) { return (React.createElement("div", { className: Classes.TABLE_COLUMN_NAME, title: name }, React.createElement("div", { className: Classes.TABLE_INTERACTION_BAR }, reorderHandle, dropdownMenu), React.createElement(horizontalCellDivider_1.HorizontalCellDivider, null), React.createElement("div", { className: Classes.TABLE_COLUMN_NAME_TEXT }, nameComponent))); } else { return (React.createElement("div", { className: Classes.TABLE_COLUMN_NAME, title: name }, reorderHandle, dropdownMenu, React.createElement("div", { className: Classes.TABLE_COLUMN_NAME_TEXT }, nameComponent))); } } maybeRenderContent() { if (this.props.children === null) { return undefined; } return React.createElement("div", { className: Classes.TABLE_HEADER_CONTENT }, this.props.children); } maybeRenderDropdownMenu() { const { index, menuIcon, menuPopoverProps, menuRenderer, selectCellsOnMenuClick } = this.props; if (!core_1.Utils.isFunction(menuRenderer)) { return undefined; } const classes = (0, classnames_1.default)(Classes.TABLE_TH_MENU_CONTAINER, utils_1.CLASSNAME_EXCLUDED_FROM_TEXT_MEASUREMENT, { [Classes.TABLE_TH_MENU_OPEN]: this.state.isActive, [Classes.TABLE_TH_MENU_SELECT_CELLS]: selectCellsOnMenuClick, }); return (React.createElement("div", { className: classes }, React.createElement("div", { className: Classes.TABLE_TH_MENU_CONTAINER_BACKGROUND }), React.createElement(core_1.Popover, { className: (0, classnames_1.default)(Classes.TABLE_TH_MENU, menuPopoverProps === null || menuPopoverProps === void 0 ? void 0 : menuPopoverProps.className), content: menuRenderer(index), onClosing: this.handlePopoverClosing, onOpened: this.handlePopoverOpened, placement: "bottom", rootBoundary: "document", ...menuPopoverProps }, React.createElement(core_1.Icon, { icon: menuIcon })))); } } exports.ColumnHeaderCell = ColumnHeaderCell; ColumnHeaderCell.displayName = `${core_1.DISPLAYNAME_PREFIX}.ColumnHeaderCell`; ColumnHeaderCell.defaultProps = { enableColumnInteractionBar: false, isActive: false, menuIcon: "chevron-down", selectCellsOnMenuClick: true, }; //# sourceMappingURL=columnHeaderCell.js.map