pb-sxp-ui 1.20.22 → 1.20.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -11660,6 +11660,7 @@ const getPriceText = ({ product, enableFormattedPrice, globalConfig, isHiddenDef
11660
11660
  const CommodityDetail$1 = (_a) => {
11661
11661
  var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0;
11662
11662
  var { content, style, bgImg, onClick, schema, isDefault, bottom_image, tipText, isPost, viewTime, rec, swiper, commodityStyles, buttonStyle, index, commodityGroup, popupBg, iframeIcon, commodityImgRatio, isTel, iframeBgColor, isActive = true, enableAddToCart = false, addToCartPopupId = '' } = _a, props = __rest(_a, ["content", "style", "bgImg", "onClick", "schema", "isDefault", "bottom_image", "tipText", "isPost", "viewTime", "rec", "swiper", "commodityStyles", "buttonStyle", "index", "commodityGroup", "popupBg", "iframeIcon", "commodityImgRatio", "isTel", "iframeBgColor", "isActive", "enableAddToCart", "addToCartPopupId"]);
11663
+ console.log('[CommodityDetail] 组件已加载 - 版本 v1.20.23', { enableAddToCart, addToCartPopupId, isPost });
11663
11664
  const { sxpParameter, popupDetailData, isPreview, bffFbReport, popupCurTimeRef, checkCommodityIndexRef, globalConfig, ctaEvent, setPopupDetailData } = useSxpDataSource();
11664
11665
  const { jumpToWeb, productView } = useEventReport();
11665
11666
  const curTimeRef = useRef(null);
@@ -11840,7 +11841,7 @@ const CommodityDetail$1 = (_a) => {
11840
11841
  const renderBtn = () => {
11841
11842
  var _a, _b;
11842
11843
  const handleBtnClick = (e) => {
11843
- console.log('[CommodityDetail] Shop Now 按钮被点击', {
11844
+ console.log('[CommodityDetail] Shop Now 按钮被点击!!!!', {
11844
11845
  product,
11845
11846
  cta,
11846
11847
  enableAddToCart,
@@ -11849,9 +11850,20 @@ const CommodityDetail$1 = (_a) => {
11849
11850
  });
11850
11851
  handleLink(e);
11851
11852
  };
11853
+ console.log('[CommodityDetail] renderBtn 被调用', {
11854
+ ctaTitle: cta === null || cta === void 0 ? void 0 : cta.enTitle,
11855
+ buttonStyle
11856
+ });
11852
11857
  return (React.createElement(React.Fragment, null,
11853
- React.createElement("a", { "aria-label": (_a = cta === null || cta === void 0 ? void 0 : cta.enTitle) !== null && _a !== void 0 ? _a : 'Purchase on Website', role: 'button', tabIndex: 0, onClick: handleBtnClick, onMouseDown: (e) => console.log('[CommodityDetail] mousedown 事件', e), onPointerDown: (e) => console.log('[CommodityDetail] pointerdown 事件', e), className: 'pb-commondity-btn', style: Object.assign(Object.assign({}, buttonStyle), { pointerEvents: 'auto' }) },
11854
- React.createElement("span", { dangerouslySetInnerHTML: {
11858
+ React.createElement("a", { "aria-label": (_a = cta === null || cta === void 0 ? void 0 : cta.enTitle) !== null && _a !== void 0 ? _a : 'Purchase on Website', role: 'button', tabIndex: 0, onClick: handleBtnClick, onMouseDown: (e) => {
11859
+ console.log('[CommodityDetail] mousedown 事件触发!!!', e);
11860
+ e.stopPropagation();
11861
+ }, onPointerDown: (e) => {
11862
+ console.log('[CommodityDetail] pointerdown 事件触发!!!', e);
11863
+ }, onTouchStart: (e) => {
11864
+ console.log('[CommodityDetail] touchstart 事件触发!!!', e);
11865
+ }, className: 'pb-commondity-btn', style: Object.assign(Object.assign({}, buttonStyle), { pointerEvents: 'auto', touchAction: 'manipulation' }) },
11866
+ React.createElement("span", { style: { pointerEvents: 'none' }, dangerouslySetInnerHTML: {
11855
11867
  __html: setFontForText((_b = cta === null || cta === void 0 ? void 0 : cta.enTitle) !== null && _b !== void 0 ? _b : 'Purchase on Website', buttonStyle)
11856
11868
  } }))));
11857
11869
  };