import React, { Component, createRef } from 'react'; import { classNames, ObjectUtils, DomHandler, ZIndexUtils, ConnectedOverlayScrollHandler } from 'primereact/utils'; import PrimeReact, { localeOption } from 'primereact/api'; import { OverlayService } from 'primereact/overlayservice'; import { Tree } from 'primereact/tree'; import { CSSTransition } from 'primereact/csstransition'; import { Portal } from 'primereact/portal'; import { Ripple } from 'primereact/ripple'; function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); } function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } 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 _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 _createSuper$1(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _isNativeReflectConstruct$1() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } var TreeSelectPanelComponent = /*#__PURE__*/function (_Component) { _inherits(TreeSelectPanelComponent, _Component); var _super = _createSuper$1(TreeSelectPanelComponent); function TreeSelectPanelComponent() { _classCallCheck(this, TreeSelectPanelComponent); return _super.apply(this, arguments); } _createClass(TreeSelectPanelComponent, [{ key: "renderElement", value: function renderElement() { var className = classNames('p-treeselect-panel p-component', this.props.panelClassName); return /*#__PURE__*/React.createElement(CSSTransition, { nodeRef: this.props.forwardRef, classNames: "p-connected-overlay", "in": this.props["in"], timeout: { enter: 120, exit: 100 }, options: this.props.transitionOptions, unmountOnExit: true, onEnter: this.props.onEnter, onEntering: this.props.onEntering, onEntered: this.props.onEntered, onExit: this.props.onExit, onExited: this.props.onExited }, /*#__PURE__*/React.createElement("div", { ref: this.props.forwardRef, className: className, style: this.props.panelStyle, onClick: this.props.onClick }, this.props.header, /*#__PURE__*/React.createElement("div", { className: "p-treeselect-items-wrapper", style: { maxHeight: this.props.scrollHeight || 'auto' } }, this.props.children), this.props.footer)); } }, { key: "render", value: function render() { var element = this.renderElement(); return /*#__PURE__*/React.createElement(Portal, { element: element, appendTo: this.props.appendTo }); } }]); return TreeSelectPanelComponent; }(Component); var TreeSelectPanel = /*#__PURE__*/React.forwardRef(function (props, ref) { return /*#__PURE__*/React.createElement(TreeSelectPanelComponent, _extends({ forwardRef: ref }, props)); }); function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } var TreeSelect = /*#__PURE__*/function (_Component) { _inherits(TreeSelect, _Component); var _super = _createSuper(TreeSelect); function TreeSelect(props) { var _this; _classCallCheck(this, TreeSelect); _this = _super.call(this, props); _this.state = { focused: false, overlayVisible: false, expandedKeys: {} }; if (!_this.props.onFilterValueChange) { _this.state['filterValue'] = ''; } _this.onClick = _this.onClick.bind(_assertThisInitialized(_this)); _this.onInputFocus = _this.onInputFocus.bind(_assertThisInitialized(_this)); _this.onInputBlur = _this.onInputBlur.bind(_assertThisInitialized(_this)); _this.onInputKeyDown = _this.onInputKeyDown.bind(_assertThisInitialized(_this)); _this.onFilterInputChange = _this.onFilterInputChange.bind(_assertThisInitialized(_this)); _this.onFilterInputKeyDown = _this.onFilterInputKeyDown.bind(_assertThisInitialized(_this)); _this.onOverlayClick = _this.onOverlayClick.bind(_assertThisInitialized(_this)); _this.onOverlayEnter = _this.onOverlayEnter.bind(_assertThisInitialized(_this)); _this.onOverlayEntered = _this.onOverlayEntered.bind(_assertThisInitialized(_this)); _this.onOverlayExit = _this.onOverlayExit.bind(_assertThisInitialized(_this)); _this.onOverlayExited = _this.onOverlayExited.bind(_assertThisInitialized(_this)); _this.onSelectionChange = _this.onSelectionChange.bind(_assertThisInitialized(_this)); _this.onNodeSelect = _this.onNodeSelect.bind(_assertThisInitialized(_this)); _this.onNodeUnselect = _this.onNodeUnselect.bind(_assertThisInitialized(_this)); _this.onNodeToggle = _this.onNodeToggle.bind(_assertThisInitialized(_this)); _this.onFilterValueChange = _this.onFilterValueChange.bind(_assertThisInitialized(_this)); _this.hide = _this.hide.bind(_assertThisInitialized(_this)); _this.show = _this.show.bind(_assertThisInitialized(_this)); _this.overlayRef = /*#__PURE__*/createRef(); return _this; } _createClass(TreeSelect, [{ key: "getFilterValue", value: function getFilterValue() { return this.props.onFilterValueChange ? this.props.filterValue : this.state.filterValue; } }, { key: "getSelectedNodes", value: function getSelectedNodes() { var selectedNodes = []; if (ObjectUtils.isNotEmpty(this.props.value) && this.props.options) { var keys = this.props.selectionMode === 'single' ? _defineProperty({}, "".concat(this.props.value), true) : _objectSpread({}, this.props.value); this.findSelectedNodes(null, keys, selectedNodes); } return selectedNodes; } }, { key: "getLabel", value: function getLabel() { var value = this.getSelectedNodes(); return value.length ? value.map(function (node) { return node.label; }).join(', ') : this.props.placeholder; } }, { key: "isValueEmpty", value: function isValueEmpty() { return !this.props.value || Object.keys(this.props.value).length === 0; } }, { key: "hasNoOptions", value: function hasNoOptions() { return !this.props.options || this.props.options.length === 0; } }, { key: "show", value: function show() { this.setState({ overlayVisible: true }); } }, { key: "hide", value: function hide() { this.setState({ overlayVisible: false }); } }, { key: "onInputFocus", value: function onInputFocus() { this.setState({ focused: true }); } }, { key: "onInputBlur", value: function onInputBlur() { this.setState({ focused: false }); } }, { key: "onClick", value: function onClick(event) { if (!this.props.disabled && (!this.overlayRef || !this.overlayRef.current || !this.overlayRef.current.contains(event.target)) && !DomHandler.hasClass(event.target, 'p-treeselect-close')) { this.focusInput.focus(); if (this.state.overlayVisible) { this.hide(); } else { this.show(); } } } }, { key: "onSelectionChange", value: function onSelectionChange(event) { if (this.props.onChange) { this.selfChange = true; this.props.onChange({ originalEvent: event.originalEvent, value: event.value, stopPropagation: function stopPropagation() {}, preventDefault: function preventDefault() {}, target: { name: this.props.name, id: this.props.id, value: event.value } }); } } }, { key: "onNodeSelect", value: function onNodeSelect(node) { this.props.onNodeSelect && this.props.onNodeSelect(node); if (this.props.selectionMode === 'single') { this.hide(); } } }, { key: "onNodeUnselect", value: function onNodeUnselect(node) { this.props.onNodeUnselect && this.props.onNodeUnselect(node); } }, { key: "onNodeToggle", value: function onNodeToggle(e) { this.setState({ expandedKeys: e.value }); } }, { key: "onFilterValueChange", value: function onFilterValueChange(e) { this.setState({ filterValue: e.value }); } }, { key: "onOverlayClick", value: function onOverlayClick(event) { OverlayService.emit('overlay-click', { originalEvent: event, target: this.container }); } }, { key: "onInputKeyDown", value: function onInputKeyDown(event) { switch (event.which) { //down case 40: if (!this.state.overlayVisible && event.altKey) { this.show(); } break; //space case 32: if (!this.state.overlayVisible) { this.show(); event.preventDefault(); } break; //enter and escape case 13: case 27: if (this.state.overlayVisible) { this.hide(); event.preventDefault(); } break; //tab case 9: this.hide(); break; } } }, { key: "onFilterInputKeyDown", value: function onFilterInputKeyDown(event) { //enter if (event.which === 13) { event.preventDefault(); } } }, { key: "onFilterInputChange", value: function onFilterInputChange(event) { var filterValue = event.target.value; if (this.props.onFilterValueChange) { this.props.onFilterValueChange({ originalEvent: event, value: filterValue }); } else { this.setState({ filterValue: filterValue }); } } }, { key: "resetFilter", value: function resetFilter() { this.setState({ filterValue: '' }); } }, { key: "onOverlayEnter", value: function onOverlayEnter() { ZIndexUtils.set('overlay', this.overlayRef.current, PrimeReact.autoZIndex, PrimeReact.zIndex['overlay']); this.alignOverlay(); this.scrollInView(); } }, { key: "onOverlayEntered", value: function onOverlayEntered() { this.bindDocumentClickListener(); this.bindScrollListener(); this.bindResizeListener(); if (this.props.filter && this.props.filterInputAutoFocus) { this.filterInput.focus(); } this.props.onShow && this.props.onShow(); } }, { key: "onOverlayExit", value: function onOverlayExit() { this.unbindDocumentClickListener(); this.unbindScrollListener(); this.unbindResizeListener(); } }, { key: "onOverlayExited", value: function onOverlayExited() { if (this.props.filter && this.props.resetFilterOnHide) { this.resetFilter(); } ZIndexUtils.clear(this.overlayRef.current); this.props.onHide && this.props.onHide(); } }, { key: "alignOverlay", value: function alignOverlay() { DomHandler.alignOverlay(this.overlayRef.current, this.trigger.parentElement, this.props.appendTo || PrimeReact.appendTo); } }, { key: "scrollInView", value: function scrollInView() { var highlightItem = DomHandler.findSingle(this.overlayRef.current, '.p-treenode-content.p-highlight'); if (highlightItem) { highlightItem.scrollIntoView({ block: 'nearest', inline: 'start' }); } } }, { key: "bindDocumentClickListener", value: function bindDocumentClickListener() { var _this2 = this; if (!this.documentClickListener) { this.documentClickListener = function (event) { if (_this2.state.overlayVisible && _this2.isOutsideClicked(event)) { _this2.hide(); } }; document.addEventListener('click', this.documentClickListener); } } }, { key: "unbindDocumentClickListener", value: function unbindDocumentClickListener() { if (this.documentClickListener) { document.removeEventListener('click', this.documentClickListener); this.documentClickListener = null; } } }, { key: "bindScrollListener", value: function bindScrollListener() { var _this3 = this; if (!this.scrollHandler) { this.scrollHandler = new ConnectedOverlayScrollHandler(this.container, function () { if (_this3.state.overlayVisible) { _this3.hide(); } }); } this.scrollHandler.bindScrollListener(); } }, { key: "unbindScrollListener", value: function unbindScrollListener() { if (this.scrollHandler) { this.scrollHandler.unbindScrollListener(); } } }, { key: "bindResizeListener", value: function bindResizeListener() { var _this4 = this; if (!this.resizeListener) { this.resizeListener = function () { if (_this4.state.overlayVisible && !DomHandler.isTouchDevice()) { _this4.hide(); } }; window.addEventListener('resize', this.resizeListener); } } }, { key: "unbindResizeListener", value: function unbindResizeListener() { if (this.resizeListener) { window.removeEventListener('resize', this.resizeListener); this.resizeListener = null; } } }, { key: "isOutsideClicked", value: function isOutsideClicked(event) { return this.container && !(this.container.isSameNode(event.target) || this.container.contains(event.target) || this.overlayRef && this.overlayRef.current.contains(event.target)); } }, { key: "findSelectedNodes", value: function findSelectedNodes(node, keys, selectedNodes) { if (node) { if (this.isSelected(node, keys)) { selectedNodes.push(node); delete keys[node.key]; } if (Object.keys(keys).length && node.children) { var _iterator = _createForOfIteratorHelper(node.children), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var childNode = _step.value; this.findSelectedNodes(childNode, keys, selectedNodes); } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } } } else { var _iterator2 = _createForOfIteratorHelper(this.props.options), _step2; try { for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) { var _childNode = _step2.value; this.findSelectedNodes(_childNode, keys, selectedNodes); } } catch (err) { _iterator2.e(err); } finally { _iterator2.f(); } } } }, { key: "isSelected", value: function isSelected(node, keys) { return this.props.selectionMode === 'checkbox' ? keys[node.key] && keys[node.key].checked : keys[node.key]; } }, { key: "updateTreeState", value: function updateTreeState() { var keys = this.props.selectionMode === 'single' ? _defineProperty({}, "".concat(this.props.value), true) : _objectSpread({}, this.props.value); this.setState({ expandedKeys: {} }); if (keys && this.props.options) { this.updateTreeBranchState(null, null, keys); } } }, { key: "updateTreeBranchState", value: function updateTreeBranchState(node, path, keys) { if (node) { if (this.isSelected(node, keys)) { this.expandPath(path); delete keys[node.key]; } if (Object.keys(keys).length && node.children) { var _iterator3 = _createForOfIteratorHelper(node.children), _step3; try { for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) { var childNode = _step3.value; path.push(node.key); this.updateTreeBranchState(childNode, path, keys); } } catch (err) { _iterator3.e(err); } finally { _iterator3.f(); } } } else { var _iterator4 = _createForOfIteratorHelper(this.props.options), _step4; try { for (_iterator4.s(); !(_step4 = _iterator4.n()).done;) { var _childNode2 = _step4.value; this.updateTreeBranchState(_childNode2, [], keys); } } catch (err) { _iterator4.e(err); } finally { _iterator4.f(); } } } }, { key: "expandPath", value: function expandPath(path) { if (path.length > 0) { var expandedKeys = _objectSpread({}, this.state.expandedKeys || {}); var _iterator5 = _createForOfIteratorHelper(path), _step5; try { for (_iterator5.s(); !(_step5 = _iterator5.n()).done;) { var key = _step5.value; expandedKeys[key] = true; } } catch (err) { _iterator5.e(err); } finally { _iterator5.f(); } this.setState({ expandedKeys: expandedKeys }); } } }, { key: "componentDidMount", value: function componentDidMount() { this.updateTreeState(); } }, { key: "componentDidUpdate", value: function componentDidUpdate(prevProps, prevState) { if (this.state.overlayVisible) { if (this.props.filter || prevState.expandedKeys !== this.state.expandedKeys) { this.alignOverlay(); } if (prevProps.value !== this.props.value) { if (!this.selfChange) { this.updateTreeState(); } this.scrollInView(); this.selfChange = false; } } if (prevProps.options !== this.props.options) { this.updateTreeState(); } } }, { key: "componentWillUnmount", value: function componentWillUnmount() { this.unbindDocumentClickListener(); this.unbindResizeListener(); if (this.scrollHandler) { this.scrollHandler.destroy(); this.scrollHandler = null; } ZIndexUtils.clear(this.overlayRef.current); } }, { key: "renderKeyboardHelper", value: function renderKeyboardHelper() { var _this5 = this; return /*#__PURE__*/React.createElement("div", { className: "p-hidden-accessible" }, /*#__PURE__*/React.createElement("input", { ref: function ref(el) { return _this5.focusInput = el; }, role: "listbox", id: this.props.inputId, type: "text", readOnly: true, "aria-haspopup": "true", "aria-expanded": this.state.overlayVisible, onFocus: this.onInputFocus, onBlur: this.onInputBlur, onKeyDown: this.onInputKeyDown, disabled: this.props.disabled, tabIndex: this.props.tabIndex, "aria-label": this.props.ariaLabel, "aria-labelledby": this.props.ariaLabelledBy })); } }, { key: "renderLabel", value: function renderLabel(selectedNodes) { var isValueEmpty = this.isValueEmpty(); var labelClassName = classNames('p-treeselect-label', { 'p-placeholder': this.getLabel() === this.props.placeholder, 'p-treeselect-label-empty': !this.props.placeholder && isValueEmpty }); var content = null; if (this.props.valueTemplate) { content = ObjectUtils.getJSXElement(this.props.valueTemplate, selectedNodes, this.props); } else { if (this.props.display === 'comma') { content = this.getLabel() || 'empty'; } else if (this.props.display === 'chip') { var _selectedNodes = this.getSelectedNodes(); content = /*#__PURE__*/React.createElement(React.Fragment, null, _selectedNodes && _selectedNodes.map(function (node, index) { return /*#__PURE__*/React.createElement("div", { className: "p-treeselect-token", key: "".concat(node.key, "_").concat(index) }, /*#__PURE__*/React.createElement("span", { className: "p-treeselect-token-label" }, node.label)); }), isValueEmpty && (this.props.placeholder || 'empty')); } } return /*#__PURE__*/React.createElement("div", { className: "p-treeselect-label-container" }, /*#__PURE__*/React.createElement("div", { className: labelClassName }, content)); } }, { key: "renderDropdownIcon", value: function renderDropdownIcon() { var _this6 = this; var iconClassName = classNames('p-treeselect-trigger-icon p-clickable', this.props.dropdownIcon); return /*#__PURE__*/React.createElement("div", { ref: function ref(el) { return _this6.trigger = el; }, className: "p-treeselect-trigger", role: "button", "aria-haspopup": "listbox", "aria-expanded": this.state.overlayVisible }, /*#__PURE__*/React.createElement("span", { className: iconClassName })); } }, { key: "renderContent", value: function renderContent() { var filterValue = this.getFilterValue(); return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Tree, { value: this.props.options, selectionMode: this.props.selectionMode, selectionKeys: this.props.value, metaKeySelection: this.props.metaKeySelection, onSelectionChange: this.onSelectionChange, onSelect: this.onNodeSelect, onUnselect: this.onNodeUnselect, expandedKeys: this.state.expandedKeys, onToggle: this.onNodeToggle, onExpand: this.props.onNodeExpand, onCollapse: this.props.onNodeCollapse, filter: this.props.filter, filterValue: filterValue, filterBy: this.props.filterBy, filterMode: this.props.filterMode, filterPlaceholder: this.props.filterPlaceholder, filterLocale: this.props.filterLocale, showHeader: false, onFilterValueChange: this.onFilterValueChange }), this.hasNoOptions() && /*#__PURE__*/React.createElement("div", { className: "p-treeselect-empty-message" }, this.props.emptyMessage || localeOption('emptyMessage'))); } }, { key: "renderFilterElement", value: function renderFilterElement() { var _this7 = this; if (this.props.filter) { var filterValue = this.getFilterValue(); filterValue = ObjectUtils.isNotEmpty(filterValue) ? filterValue : ''; return /*#__PURE__*/React.createElement("div", { className: "p-treeselect-filter-container" }, /*#__PURE__*/React.createElement("input", { ref: function ref(el) { return _this7.filterInput = el; }, type: "text", value: filterValue, autoComplete: "off", className: "p-treeselect-filter p-inputtext p-component", placeholder: this.props.filterPlaceholder, onKeyDown: this.onFilterInputKeyDown, onChange: this.onFilterInputChange, disabled: this.props.disabled }), /*#__PURE__*/React.createElement("span", { className: "p-treeselect-filter-icon pi pi-search" })); } return null; } }, { key: "renderHeader", value: function renderHeader() { var filterElement = this.renderFilterElement(); var closeElement = /*#__PURE__*/React.createElement("button", { type: "button", className: "p-treeselect-close p-link", onClick: this.hide }, /*#__PURE__*/React.createElement("span", { className: "p-treeselect-close-icon pi pi-times" }), /*#__PURE__*/React.createElement(Ripple, null)); var content = /*#__PURE__*/React.createElement("div", { className: "p-treeselect-header" }, filterElement, closeElement); if (this.props.header) { var defaultOptions = { className: 'p-treeselect-header', filterElement: filterElement, closeElement: closeElement, closeElementClassName: 'p-treeselect-close p-link', closeIconClassName: 'p-treeselect-close-icon pi pi-times', onCloseClick: this.hide, element: content, props: this.props }; return ObjectUtils.getJSXElement(this.props.header, defaultOptions); } return content; } }, { key: "render", value: function render() { var _this8 = this; var className = classNames('p-treeselect p-component p-inputwrapper', { 'p-treeselect-chip': this.props.display === 'chip', 'p-disabled': this.props.disabled, 'p-focus': this.state.focused, 'p-inputwrapper-filled': !this.isValueEmpty(), 'p-inputwrapper-focus': this.state.focused || this.state.overlayVisible }, this.props.className); var selectedNodes = this.getSelectedNodes(); var keyboardHelper = this.renderKeyboardHelper(); var labelElement = this.renderLabel(selectedNodes); var dropdownIcon = this.renderDropdownIcon(); var content = this.renderContent(); var header = this.renderHeader(); var footer = ObjectUtils.getJSXElement(this.props.footer, this.props); return /*#__PURE__*/React.createElement("div", { id: this.props.id, ref: function ref(el) { return _this8.container = el; }, className: className, style: this.props.style, onClick: this.onClick }, keyboardHelper, labelElement, dropdownIcon, /*#__PURE__*/React.createElement(TreeSelectPanel, { ref: this.overlayRef, appendTo: this.props.appendTo, panelStyle: this.props.panelStyle, panelClassName: this.props.panelClassName, scrollHeight: this.props.scrollHeight, onClick: this.onOverlayClick, header: header, footer: footer, transitionOptions: this.props.transitionOptions, "in": this.state.overlayVisible, onEnter: this.onOverlayEnter, onEntered: this.onOverlayEntered, onExit: this.onOverlayExit, onExited: this.onOverlayExited }, content)); } }]); return TreeSelect; }(Component); _defineProperty(TreeSelect, "defaultProps", { id: null, value: null, name: null, style: null, className: null, disabled: false, options: null, scrollHeight: '400px', placeholder: null, tabIndex: null, inputId: null, ariaLabel: null, ariaLabelledBy: null, selectionMode: 'single', panelStyle: null, panelClassName: null, appendTo: null, emptyMessage: null, display: 'comma', metaKeySelection: true, valueTemplate: null, panelHeaderTemplate: null, panelFooterTemplate: null, transitionOptions: null, dropdownIcon: 'pi pi-chevron-down', filter: false, filterValue: null, filterBy: 'label', filterMode: 'lenient', filterPlaceholder: null, filterLocale: undefined, filterInputAutoFocus: true, resetFilterOnHide: false, onShow: null, onHide: null, onChange: null, onNodeSelect: null, onNodeUnselect: null, onNodeExpand: null, onNodeCollapse: null, onFilterValueChange: null }); export { TreeSelect };