aa8d4312bf005fc03ae88045803fd391.json
16.2 KB
{"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nimport _extends from \"@babel/runtime/helpers/extends\"; // TODO: 4.0 - codemod should help to change `filterOption` to support node props.\n\nvar __rest = this && this.__rest || function (s, e) {\n var t = {};\n\n for (var p in s) {\n if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];\n }\n\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];\n }\n return t;\n};\n\nimport * as React from 'react';\nimport omit from 'omit.js';\nimport classNames from 'classnames';\nimport RcSelect, { Option, OptGroup } from 'rc-select';\nimport { ConfigContext } from '../config-provider';\nimport getIcons from './utils/iconUtil';\nimport SizeContext from '../config-provider/SizeContext';\nvar SECRET_COMBOBOX_MODE_DO_NOT_USE = 'SECRET_COMBOBOX_MODE_DO_NOT_USE';\n\nvar InternalSelect = function InternalSelect(_a, ref) {\n var _classNames2;\n\n var customizePrefixCls = _a.prefixCls,\n _a$bordered = _a.bordered,\n bordered = _a$bordered === void 0 ? true : _a$bordered,\n className = _a.className,\n getPopupContainer = _a.getPopupContainer,\n dropdownClassName = _a.dropdownClassName,\n _a$listHeight = _a.listHeight,\n listHeight = _a$listHeight === void 0 ? 256 : _a$listHeight,\n _a$listItemHeight = _a.listItemHeight,\n listItemHeight = _a$listItemHeight === void 0 ? 24 : _a$listItemHeight,\n customizeSize = _a.size,\n notFoundContent = _a.notFoundContent,\n _a$transitionName = _a.transitionName,\n transitionName = _a$transitionName === void 0 ? 'slide-up' : _a$transitionName,\n props = __rest(_a, [\"prefixCls\", \"bordered\", \"className\", \"getPopupContainer\", \"dropdownClassName\", \"listHeight\", \"listItemHeight\", \"size\", \"notFoundContent\", \"transitionName\"]);\n\n var _React$useContext = React.useContext(ConfigContext),\n getContextPopupContainer = _React$useContext.getPopupContainer,\n getPrefixCls = _React$useContext.getPrefixCls,\n renderEmpty = _React$useContext.renderEmpty,\n direction = _React$useContext.direction,\n virtual = _React$useContext.virtual,\n dropdownMatchSelectWidth = _React$useContext.dropdownMatchSelectWidth;\n\n var size = React.useContext(SizeContext);\n var prefixCls = getPrefixCls('select', customizePrefixCls);\n var mode = React.useMemo(function () {\n var m = props.mode;\n\n if (m === 'combobox') {\n return undefined;\n }\n\n if (m === SECRET_COMBOBOX_MODE_DO_NOT_USE) {\n return 'combobox';\n }\n\n return m;\n }, [props.mode]);\n var isMultiple = mode === 'multiple' || mode === 'tags'; // ===================== Empty =====================\n\n var mergedNotFound;\n\n if (notFoundContent !== undefined) {\n mergedNotFound = notFoundContent;\n } else if (mode === 'combobox') {\n mergedNotFound = null;\n } else {\n mergedNotFound = renderEmpty('Select');\n } // ===================== Icons =====================\n\n\n var _getIcons = getIcons(_extends(_extends({}, props), {\n multiple: isMultiple,\n prefixCls: prefixCls\n })),\n suffixIcon = _getIcons.suffixIcon,\n itemIcon = _getIcons.itemIcon,\n removeIcon = _getIcons.removeIcon,\n clearIcon = _getIcons.clearIcon;\n\n var selectProps = omit(props, ['suffixIcon', 'itemIcon']);\n var rcSelectRtlDropDownClassName = classNames(dropdownClassName, _defineProperty({}, \"\".concat(prefixCls, \"-dropdown-\").concat(direction), direction === 'rtl'));\n var mergedSize = customizeSize || size;\n var mergedClassName = classNames((_classNames2 = {}, _defineProperty(_classNames2, \"\".concat(prefixCls, \"-lg\"), mergedSize === 'large'), _defineProperty(_classNames2, \"\".concat(prefixCls, \"-sm\"), mergedSize === 'small'), _defineProperty(_classNames2, \"\".concat(prefixCls, \"-rtl\"), direction === 'rtl'), _defineProperty(_classNames2, \"\".concat(prefixCls, \"-borderless\"), !bordered), _classNames2), className);\n return /*#__PURE__*/React.createElement(RcSelect, _extends({\n ref: ref,\n virtual: virtual,\n dropdownMatchSelectWidth: dropdownMatchSelectWidth\n }, selectProps, {\n transitionName: transitionName,\n listHeight: listHeight,\n listItemHeight: listItemHeight,\n mode: mode,\n prefixCls: prefixCls,\n direction: direction,\n inputIcon: suffixIcon,\n menuItemSelectedIcon: itemIcon,\n removeIcon: removeIcon,\n clearIcon: clearIcon,\n notFoundContent: mergedNotFound,\n className: mergedClassName,\n getPopupContainer: getPopupContainer || getContextPopupContainer,\n dropdownClassName: rcSelectRtlDropDownClassName\n }));\n};\n\nvar SelectRef = /*#__PURE__*/React.forwardRef(InternalSelect);\nvar Select = SelectRef;\nSelect.SECRET_COMBOBOX_MODE_DO_NOT_USE = SECRET_COMBOBOX_MODE_DO_NOT_USE;\nSelect.Option = Option;\nSelect.OptGroup = OptGroup;\nexport default Select;","map":{"version":3,"sources":["C:/Users/kkwan_000/Desktop/git/2017110269/minsung/node_modules/antd/es/select/index.js"],"names":["_defineProperty","_extends","__rest","s","e","t","p","Object","prototype","hasOwnProperty","call","indexOf","getOwnPropertySymbols","i","length","propertyIsEnumerable","React","omit","classNames","RcSelect","Option","OptGroup","ConfigContext","getIcons","SizeContext","SECRET_COMBOBOX_MODE_DO_NOT_USE","InternalSelect","_a","ref","_classNames2","customizePrefixCls","prefixCls","_a$bordered","bordered","className","getPopupContainer","dropdownClassName","_a$listHeight","listHeight","_a$listItemHeight","listItemHeight","customizeSize","size","notFoundContent","_a$transitionName","transitionName","props","_React$useContext","useContext","getContextPopupContainer","getPrefixCls","renderEmpty","direction","virtual","dropdownMatchSelectWidth","mode","useMemo","m","undefined","isMultiple","mergedNotFound","_getIcons","multiple","suffixIcon","itemIcon","removeIcon","clearIcon","selectProps","rcSelectRtlDropDownClassName","concat","mergedSize","mergedClassName","createElement","inputIcon","menuItemSelectedIcon","SelectRef","forwardRef","Select"],"mappings":"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","sourcesContent":["import _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nimport _extends from \"@babel/runtime/helpers/extends\";\n\n// TODO: 4.0 - codemod should help to change `filterOption` to support node props.\nvar __rest = this && this.__rest || function (s, e) {\n var t = {};\n\n for (var p in s) {\n if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];\n }\n\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];\n }\n return t;\n};\n\nimport * as React from 'react';\nimport omit from 'omit.js';\nimport classNames from 'classnames';\nimport RcSelect, { Option, OptGroup } from 'rc-select';\nimport { ConfigContext } from '../config-provider';\nimport getIcons from './utils/iconUtil';\nimport SizeContext from '../config-provider/SizeContext';\nvar SECRET_COMBOBOX_MODE_DO_NOT_USE = 'SECRET_COMBOBOX_MODE_DO_NOT_USE';\n\nvar InternalSelect = function InternalSelect(_a, ref) {\n var _classNames2;\n\n var customizePrefixCls = _a.prefixCls,\n _a$bordered = _a.bordered,\n bordered = _a$bordered === void 0 ? true : _a$bordered,\n className = _a.className,\n getPopupContainer = _a.getPopupContainer,\n dropdownClassName = _a.dropdownClassName,\n _a$listHeight = _a.listHeight,\n listHeight = _a$listHeight === void 0 ? 256 : _a$listHeight,\n _a$listItemHeight = _a.listItemHeight,\n listItemHeight = _a$listItemHeight === void 0 ? 24 : _a$listItemHeight,\n customizeSize = _a.size,\n notFoundContent = _a.notFoundContent,\n _a$transitionName = _a.transitionName,\n transitionName = _a$transitionName === void 0 ? 'slide-up' : _a$transitionName,\n props = __rest(_a, [\"prefixCls\", \"bordered\", \"className\", \"getPopupContainer\", \"dropdownClassName\", \"listHeight\", \"listItemHeight\", \"size\", \"notFoundContent\", \"transitionName\"]);\n\n var _React$useContext = React.useContext(ConfigContext),\n getContextPopupContainer = _React$useContext.getPopupContainer,\n getPrefixCls = _React$useContext.getPrefixCls,\n renderEmpty = _React$useContext.renderEmpty,\n direction = _React$useContext.direction,\n virtual = _React$useContext.virtual,\n dropdownMatchSelectWidth = _React$useContext.dropdownMatchSelectWidth;\n\n var size = React.useContext(SizeContext);\n var prefixCls = getPrefixCls('select', customizePrefixCls);\n var mode = React.useMemo(function () {\n var m = props.mode;\n\n if (m === 'combobox') {\n return undefined;\n }\n\n if (m === SECRET_COMBOBOX_MODE_DO_NOT_USE) {\n return 'combobox';\n }\n\n return m;\n }, [props.mode]);\n var isMultiple = mode === 'multiple' || mode === 'tags'; // ===================== Empty =====================\n\n var mergedNotFound;\n\n if (notFoundContent !== undefined) {\n mergedNotFound = notFoundContent;\n } else if (mode === 'combobox') {\n mergedNotFound = null;\n } else {\n mergedNotFound = renderEmpty('Select');\n } // ===================== Icons =====================\n\n\n var _getIcons = getIcons(_extends(_extends({}, props), {\n multiple: isMultiple,\n prefixCls: prefixCls\n })),\n suffixIcon = _getIcons.suffixIcon,\n itemIcon = _getIcons.itemIcon,\n removeIcon = _getIcons.removeIcon,\n clearIcon = _getIcons.clearIcon;\n\n var selectProps = omit(props, ['suffixIcon', 'itemIcon']);\n var rcSelectRtlDropDownClassName = classNames(dropdownClassName, _defineProperty({}, \"\".concat(prefixCls, \"-dropdown-\").concat(direction), direction === 'rtl'));\n var mergedSize = customizeSize || size;\n var mergedClassName = classNames((_classNames2 = {}, _defineProperty(_classNames2, \"\".concat(prefixCls, \"-lg\"), mergedSize === 'large'), _defineProperty(_classNames2, \"\".concat(prefixCls, \"-sm\"), mergedSize === 'small'), _defineProperty(_classNames2, \"\".concat(prefixCls, \"-rtl\"), direction === 'rtl'), _defineProperty(_classNames2, \"\".concat(prefixCls, \"-borderless\"), !bordered), _classNames2), className);\n return /*#__PURE__*/React.createElement(RcSelect, _extends({\n ref: ref,\n virtual: virtual,\n dropdownMatchSelectWidth: dropdownMatchSelectWidth\n }, selectProps, {\n transitionName: transitionName,\n listHeight: listHeight,\n listItemHeight: listItemHeight,\n mode: mode,\n prefixCls: prefixCls,\n direction: direction,\n inputIcon: suffixIcon,\n menuItemSelectedIcon: itemIcon,\n removeIcon: removeIcon,\n clearIcon: clearIcon,\n notFoundContent: mergedNotFound,\n className: mergedClassName,\n getPopupContainer: getPopupContainer || getContextPopupContainer,\n dropdownClassName: rcSelectRtlDropDownClassName\n }));\n};\n\nvar SelectRef = /*#__PURE__*/React.forwardRef(InternalSelect);\nvar Select = SelectRef;\nSelect.SECRET_COMBOBOX_MODE_DO_NOT_USE = SECRET_COMBOBOX_MODE_DO_NOT_USE;\nSelect.Option = Option;\nSelect.OptGroup = OptGroup;\nexport default Select;"]},"metadata":{},"sourceType":"module"}