@fle-ui/plus-im-record
Version:
85 lines • 4.96 kB
JavaScript
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
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 _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
import React, { useContext, useEffect, useState } from 'react';
import classNames from 'classnames';
import { fallbackImg } from '../common/const';
import './index.less';
import { ImContext } from '..';
var OrderGoodsCard = function OrderGoodsCard(props) {
var _props$prefix = props.prefix,
prefix = _props$prefix === void 0 ? 'fx-chart-messages-item' : _props$prefix,
_props$orderSn = props.orderSn,
orderSn = _props$orderSn === void 0 ? '' : _props$orderSn,
messageId = props.messageId;
var _useState = useState([]),
_useState2 = _slicedToArray(_useState, 2),
data = _useState2[0],
setData = _useState2[1];
var _useState3 = useState(false),
_useState4 = _slicedToArray(_useState3, 2),
isExpand = _useState4[0],
setIsExpand = _useState4[1];
var _useContext = useContext(ImContext),
api = _useContext.api;
useEffect(function () {
if (orderSn && messageId) {
api.getOrderGoods({
orderSn: orderSn,
messageId: messageId
}).then(function (_ref) {
var data = _ref.data;
setData(data || []);
});
}
}, [orderSn, messageId]);
function formatOrderPrice(item) {
var currencyStr = item.currencyStr || '积分';
if (Number(item.price || 0) > 0 && Number(item.score || 0) > 0) {
return "".concat(item.score).concat(currencyStr, " + ").concat(item.price, "\u5143");
}
if (Number(item.price || 0) > 0) {
return "".concat(item.price, "\u5143");
}
if (Number(item.score || 0) > 0) {
return "".concat(item.score).concat(currencyStr);
}
return '';
}
return /*#__PURE__*/React.createElement("div", {
className: classNames("".concat(prefix, "-order-goods"))
}, /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "-order-goods-summary")
}, "\u60A8\u597D\uFF0C\u8BF7\u9009\u62E9\u60A8\u8981\u54A8\u8BE2\u7684\u5546\u54C1\uFF1A"), data === null || data === void 0 ? void 0 : data.slice(0, isExpand ? data === null || data === void 0 ? void 0 : data.length : 5).map(function (item, index) {
return /*#__PURE__*/React.createElement("div", {
key: +index,
className: "".concat(prefix, "-order-goods-item")
}, /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "-order-goods-item-img"),
style: {
background: "url(".concat(item.pic || fallbackImg, ") 0 0 / cover no-repeat")
}
}), /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "-order-goods-item-right")
}, /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "-order-goods-item-title two-line-text")
}, item.title), /*#__PURE__*/React.createElement("div", {
style: {
display: 'flex',
justifyContent: 'space-between',
gap: 8
}
}, /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "-order-goods-item-price")
}, item.applicationId === 7 ? null : formatOrderPrice(item)))));
}), (data === null || data === void 0 ? void 0 : data.length) > 5 && /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "-order-goods-expand"),
onClick: function onClick() {
return setIsExpand(!isExpand);
}
}, isExpand ? '收起' : '展开全部', " ", "(".concat(data === null || data === void 0 ? void 0 : data.length, ")")));
};
export default OrderGoodsCard;