UNPKG

@blueprintjs/core

Version:

Core styles & components

118 lines 6.29 kB
"use strict"; /* * Copyright 2015 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.TreeNode = void 0; var tslib_1 = require("tslib"); var classnames_1 = tslib_1.__importDefault(require("classnames")); var React = tslib_1.__importStar(require("react")); var icons_1 = require("@blueprintjs/icons"); var common_1 = require("../../common"); var collapse_1 = require("../collapse/collapse"); var icon_1 = require("../icon/icon"); /** * Tree node component. * * @see https://blueprintjs.com/docs/#core/components/tree.tree-node */ // eslint-disable-next-line @typescript-eslint/no-empty-object-type var TreeNode = /** @class */ (function (_super) { tslib_1.__extends(TreeNode, _super); function TreeNode() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.handleCaretClick = function (e) { var _a; e.stopPropagation(); var _b = _this.props, isExpanded = _b.isExpanded, onCollapse = _b.onCollapse, onExpand = _b.onExpand; (_a = (isExpanded ? onCollapse : onExpand)) === null || _a === void 0 ? void 0 : _a(_this.props, _this.props.path, e); }; _this.handleClick = function (e) { var _a, _b; (_b = (_a = _this.props).onClick) === null || _b === void 0 ? void 0 : _b.call(_a, _this.props, _this.props.path, e); }; _this.handleContentRef = function (element) { var _a, _b; (_b = (_a = _this.props).contentRef) === null || _b === void 0 ? void 0 : _b.call(_a, _this.props, element); }; _this.handleContextMenu = function (e) { var _a, _b; (_b = (_a = _this.props).onContextMenu) === null || _b === void 0 ? void 0 : _b.call(_a, _this.props, _this.props.path, e); }; _this.handleDoubleClick = function (e) { var _a, _b; (_b = (_a = _this.props).onDoubleClick) === null || _b === void 0 ? void 0 : _b.call(_a, _this.props, _this.props.path, e); }; _this.handleMouseEnter = function (e) { var _a, _b; (_b = (_a = _this.props).onMouseEnter) === null || _b === void 0 ? void 0 : _b.call(_a, _this.props, _this.props.path, e); }; _this.handleMouseLeave = function (e) { var _a, _b; (_b = (_a = _this.props).onMouseLeave) === null || _b === void 0 ? void 0 : _b.call(_a, _this.props, _this.props.path, e); }; return _this; } /** @deprecated no longer necessary now that the TypeScript parser supports type arguments on JSX element tags */ TreeNode.ofType = function () { return TreeNode; }; TreeNode.prototype.render = function () { var _a; var _b = this.props, children = _b.children, className = _b.className, disabled = _b.disabled, icon = _b.icon, isExpanded = _b.isExpanded, isSelected = _b.isSelected, label = _b.label; var classes = (0, classnames_1.default)(common_1.Classes.TREE_NODE, (_a = {}, _a[common_1.Classes.DISABLED] = disabled, _a[common_1.Classes.TREE_NODE_SELECTED] = isSelected, _a[common_1.Classes.TREE_NODE_EXPANDED] = isExpanded, _a), className); var contentClasses = (0, classnames_1.default)(common_1.Classes.TREE_NODE_CONTENT, "".concat(common_1.Classes.TREE_NODE_CONTENT, "-").concat(this.props.depth)); var eventHandlers = disabled === true ? {} : { onClick: this.handleClick, onContextMenu: this.handleContextMenu, onDoubleClick: this.handleDoubleClick, onMouseEnter: this.handleMouseEnter, onMouseLeave: this.handleMouseLeave, }; return (React.createElement("li", { className: classes }, React.createElement("div", tslib_1.__assign({ className: contentClasses, ref: this.handleContentRef }, eventHandlers), this.maybeRenderCaret(), React.createElement(icon_1.Icon, { className: common_1.Classes.TREE_NODE_ICON, icon: icon, "aria-hidden": true, tabIndex: -1 }), React.createElement("span", { className: common_1.Classes.TREE_NODE_LABEL }, label), this.maybeRenderSecondaryLabel()), React.createElement(collapse_1.Collapse, { isOpen: isExpanded }, children))); }; TreeNode.prototype.maybeRenderCaret = function () { var _a = this.props, children = _a.children, isExpanded = _a.isExpanded, disabled = _a.disabled, _b = _a.hasCaret, hasCaret = _b === void 0 ? React.Children.count(children) > 0 : _b; if (hasCaret) { var caretClasses = (0, classnames_1.default)(common_1.Classes.TREE_NODE_CARET, isExpanded ? common_1.Classes.TREE_NODE_CARET_OPEN : common_1.Classes.TREE_NODE_CARET_CLOSED); return (React.createElement(icons_1.ChevronRight, { title: isExpanded ? "Collapse group" : "Expand group", className: caretClasses, onClick: disabled === true ? undefined : this.handleCaretClick })); } return React.createElement("span", { className: common_1.Classes.TREE_NODE_CARET_NONE }); }; TreeNode.prototype.maybeRenderSecondaryLabel = function () { if (this.props.secondaryLabel != null) { return React.createElement("span", { className: common_1.Classes.TREE_NODE_SECONDARY_LABEL }, this.props.secondaryLabel); } else { return undefined; } }; TreeNode.displayName = "".concat(common_1.DISPLAYNAME_PREFIX, ".TreeNode"); return TreeNode; }(React.Component)); exports.TreeNode = TreeNode; //# sourceMappingURL=treeNode.js.map