1 line
16 KiB
JSON
1 line
16 KiB
JSON
{"ast":null,"code":"\"use client\";\n\nvar __rest = this && this.__rest || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];\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};\nimport React, { Children, useContext } from 'react';\nimport classNames from 'classnames';\nimport { cloneElement } from '../_util/reactNode';\nimport { ConfigContext } from '../config-provider';\nimport { Col } from '../grid';\nimport { ListContext } from './context';\nexport const Meta = _a => {\n var {\n prefixCls: customizePrefixCls,\n className,\n avatar,\n title,\n description\n } = _a,\n others = __rest(_a, [\"prefixCls\", \"className\", \"avatar\", \"title\", \"description\"]);\n const {\n getPrefixCls\n } = useContext(ConfigContext);\n const prefixCls = getPrefixCls('list', customizePrefixCls);\n const classString = classNames(`${prefixCls}-item-meta`, className);\n const content = /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-item-meta-content`\n }, title && /*#__PURE__*/React.createElement(\"h4\", {\n className: `${prefixCls}-item-meta-title`\n }, title), description && /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-item-meta-description`\n }, description));\n return /*#__PURE__*/React.createElement(\"div\", Object.assign({}, others, {\n className: classString\n }), avatar && /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-item-meta-avatar`\n }, avatar), (title || description) && content);\n};\nconst InternalItem = /*#__PURE__*/React.forwardRef((props, ref) => {\n const {\n prefixCls: customizePrefixCls,\n children,\n actions,\n extra,\n styles,\n className,\n classNames: customizeClassNames,\n colStyle\n } = props,\n others = __rest(props, [\"prefixCls\", \"children\", \"actions\", \"extra\", \"styles\", \"className\", \"classNames\", \"colStyle\"]);\n const {\n grid,\n itemLayout\n } = useContext(ListContext);\n const {\n getPrefixCls,\n list\n } = useContext(ConfigContext);\n const moduleClass = moduleName => {\n var _a, _b;\n return classNames((_b = (_a = list === null || list === void 0 ? void 0 : list.item) === null || _a === void 0 ? void 0 : _a.classNames) === null || _b === void 0 ? void 0 : _b[moduleName], customizeClassNames === null || customizeClassNames === void 0 ? void 0 : customizeClassNames[moduleName]);\n };\n const moduleStyle = moduleName => {\n var _a, _b;\n return Object.assign(Object.assign({}, (_b = (_a = list === null || list === void 0 ? void 0 : list.item) === null || _a === void 0 ? void 0 : _a.styles) === null || _b === void 0 ? void 0 : _b[moduleName]), styles === null || styles === void 0 ? void 0 : styles[moduleName]);\n };\n const isItemContainsTextNodeAndNotSingular = () => {\n let result = false;\n Children.forEach(children, element => {\n if (typeof element === 'string') {\n result = true;\n }\n });\n return result && Children.count(children) > 1;\n };\n const isFlexMode = () => {\n if (itemLayout === 'vertical') {\n return !!extra;\n }\n return !isItemContainsTextNodeAndNotSingular();\n };\n const prefixCls = getPrefixCls('list', customizePrefixCls);\n const actionsContent = actions && actions.length > 0 && ( /*#__PURE__*/React.createElement(\"ul\", {\n className: classNames(`${prefixCls}-item-action`, moduleClass('actions')),\n key: \"actions\",\n style: moduleStyle('actions')\n }, actions.map((action, i) => ( /*#__PURE__*/\n // eslint-disable-next-line react/no-array-index-key\n React.createElement(\"li\", {\n key: `${prefixCls}-item-action-${i}`\n }, action, i !== actions.length - 1 && /*#__PURE__*/React.createElement(\"em\", {\n className: `${prefixCls}-item-action-split`\n }))))));\n const Element = grid ? 'div' : 'li';\n const itemChildren = /*#__PURE__*/React.createElement(Element, Object.assign({}, others, !grid ? {\n ref\n } : {}, {\n className: classNames(`${prefixCls}-item`, {\n [`${prefixCls}-item-no-flex`]: !isFlexMode()\n }, className)\n }), itemLayout === 'vertical' && extra ? [/*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-item-main`,\n key: \"content\"\n }, children, actionsContent), /*#__PURE__*/React.createElement(\"div\", {\n className: classNames(`${prefixCls}-item-extra`, moduleClass('extra')),\n key: \"extra\",\n style: moduleStyle('extra')\n }, extra)] : [children, actionsContent, cloneElement(extra, {\n key: 'extra'\n })]);\n return grid ? ( /*#__PURE__*/React.createElement(Col, {\n ref: ref,\n flex: 1,\n style: colStyle\n }, itemChildren)) : itemChildren;\n});\nconst Item = InternalItem;\nItem.Meta = Meta;\nexport default Item;","map":{"version":3,"names":["__rest","s","e","t","p","Object","prototype","hasOwnProperty","call","indexOf","getOwnPropertySymbols","i","length","propertyIsEnumerable","React","Children","useContext","classNames","cloneElement","ConfigContext","Col","ListContext","Meta","_a","prefixCls","customizePrefixCls","className","avatar","title","description","others","getPrefixCls","classString","content","createElement","assign","InternalItem","forwardRef","props","ref","children","actions","extra","styles","customizeClassNames","colStyle","grid","itemLayout","list","moduleClass","moduleName","_b","item","moduleStyle","isItemContainsTextNodeAndNotSingular","result","forEach","element","count","isFlexMode","actionsContent","key","style","map","action","Element","itemChildren","flex","Item"],"sources":["C:/Users/Аришина)/Desktop/promo/node_modules/antd/es/list/Item.js"],"sourcesContent":["\"use client\";\n\nvar __rest = this && this.__rest || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];\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};\nimport React, { Children, useContext } from 'react';\nimport classNames from 'classnames';\nimport { cloneElement } from '../_util/reactNode';\nimport { ConfigContext } from '../config-provider';\nimport { Col } from '../grid';\nimport { ListContext } from './context';\nexport const Meta = _a => {\n var {\n prefixCls: customizePrefixCls,\n className,\n avatar,\n title,\n description\n } = _a,\n others = __rest(_a, [\"prefixCls\", \"className\", \"avatar\", \"title\", \"description\"]);\n const {\n getPrefixCls\n } = useContext(ConfigContext);\n const prefixCls = getPrefixCls('list', customizePrefixCls);\n const classString = classNames(`${prefixCls}-item-meta`, className);\n const content = /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-item-meta-content`\n }, title && /*#__PURE__*/React.createElement(\"h4\", {\n className: `${prefixCls}-item-meta-title`\n }, title), description && /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-item-meta-description`\n }, description));\n return /*#__PURE__*/React.createElement(\"div\", Object.assign({}, others, {\n className: classString\n }), avatar && /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-item-meta-avatar`\n }, avatar), (title || description) && content);\n};\nconst InternalItem = /*#__PURE__*/React.forwardRef((props, ref) => {\n const {\n prefixCls: customizePrefixCls,\n children,\n actions,\n extra,\n styles,\n className,\n classNames: customizeClassNames,\n colStyle\n } = props,\n others = __rest(props, [\"prefixCls\", \"children\", \"actions\", \"extra\", \"styles\", \"className\", \"classNames\", \"colStyle\"]);\n const {\n grid,\n itemLayout\n } = useContext(ListContext);\n const {\n getPrefixCls,\n list\n } = useContext(ConfigContext);\n const moduleClass = moduleName => {\n var _a, _b;\n return classNames((_b = (_a = list === null || list === void 0 ? void 0 : list.item) === null || _a === void 0 ? void 0 : _a.classNames) === null || _b === void 0 ? void 0 : _b[moduleName], customizeClassNames === null || customizeClassNames === void 0 ? void 0 : customizeClassNames[moduleName]);\n };\n const moduleStyle = moduleName => {\n var _a, _b;\n return Object.assign(Object.assign({}, (_b = (_a = list === null || list === void 0 ? void 0 : list.item) === null || _a === void 0 ? void 0 : _a.styles) === null || _b === void 0 ? void 0 : _b[moduleName]), styles === null || styles === void 0 ? void 0 : styles[moduleName]);\n };\n const isItemContainsTextNodeAndNotSingular = () => {\n let result = false;\n Children.forEach(children, element => {\n if (typeof element === 'string') {\n result = true;\n }\n });\n return result && Children.count(children) > 1;\n };\n const isFlexMode = () => {\n if (itemLayout === 'vertical') {\n return !!extra;\n }\n return !isItemContainsTextNodeAndNotSingular();\n };\n const prefixCls = getPrefixCls('list', customizePrefixCls);\n const actionsContent = actions && actions.length > 0 && ( /*#__PURE__*/React.createElement(\"ul\", {\n className: classNames(`${prefixCls}-item-action`, moduleClass('actions')),\n key: \"actions\",\n style: moduleStyle('actions')\n }, actions.map((action, i) => (\n /*#__PURE__*/\n // eslint-disable-next-line react/no-array-index-key\n React.createElement(\"li\", {\n key: `${prefixCls}-item-action-${i}`\n }, action, i !== actions.length - 1 && /*#__PURE__*/React.createElement(\"em\", {\n className: `${prefixCls}-item-action-split`\n }))))));\n const Element = grid ? 'div' : 'li';\n const itemChildren = /*#__PURE__*/React.createElement(Element, Object.assign({}, others, !grid ? {\n ref\n } : {}, {\n className: classNames(`${prefixCls}-item`, {\n [`${prefixCls}-item-no-flex`]: !isFlexMode()\n }, className)\n }), itemLayout === 'vertical' && extra ? [/*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-item-main`,\n key: \"content\"\n }, children, actionsContent), /*#__PURE__*/React.createElement(\"div\", {\n className: classNames(`${prefixCls}-item-extra`, moduleClass('extra')),\n key: \"extra\",\n style: moduleStyle('extra')\n }, extra)] : [children, actionsContent, cloneElement(extra, {\n key: 'extra'\n })]);\n return grid ? ( /*#__PURE__*/React.createElement(Col, {\n ref: ref,\n flex: 1,\n style: colStyle\n }, itemChildren)) : itemChildren;\n});\nconst Item = InternalItem;\nItem.Meta = Meta;\nexport default Item;"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]} |