{"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nimport _slicedToArray from \"@babel/runtime/helpers/esm/slicedToArray\";\nimport * as React from 'react';\nimport { useState } from 'react';\nimport classNames from 'classnames';\nimport pickAttrs from \"rc-util/es/pickAttrs\";\nimport Overflow from 'rc-overflow';\nimport TransBtn from \"../TransBtn\";\nimport Input from \"./Input\";\nimport useLayoutEffect from \"../hooks/useLayoutEffect\";\nimport { getTitle } from \"../utils/commonUtil\";\nfunction itemKey(value) {\n  var _value$key;\n  return (_value$key = value.key) !== null && _value$key !== void 0 ? _value$key : value.value;\n}\nvar onPreventMouseDown = function onPreventMouseDown(event) {\n  event.preventDefault();\n  event.stopPropagation();\n};\nvar SelectSelector = function SelectSelector(props) {\n  var id = props.id,\n    prefixCls = props.prefixCls,\n    values = props.values,\n    open = props.open,\n    searchValue = props.searchValue,\n    autoClearSearchValue = props.autoClearSearchValue,\n    inputRef = props.inputRef,\n    placeholder = props.placeholder,\n    disabled = props.disabled,\n    mode = props.mode,\n    showSearch = props.showSearch,\n    autoFocus = props.autoFocus,\n    autoComplete = props.autoComplete,\n    activeDescendantId = props.activeDescendantId,\n    tabIndex = props.tabIndex,\n    removeIcon = props.removeIcon,\n    maxTagCount = props.maxTagCount,\n    maxTagTextLength = props.maxTagTextLength,\n    _props$maxTagPlacehol = props.maxTagPlaceholder,\n    maxTagPlaceholder = _props$maxTagPlacehol === void 0 ? function (omittedValues) {\n      return \"+ \".concat(omittedValues.length, \" ...\");\n    } : _props$maxTagPlacehol,\n    tagRender = props.tagRender,\n    onToggleOpen = props.onToggleOpen,\n    onRemove = props.onRemove,\n    onInputChange = props.onInputChange,\n    onInputPaste = props.onInputPaste,\n    onInputKeyDown = props.onInputKeyDown,\n    onInputMouseDown = props.onInputMouseDown,\n    onInputCompositionStart = props.onInputCompositionStart,\n    onInputCompositionEnd = props.onInputCompositionEnd;\n  var measureRef = React.useRef(null);\n  var _useState = useState(0),\n    _useState2 = _slicedToArray(_useState, 2),\n    inputWidth = _useState2[0],\n    setInputWidth = _useState2[1];\n  var _useState3 = useState(false),\n    _useState4 = _slicedToArray(_useState3, 2),\n    focused = _useState4[0],\n    setFocused = _useState4[1];\n  var selectionPrefixCls = \"\".concat(prefixCls, \"-selection\");\n\n  // ===================== Search ======================\n  var inputValue = open || mode === \"multiple\" && autoClearSearchValue === false || mode === 'tags' ? searchValue : '';\n  var inputEditable = mode === 'tags' || mode === \"multiple\" && autoClearSearchValue === false || showSearch && (open || focused);\n\n  // We measure width and set to the input immediately\n  useLayoutEffect(function () {\n    setInputWidth(measureRef.current.scrollWidth);\n  }, [inputValue]);\n\n  // ===================== Render ======================\n  // >>> Render Selector Node. Includes Item & Rest\n  function defaultRenderSelector(item, content, itemDisabled, closable, onClose) {\n    return /*#__PURE__*/React.createElement(\"span\", {\n      className: classNames(\"\".concat(selectionPrefixCls, \"-item\"), _defineProperty({}, \"\".concat(selectionPrefixCls, \"-item-disabled\"), itemDisabled)),\n      title: getTitle(item)\n    }, /*#__PURE__*/React.createElement(\"span\", {\n      className: \"\".concat(selectionPrefixCls, \"-item-content\")\n    }, content), closable && /*#__PURE__*/React.createElement(TransBtn, {\n      className: \"\".concat(selectionPrefixCls, \"-item-remove\"),\n      onMouseDown: onPreventMouseDown,\n      onClick: onClose,\n      customizeIcon: removeIcon\n    }, \"\\xD7\"));\n  }\n  function customizeRenderSelector(value, content, itemDisabled, closable, onClose) {\n    var onMouseDown = function onMouseDown(e) {\n      onPreventMouseDown(e);\n      onToggleOpen(!open);\n    };\n    return /*#__PURE__*/React.createElement(\"span\", {\n      onMouseDown: onMouseDown\n    }, tagRender({\n      label: content,\n      value: value,\n      disabled: itemDisabled,\n      closable: closable,\n      onClose: onClose\n    }));\n  }\n  function renderItem(valueItem) {\n    var itemDisabled = valueItem.disabled,\n      label = valueItem.label,\n      value = valueItem.value;\n    var closable = !disabled && !itemDisabled;\n    var displayLabel = label;\n    if (typeof maxTagTextLength === 'number') {\n      if (typeof label === 'string' || typeof label === 'number') {\n        var strLabel = String(displayLabel);\n        if (strLabel.length > maxTagTextLength) {\n          displayLabel = \"\".concat(strLabel.slice(0, maxTagTextLength), \"...\");\n        }\n      }\n    }\n    var onClose = function onClose(event) {\n      if (event) event.stopPropagation();\n      onRemove(valueItem);\n    };\n    return typeof tagRender === 'function' ? customizeRenderSelector(value, displayLabel, itemDisabled, closable, onClose) : defaultRenderSelector(valueItem, displayLabel, itemDisabled, closable, onClose);\n  }\n  function renderRest(omittedValues) {\n    var content = typeof maxTagPlaceholder === 'function' ? maxTagPlaceholder(omittedValues) : maxTagPlaceholder;\n    return defaultRenderSelector({\n      title: content\n    }, content, false);\n  }\n\n  // >>> Input Node\n  var inputNode = /*#__PURE__*/React.createElement(\"div\", {\n    className: \"\".concat(selectionPrefixCls, \"-search\"),\n    style: {\n      width: inputWidth\n    },\n    onFocus: function onFocus() {\n      setFocused(true);\n    },\n    onBlur: function onBlur() {\n      setFocused(false);\n    }\n  }, /*#__PURE__*/React.createElement(Input, {\n    ref: inputRef,\n    open: open,\n    prefixCls: prefixCls,\n    id: id,\n    inputElement: null,\n    disabled: disabled,\n    autoFocus: autoFocus,\n    autoComplete: autoComplete,\n    editable: inputEditable,\n    activeDescendantId: activeDescendantId,\n    value: inputValue,\n    onKeyDown: onInputKeyDown,\n    onMouseDown: onInputMouseDown,\n    onChange: onInputChange,\n    onPaste: onInputPaste,\n    onCompositionStart: onInputCompositionStart,\n    onCompositionEnd: onInputCompositionEnd,\n    tabIndex: tabIndex,\n    attrs: pickAttrs(props, true)\n  }), /*#__PURE__*/React.createElement(\"span\", {\n    ref: measureRef,\n    className: \"\".concat(selectionPrefixCls, \"-search-mirror\"),\n    \"aria-hidden\": true\n  }, inputValue, \"\\xA0\"));\n\n  // >>> Selections\n  var selectionNode = /*#__PURE__*/React.createElement(Overflow, {\n    prefixCls: \"\".concat(selectionPrefixCls, \"-overflow\"),\n    data: values,\n    renderItem: renderItem,\n    renderRest: renderRest,\n    suffix: inputNode,\n    itemKey: itemKey,\n    maxCount: maxTagCount\n  });\n  return /*#__PURE__*/React.createElement(React.Fragment, null, selectionNode, !values.length && !inputValue && /*#__PURE__*/React.createElement(\"span\", {\n    className: \"\".concat(selectionPrefixCls, \"-placeholder\")\n  }, placeholder));\n};\nexport default SelectSelector;","map":{"version":3,"names":["_defineProperty","_slicedToArray","React","useState","classNames","pickAttrs","Overflow","TransBtn","Input","useLayoutEffect","getTitle","itemKey","value","_value$key","key","onPreventMouseDown","event","preventDefault","stopPropagation","SelectSelector","props","id","prefixCls","values","open","searchValue","autoClearSearchValue","inputRef","placeholder","disabled","mode","showSearch","autoFocus","autoComplete","activeDescendantId","tabIndex","removeIcon","maxTagCount","maxTagTextLength","_props$maxTagPlacehol","maxTagPlaceholder","omittedValues","concat","length","tagRender","onToggleOpen","onRemove","onInputChange","onInputPaste","onInputKeyDown","onInputMouseDown","onInputCompositionStart","onInputCompositionEnd","measureRef","useRef","_useState","_useState2","inputWidth","setInputWidth","_useState3","_useState4","focused","setFocused","selectionPrefixCls","inputValue","inputEditable","current","scrollWidth","defaultRenderSelector","item","content","itemDisabled","closable","onClose","createElement","className","title","onMouseDown","onClick","customizeIcon","customizeRenderSelector","e","label","renderItem","valueItem","displayLabel","strLabel","String","slice","renderRest","inputNode","style","width","onFocus","onBlur","ref","inputElement","editable","onKeyDown","onChange","onPaste","onCompositionStart","onCompositionEnd","attrs","selectionNode","data","suffix","maxCount","Fragment"],"sources":["/Users/chrishaack/UC_Trains_Voice/react-demo/node_modules/rc-select/es/Selector/MultipleSelector.js"],"sourcesContent":["import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nimport _slicedToArray from \"@babel/runtime/helpers/esm/slicedToArray\";\nimport * as React from 'react';\nimport { useState } from 'react';\nimport classNames from 'classnames';\nimport pickAttrs from \"rc-util/es/pickAttrs\";\nimport Overflow from 'rc-overflow';\nimport TransBtn from \"../TransBtn\";\nimport Input from \"./Input\";\nimport useLayoutEffect from \"../hooks/useLayoutEffect\";\nimport { getTitle } from \"../utils/commonUtil\";\nfunction itemKey(value) {\n  var _value$key;\n  return (_value$key = value.key) !== null && _value$key !== void 0 ? _value$key : value.value;\n}\nvar onPreventMouseDown = function onPreventMouseDown(event) {\n  event.preventDefault();\n  event.stopPropagation();\n};\nvar SelectSelector = function SelectSelector(props) {\n  var id = props.id,\n    prefixCls = props.prefixCls,\n    values = props.values,\n    open = props.open,\n    searchValue = props.searchValue,\n    autoClearSearchValue = props.autoClearSearchValue,\n    inputRef = props.inputRef,\n    placeholder = props.placeholder,\n    disabled = props.disabled,\n    mode = props.mode,\n    showSearch = props.showSearch,\n    autoFocus = props.autoFocus,\n    autoComplete = props.autoComplete,\n    activeDescendantId = props.activeDescendantId,\n    tabIndex = props.tabIndex,\n    removeIcon = props.removeIcon,\n    maxTagCount = props.maxTagCount,\n    maxTagTextLength = props.maxTagTextLength,\n    _props$maxTagPlacehol = props.maxTagPlaceholder,\n    maxTagPlaceholder = _props$maxTagPlacehol === void 0 ? function (omittedValues) {\n      return \"+ \".concat(omittedValues.length, \" ...\");\n    } : _props$maxTagPlacehol,\n    tagRender = props.tagRender,\n    onToggleOpen = props.onToggleOpen,\n    onRemove = props.onRemove,\n    onInputChange = props.onInputChange,\n    onInputPaste = props.onInputPaste,\n    onInputKeyDown = props.onInputKeyDown,\n    onInputMouseDown = props.onInputMouseDown,\n    onInputCompositionStart = props.onInputCompositionStart,\n    onInputCompositionEnd = props.onInputCompositionEnd;\n  var measureRef = React.useRef(null);\n  var _useState = useState(0),\n    _useState2 = _slicedToArray(_useState, 2),\n    inputWidth = _useState2[0],\n    setInputWidth = _useState2[1];\n  var _useState3 = useState(false),\n    _useState4 = _slicedToArray(_useState3, 2),\n    focused = _useState4[0],\n    setFocused = _useState4[1];\n  var selectionPrefixCls = \"\".concat(prefixCls, \"-selection\");\n\n  // ===================== Search ======================\n  var inputValue = open || mode === \"multiple\" && autoClearSearchValue === false || mode === 'tags' ? searchValue : '';\n  var inputEditable = mode === 'tags' || mode === \"multiple\" && autoClearSearchValue === false || showSearch && (open || focused);\n\n  // We measure width and set to the input immediately\n  useLayoutEffect(function () {\n    setInputWidth(measureRef.current.scrollWidth);\n  }, [inputValue]);\n\n  // ===================== Render ======================\n  // >>> Render Selector Node. Includes Item & Rest\n  function defaultRenderSelector(item, content, itemDisabled, closable, onClose) {\n    return /*#__PURE__*/React.createElement(\"span\", {\n      className: classNames(\"\".concat(selectionPrefixCls, \"-item\"), _defineProperty({}, \"\".concat(selectionPrefixCls, \"-item-disabled\"), itemDisabled)),\n      title: getTitle(item)\n    }, /*#__PURE__*/React.createElement(\"span\", {\n      className: \"\".concat(selectionPrefixCls, \"-item-content\")\n    }, content), closable && /*#__PURE__*/React.createElement(TransBtn, {\n      className: \"\".concat(selectionPrefixCls, \"-item-remove\"),\n      onMouseDown: onPreventMouseDown,\n      onClick: onClose,\n      customizeIcon: removeIcon\n    }, \"\\xD7\"));\n  }\n  function customizeRenderSelector(value, content, itemDisabled, closable, onClose) {\n    var onMouseDown = function onMouseDown(e) {\n      onPreventMouseDown(e);\n      onToggleOpen(!open);\n    };\n    return /*#__PURE__*/React.createElement(\"span\", {\n      onMouseDown: onMouseDown\n    }, tagRender({\n      label: content,\n      value: value,\n      disabled: itemDisabled,\n      closable: closable,\n      onClose: onClose\n    }));\n  }\n  function renderItem(valueItem) {\n    var itemDisabled = valueItem.disabled,\n      label = valueItem.label,\n      value = valueItem.value;\n    var closable = !disabled && !itemDisabled;\n    var displayLabel = label;\n    if (typeof maxTagTextLength === 'number') {\n      if (typeof label === 'string' || typeof label === 'number') {\n        var strLabel = String(displayLabel);\n        if (strLabel.length > maxTagTextLength) {\n          displayLabel = \"\".concat(strLabel.slice(0, maxTagTextLength), \"...\");\n        }\n      }\n    }\n    var onClose = function onClose(event) {\n      if (event) event.stopPropagation();\n      onRemove(valueItem);\n    };\n    return typeof tagRender === 'function' ? customizeRenderSelector(value, displayLabel, itemDisabled, closable, onClose) : defaultRenderSelector(valueItem, displayLabel, itemDisabled, closable, onClose);\n  }\n  function renderRest(omittedValues) {\n    var content = typeof maxTagPlaceholder === 'function' ? maxTagPlaceholder(omittedValues) : maxTagPlaceholder;\n    return defaultRenderSelector({\n      title: content\n    }, content, false);\n  }\n\n  // >>> Input Node\n  var inputNode = /*#__PURE__*/React.createElement(\"div\", {\n    className: \"\".concat(selectionPrefixCls, \"-search\"),\n    style: {\n      width: inputWidth\n    },\n    onFocus: function onFocus() {\n      setFocused(true);\n    },\n    onBlur: function onBlur() {\n      setFocused(false);\n    }\n  }, /*#__PURE__*/React.createElement(Input, {\n    ref: inputRef,\n    open: open,\n    prefixCls: prefixCls,\n    id: id,\n    inputElement: null,\n    disabled: disabled,\n    autoFocus: autoFocus,\n    autoComplete: autoComplete,\n    editable: inputEditable,\n    activeDescendantId: activeDescendantId,\n    value: inputValue,\n    onKeyDown: onInputKeyDown,\n    onMouseDown: onInputMouseDown,\n    onChange: onInputChange,\n    onPaste: onInputPaste,\n    onCompositionStart: onInputCompositionStart,\n    onCompositionEnd: onInputCompositionEnd,\n    tabIndex: tabIndex,\n    attrs: pickAttrs(props, true)\n  }), /*#__PURE__*/React.createElement(\"span\", {\n    ref: measureRef,\n    className: \"\".concat(selectionPrefixCls, \"-search-mirror\"),\n    \"aria-hidden\": true\n  }, inputValue, \"\\xA0\"));\n\n  // >>> Selections\n  var selectionNode = /*#__PURE__*/React.createElement(Overflow, {\n    prefixCls: \"\".concat(selectionPrefixCls, \"-overflow\"),\n    data: values,\n    renderItem: renderItem,\n    renderRest: renderRest,\n    suffix: inputNode,\n    itemKey: itemKey,\n    maxCount: maxTagCount\n  });\n  return /*#__PURE__*/React.createElement(React.Fragment, null, selectionNode, !values.length && !inputValue && /*#__PURE__*/React.createElement(\"span\", {\n    className: \"\".concat(selectionPrefixCls, \"-placeholder\")\n  }, placeholder));\n};\nexport default SelectSelector;"],"mappings":"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"},"metadata":{},"sourceType":"module","externalDependencies":[]}