pb-sxp-ui 1.17.0 → 1.17.1
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.cjs +173 -161
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +7 -15
- package/dist/index.js +173 -161
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +6 -6
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +6 -6
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +173 -161
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +6 -6
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/DiyPortalPreview/index.js +3 -5
- package/es/core/components/DiyStoryPreview/index.js +18 -7
- package/es/core/components/SxpPageRender/ExpandableText.js +2 -2
- package/es/core/components/SxpPageRender/RenderCard.d.ts +1 -0
- package/es/core/components/SxpPageRender/RenderCard.js +2 -14
- package/es/core/components/SxpPageRender/index.js +4 -4
- package/es/materials/sxp/consentPopup/Display/index.js +1 -1
- package/es/materials/sxp/cta/AniLinkPopup/material.js +3 -2
- package/es/materials/sxp/popup/CommodityDetail/material.js +2 -1
- package/es/materials/sxp/popup/CommodityList/index.js +5 -4
- package/es/materials/sxp/popup/CommodityList/material.js +1 -1
- package/es/materials/sxp/popup/CommodityList/settingRender.js +1 -1
- package/es/materials/sxp/template/Appoint/material.js +2 -1
- package/es/materials/sxp/template/Commodity/material.js +3 -2
- package/es/materials/sxp/template/CommodityDiro/material.js +3 -2
- package/es/materials/sxp/template/CommodityDiroNew/material.js +4 -2
- package/es/materials/sxp/template/Link/material.js +4 -2
- package/es/materials/sxp/template/MultiCommodity/index.js +1 -1
- package/es/materials/sxp/template/MultiCommodity/material.js +2 -1
- package/es/materials/sxp/template/MultiCommodityDiro/index.js +1 -1
- package/es/materials/sxp/template/MultiCommodityDiro/material.js +3 -2
- package/es/materials/sxp/template/MultiCommodityDiroNew/index.js +1 -1
- package/es/materials/sxp/template/MultiCommodityDiroNew/material.js +4 -2
- package/es/materials/sxp/template/NineCommodity/material.js +3 -2
- package/es/materials/sxp/template/components/CommodityGroup.js +1 -1
- package/es/materials/sxp/template/components/settingRender.js +1 -1
- package/lib/core/components/DiyPortalPreview/index.js +3 -5
- package/lib/core/components/DiyStoryPreview/index.js +18 -7
- package/lib/core/components/SxpPageRender/ExpandableText.js +2 -2
- package/lib/core/components/SxpPageRender/RenderCard.d.ts +1 -0
- package/lib/core/components/SxpPageRender/RenderCard.js +2 -14
- package/lib/core/components/SxpPageRender/index.js +4 -4
- package/lib/materials/sxp/consentPopup/Display/index.js +1 -1
- package/lib/materials/sxp/cta/AniLinkPopup/material.js +2 -1
- package/lib/materials/sxp/popup/CommodityDetail/material.js +2 -1
- package/lib/materials/sxp/popup/CommodityList/index.js +5 -4
- package/lib/materials/sxp/popup/CommodityList/material.js +1 -1
- package/lib/materials/sxp/popup/CommodityList/settingRender.js +1 -1
- package/lib/materials/sxp/template/Appoint/material.js +2 -1
- package/lib/materials/sxp/template/Commodity/material.js +3 -2
- package/lib/materials/sxp/template/CommodityDiro/material.js +3 -2
- package/lib/materials/sxp/template/CommodityDiroNew/material.js +4 -2
- package/lib/materials/sxp/template/Link/material.js +4 -2
- package/lib/materials/sxp/template/MultiCommodity/index.js +1 -1
- package/lib/materials/sxp/template/MultiCommodity/material.js +2 -1
- package/lib/materials/sxp/template/MultiCommodityDiro/index.js +1 -1
- package/lib/materials/sxp/template/MultiCommodityDiro/material.js +3 -2
- package/lib/materials/sxp/template/MultiCommodityDiroNew/index.js +1 -1
- package/lib/materials/sxp/template/MultiCommodityDiroNew/material.js +4 -2
- package/lib/materials/sxp/template/NineCommodity/material.js +3 -2
- package/lib/materials/sxp/template/components/CommodityGroup.js +1 -1
- package/lib/materials/sxp/template/components/settingRender.js +1 -1
- package/package.json +1 -1
@@ -59,7 +59,7 @@ const DiyPortalPreview = ({ data = [], globalConfig, tipText, nudge, tempMap, de
|
|
59
59
|
const CTA = (rec, index) => {
|
60
60
|
if ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) === undefined || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA)) {
|
61
61
|
return (React.createElement("div", { className: 'clc-sxp-bottom-card' },
|
62
|
-
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER
|
62
|
+
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER })));
|
63
63
|
}
|
64
64
|
return null;
|
65
65
|
};
|
@@ -72,10 +72,8 @@ const DiyPortalPreview = ({ data = [], globalConfig, tipText, nudge, tempMap, de
|
|
72
72
|
React.createElement(Nudge, { nudge: nudge }),
|
73
73
|
CTA(rec, index),
|
74
74
|
React.createElement("div", null,
|
75
|
-
React.createElement(ExpandableText, { className: 'clc-sxp-bottom-text', isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_c = (_b = rec === null || rec === void 0 ? void 0 : rec.video) === null || _b === void 0 ? void 0 : _b.title) !== null && _c !== void 0 ? _c : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none' }) }),
|
76
|
-
|
77
|
-
React.createElement(Hashtag, { index: index, tags: (_e = (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.hashTags) !== null && _e !== void 0 ? _e : [], itemId: (_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.itemId, itemType: ((_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle })),
|
78
|
-
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLinkPopup'], isActive: true })));
|
75
|
+
React.createElement(ExpandableText, { className: 'clc-sxp-bottom-text', isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_c = (_b = rec === null || rec === void 0 ? void 0 : rec.video) === null || _b === void 0 ? void 0 : _b.title) !== null && _c !== void 0 ? _c : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none' }) })),
|
76
|
+
React.createElement(Hashtag, { index: index, tags: (_e = (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.hashTags) !== null && _e !== void 0 ? _e : [], itemId: (_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.itemId, itemType: ((_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle }))));
|
79
77
|
}
|
80
78
|
return null;
|
81
79
|
};
|
@@ -81,10 +81,21 @@ const DiyStoryPreview = forwardRef(({ data = [], globalConfig, tipText, nudge, t
|
|
81
81
|
return null;
|
82
82
|
}, [globalConfig]);
|
83
83
|
const renderBottom = (rec, index) => {
|
84
|
-
var _a, _b, _c, _d;
|
84
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
85
85
|
if (rec === null || rec === void 0 ? void 0 : rec.video) {
|
86
|
+
let cta = null;
|
87
|
+
if ((_b = (_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.bindProducts) === null || _b === void 0 ? void 0 : _b.length) {
|
88
|
+
cta = '多商品CTA';
|
89
|
+
}
|
90
|
+
else if ((_c = rec === null || rec === void 0 ? void 0 : rec.video) === null || _c === void 0 ? void 0 : _c.bindProduct) {
|
91
|
+
cta = '商品CTA';
|
92
|
+
}
|
93
|
+
else {
|
94
|
+
cta = (_e = (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.bindCta) === null || _e === void 0 ? void 0 : _e.itemId;
|
95
|
+
}
|
96
|
+
const value = tempMap === null || tempMap === void 0 ? void 0 : tempMap[cta];
|
86
97
|
return (React.createElement(React.Fragment, null,
|
87
|
-
((
|
98
|
+
((_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.title) && (React.createElement("div", { style: {
|
88
99
|
background: 'repeating-linear-gradient(0deg, rgba(26, 26, 25, 0.7), hsla(0, 0%, 100%, 0))',
|
89
100
|
height: '130px',
|
90
101
|
position: 'absolute',
|
@@ -95,7 +106,7 @@ const DiyStoryPreview = forwardRef(({ data = [], globalConfig, tipText, nudge, t
|
|
95
106
|
pointerEvents
|
96
107
|
} })),
|
97
108
|
React.createElement("div", { style: {
|
98
|
-
marginBottom: `${(
|
109
|
+
marginBottom: `${(_g = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.bottomInfoDist) !== null && _g !== void 0 ? _g : 40}px`,
|
99
110
|
zIndex: 999,
|
100
111
|
position: 'absolute',
|
101
112
|
bottom: 0,
|
@@ -104,11 +115,11 @@ const DiyStoryPreview = forwardRef(({ data = [], globalConfig, tipText, nudge, t
|
|
104
115
|
paddingTop: '20px'
|
105
116
|
} },
|
106
117
|
(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) === undefined || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) ? (React.createElement("div", { style: {} },
|
107
|
-
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, isActive: index === activeIndex }))) : null,
|
118
|
+
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, isActive: index === activeIndex, value: value }))) : null,
|
108
119
|
React.createElement("div", null,
|
109
|
-
React.createElement(ExpandableText, { isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (
|
110
|
-
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLink'], isActive: index === activeIndex }))),
|
111
|
-
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex })));
|
120
|
+
React.createElement(ExpandableText, { isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_j = (_h = rec === null || rec === void 0 ? void 0 : rec.video) === null || _h === void 0 ? void 0 : _h.title) !== null && _j !== void 0 ? _j : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none', padding: '0 20px', fontSize: '12px' }) }),
|
121
|
+
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLink'], isActive: index === activeIndex, value: value }))),
|
122
|
+
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex, value: value })));
|
112
123
|
}
|
113
124
|
return null;
|
114
125
|
};
|
@@ -45,7 +45,7 @@ const ExpandableText = ({ text, maxStr = 108, style, className, onClick, foldTex
|
|
45
45
|
display: '-webkit-box',
|
46
46
|
WebkitBoxOrient: 'vertical'
|
47
47
|
})), { wordBreak: 'break-word', textRendering: 'geometricPrecision', fontKerning: 'none', textSizeAdjust: '100%', boxSizing: 'border-box', contain: 'content' }), dangerouslySetInnerHTML: { __html: setFontForText(text === null || text === void 0 ? void 0 : text.replace(/\n/g, '</br>'), textStyle) } }),
|
48
|
-
React.createElement("div", { ref: realRef, style: {
|
48
|
+
isPost && (React.createElement("div", { ref: realRef, style: {
|
49
49
|
wordBreak: 'break-word',
|
50
50
|
textRendering: 'geometricPrecision',
|
51
51
|
fontKerning: 'none',
|
@@ -56,7 +56,7 @@ const ExpandableText = ({ text, maxStr = 108, style, className, onClick, foldTex
|
|
56
56
|
opacity: 0,
|
57
57
|
clipPath: 'inset(100%)',
|
58
58
|
transform: 'translateX(-9999px)'
|
59
|
-
}, dangerouslySetInnerHTML: { __html: setFontForText(text === null || text === void 0 ? void 0 : text.replace(/\n/g, '</br>'), textStyle) } }),
|
59
|
+
}, dangerouslySetInnerHTML: { __html: setFontForText(text === null || text === void 0 ? void 0 : text.replace(/\n/g, '</br>'), textStyle) } })),
|
60
60
|
text && isPost && isShow && (React.createElement("button", { "aria-label": isShowMore ? unfoldText || 'show less' : foldText || 'show more', style: { textDecoration: 'underline', cursor: 'pointer' }, onClick: onClick !== null && onClick !== void 0 ? onClick : handleClick, dangerouslySetInnerHTML: {
|
61
61
|
__html: setFontForText(isShowMore ? unfoldText || 'show less' : foldText || 'show more', textStyle)
|
62
62
|
} }))));
|
@@ -3,22 +3,10 @@ import './index.less';
|
|
3
3
|
import { cloneDeep } from 'lodash';
|
4
4
|
import withBindDataSource from '../../../core/hoc/withBindDataSource';
|
5
5
|
import { useEditor } from '../../../core/hooks';
|
6
|
-
const RenderCard = ({ rec, index, tempMap, resolver, includesCtaType, isActive, isNineProduct }) => {
|
7
|
-
var _a, _b, _c, _d, _e;
|
6
|
+
const RenderCard = ({ rec, index, tempMap, resolver, includesCtaType, isActive, value, isNineProduct }) => {
|
8
7
|
const { schema } = useEditor();
|
9
8
|
if (!(rec === null || rec === void 0 ? void 0 : rec.video))
|
10
9
|
return null;
|
11
|
-
let cta = null;
|
12
|
-
if ((_b = (_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.bindProducts) === null || _b === void 0 ? void 0 : _b.length) {
|
13
|
-
cta = '多商品CTA';
|
14
|
-
}
|
15
|
-
else if ((_c = rec === null || rec === void 0 ? void 0 : rec.video) === null || _c === void 0 ? void 0 : _c.bindProduct) {
|
16
|
-
cta = '商品CTA';
|
17
|
-
}
|
18
|
-
else {
|
19
|
-
cta = (_e = (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.bindCta) === null || _e === void 0 ? void 0 : _e.itemId;
|
20
|
-
}
|
21
|
-
const value = tempMap === null || tempMap === void 0 ? void 0 : tempMap[cta];
|
22
10
|
const renderComp = useMemo(() => {
|
23
11
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3;
|
24
12
|
if (includesCtaType && !(includesCtaType === null || includesCtaType === void 0 ? void 0 : includesCtaType.includes((_a = value === null || value === void 0 ? void 0 : value.item) === null || _a === void 0 ? void 0 : _a.type)))
|
@@ -43,7 +31,7 @@ const RenderCard = ({ rec, index, tempMap, resolver, includesCtaType, isActive,
|
|
43
31
|
const sbf = style.backdropFilter;
|
44
32
|
style.backdropFilter = `blur(${sbf !== null && sbf !== void 0 ? sbf : 0}px)`;
|
45
33
|
}
|
46
|
-
return (React.createElement(Component, Object.assign({ style: Object.assign(Object.assign(Object.assign({}, defaulSetting === null || defaulSetting === void 0 ? void 0 : defaulSetting.style), style), { zIndex: 50,
|
34
|
+
return (React.createElement(Component, Object.assign({ style: Object.assign(Object.assign(Object.assign({}, defaulSetting === null || defaulSetting === void 0 ? void 0 : defaulSetting.style), style), { zIndex: 50, marginLeft: '20px', boxSizing: 'border-box', transform: 'translate3d(0px, 0px, 0px)' }), textStyle: Object.assign(Object.assign({}, defaulSetting === null || defaulSetting === void 0 ? void 0 : defaulSetting.textStyle), (_z = value === null || value === void 0 ? void 0 : value.item) === null || _z === void 0 ? void 0 : _z.textStyle), bindDatas: (_1 = (_0 = value === null || value === void 0 ? void 0 : value.item) === null || _0 === void 0 ? void 0 : _0.bindDatas) !== null && _1 !== void 0 ? _1 : [] }, defaulSetting === null || defaulSetting === void 0 ? void 0 : defaulSetting.props, (_2 = value === null || value === void 0 ? void 0 : value.item) === null || _2 === void 0 ? void 0 : _2.props, { event: ((_3 = value === null || value === void 0 ? void 0 : value.item) === null || _3 === void 0 ? void 0 : _3.event) || {}, schema: schema, id: value === null || value === void 0 ? void 0 : value.id, key: value === null || value === void 0 ? void 0 : value.id, recData: rec, isExternalLink: isExternalLink, index: index, isActive: isActive })));
|
47
35
|
}
|
48
36
|
else {
|
49
37
|
return null;
|
@@ -314,17 +314,17 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.inner
|
|
314
314
|
index === ((rtcList === null || rtcList === void 0 ? void 0 : rtcList[0]) === 'organic menu' ? 2 : 1) &&
|
315
315
|
((_f = ['MultiCommodity', 'MultiCommodityDiro', 'MultiCommodityDiroNew']) === null || _f === void 0 ? void 0 : _f.includes((_g = value === null || value === void 0 ? void 0 : value.item) === null || _g === void 0 ? void 0 : _g.type));
|
316
316
|
return (React.createElement(React.Fragment, null,
|
317
|
-
isNineProduct && (React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, isActive: index === activeIndex, isNineProduct: isNineProduct })),
|
317
|
+
isNineProduct && (React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, isActive: index === activeIndex, value: value, isNineProduct: isNineProduct })),
|
318
318
|
((_h = rec === null || rec === void 0 ? void 0 : rec.video) === null || _h === void 0 ? void 0 : _h.title) && !isShowMore && React.createElement("div", { className: 'clc-sxp-bottom-shadow' }),
|
319
319
|
React.createElement("div", { className: 'clc-sxp-bottom', style: { marginBottom: `${(_j = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.bottomInfoDist) !== null && _j !== void 0 ? _j : 40}px` } },
|
320
320
|
React.createElement(Nudge, { nudge: nudge }),
|
321
321
|
((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) === undefined || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA)) && !isNineProduct ? (React.createElement("div", { className: 'clc-sxp-bottom-card' },
|
322
|
-
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, isActive: index === activeIndex }))) : null,
|
322
|
+
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, isActive: index === activeIndex, value: value }))) : null,
|
323
323
|
React.createElement("div", null,
|
324
324
|
React.createElement(ExpandableText, { className: 'clc-sxp-bottom-text', isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_l = (_k = rec === null || rec === void 0 ? void 0 : rec.video) === null || _k === void 0 ? void 0 : _k.title) !== null && _l !== void 0 ? _l : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none' }), onChange: onExpandableChange }),
|
325
|
-
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, includesCtaType: ['AniLink'], isActive: index === activeIndex }),
|
325
|
+
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, includesCtaType: ['AniLink'], isActive: index === activeIndex, value: value }),
|
326
326
|
React.createElement(Hashtag, { index: activeIndex, tags: (_o = (_m = rec === null || rec === void 0 ? void 0 : rec.video) === null || _m === void 0 ? void 0 : _m.hashTags) !== null && _o !== void 0 ? _o : [], itemId: (_p = rec === null || rec === void 0 ? void 0 : rec.video) === null || _p === void 0 ? void 0 : _p.itemId, itemType: ((_q = rec === null || rec === void 0 ? void 0 : rec.video) === null || _q === void 0 ? void 0 : _q.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle, hashTagRightMargin: containerWidth - (hashTagRightMargin !== null && hashTagRightMargin !== void 0 ? hashTagRightMargin : 0) }))),
|
327
|
-
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex })));
|
327
|
+
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex, value: value })));
|
328
328
|
}
|
329
329
|
return null;
|
330
330
|
}, [
|
@@ -26,7 +26,7 @@ const Display = (_a) => {
|
|
26
26
|
React.createElement("span", { style: content === null || content === void 0 ? void 0 : content.style, dangerouslySetInnerHTML: {
|
27
27
|
__html: setFontForText((_b = content === null || content === void 0 ? void 0 : content.text) === null || _b === void 0 ? void 0 : _b.replace(/\n/g, '</br>'), content === null || content === void 0 ? void 0 : content.style)
|
28
28
|
} }),
|
29
|
-
React.createElement("span", { style: Object.assign(Object.assign({}, interaction === null || interaction === void 0 ? void 0 : interaction.style), {
|
29
|
+
React.createElement("span", { style: Object.assign(Object.assign({}, interaction === null || interaction === void 0 ? void 0 : interaction.style), { marginLeft: '5px' }), dangerouslySetInnerHTML: {
|
30
30
|
__html: setFontForText((_c = interaction === null || interaction === void 0 ? void 0 : interaction.text) === null || _c === void 0 ? void 0 : _c.replace(/\n/g, '</br>'), interaction === null || interaction === void 0 ? void 0 : interaction.style)
|
31
31
|
}, onClick: handleClick })),
|
32
32
|
isShowClose && (React.createElement("button", { "aria-label": 'close', className: 'consentPopupDisplay-close', onClick: handleClickClose },
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import settingRender from './settingRender';
|
2
|
-
import interactionRender from './interactionRender';
|
3
2
|
import AniLinkPopupComponent from '.';
|
4
3
|
import { createMaterial } from '../../../../core/create';
|
4
|
+
import interactionRender from './interactionRender';
|
5
5
|
const AniLinkPopup = createMaterial(AniLinkPopupComponent, {
|
6
6
|
displayName: '竖版弹窗CTA',
|
7
7
|
icon: '',
|
8
8
|
category: 'cta',
|
9
9
|
type: 'AniLinkPopup',
|
10
10
|
related: {
|
11
|
-
settingRender,
|
11
|
+
settingRender: settingRender,
|
12
12
|
bindableProps: [],
|
13
13
|
interactionRender
|
14
14
|
},
|
@@ -24,6 +24,7 @@ const AniLinkPopup = createMaterial(AniLinkPopupComponent, {
|
|
24
24
|
title: {
|
25
25
|
fontSize: 14,
|
26
26
|
color: '#000',
|
27
|
+
textAlign: 'left',
|
27
28
|
lineHeight: 2.6
|
28
29
|
},
|
29
30
|
ctaTitle: {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import settingRender from './settingRender';
|
2
|
-
import interactionRender from './interactionRender';
|
3
2
|
import CommodityDetailComponent from '.';
|
4
3
|
import { createMaterial } from '../../../../core/create';
|
4
|
+
import interactionRender from './interactionRender';
|
5
5
|
const CommodityDetail = createMaterial(CommodityDetailComponent, {
|
6
6
|
displayName: '商品详情',
|
7
7
|
icon: '',
|
@@ -40,6 +40,7 @@ const CommodityDetail = createMaterial(CommodityDetailComponent, {
|
|
40
40
|
taxInfo: {
|
41
41
|
color: '#000',
|
42
42
|
fontSize: 13,
|
43
|
+
textAlign: 'left',
|
43
44
|
marginBottom: '10px'
|
44
45
|
}
|
45
46
|
},
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { __rest } from "tslib";
|
2
2
|
import { css } from '@emotion/css';
|
3
3
|
import React, { memo, useCallback, useEffect } from 'react';
|
4
|
-
import { throttle } from 'lodash';
|
5
|
-
import Img from '../../template/components/Img';
|
6
4
|
import { useEditor, useSxpDataSource } from '../../../../core/hooks';
|
7
5
|
import './index.less';
|
8
6
|
import { useEventReport } from '../../../../core/hooks/useEventReport';
|
9
7
|
import { setFontForText } from '../../../../core/utils/tool';
|
8
|
+
import Img from '../../template/components/Img';
|
9
|
+
import { throttle } from 'lodash';
|
10
10
|
import { getPriceText } from '../../../../core/utils/materials';
|
11
11
|
const CommodityList = (_a) => {
|
12
12
|
var _b, _c, _d;
|
@@ -53,11 +53,12 @@ const CommodityList = (_a) => {
|
|
53
53
|
React.createElement("button", Object.assign({ role: 'button', "aria-label": item === null || item === void 0 ? void 0 : item.title, tabIndex: 0, className: css({
|
54
54
|
display: 'flex',
|
55
55
|
alignItems: 'normal',
|
56
|
-
width: '100%'
|
56
|
+
width: '100%',
|
57
|
+
textAlign: 'left'
|
57
58
|
}) }, props),
|
58
59
|
React.createElement(Img, { src: (_d = (_c = (_a = item === null || item === void 0 ? void 0 : item.cover) !== null && _a !== void 0 ? _a : (_b = item === null || item === void 0 ? void 0 : item.homePage) === null || _b === void 0 ? void 0 : _b[0]) !== null && _c !== void 0 ? _c : sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.bottom_image) !== null && _d !== void 0 ? _d : bottom_image, rec: recData, item: item, index: index, translateY: translateY, imgStyle: commodityPicture, enableEventReport: false }),
|
59
60
|
React.createElement("div", { style: {
|
60
|
-
width: `calc(100% - ${(_e = commodityPicture === null || commodityPicture === void 0 ? void 0 : commodityPicture.width) !== null && _e !== void 0 ? _e : 0}px - ${(_f = commodityPicture === null || commodityPicture === void 0 ? void 0 : commodityPicture.
|
61
|
+
width: `calc(100% - ${(_e = commodityPicture === null || commodityPicture === void 0 ? void 0 : commodityPicture.width) !== null && _e !== void 0 ? _e : 0}px - ${(_f = commodityPicture === null || commodityPicture === void 0 ? void 0 : commodityPicture.marginRight) !== null && _f !== void 0 ? _f : 0}px)`,
|
61
62
|
display: 'flex',
|
62
63
|
flexDirection: 'column',
|
63
64
|
justifyContent: 'space-between'
|
@@ -19,11 +19,12 @@ const Appoint = createMaterial(AppointComponent, {
|
|
19
19
|
borderRadius: 3,
|
20
20
|
width: 30,
|
21
21
|
height: 30,
|
22
|
-
|
22
|
+
marginRight: 8
|
23
23
|
},
|
24
24
|
ctaTitle: {
|
25
25
|
fontSize: 12,
|
26
26
|
color: '#fff',
|
27
|
+
textAlign: 'left',
|
27
28
|
width: 130,
|
28
29
|
height: 20
|
29
30
|
}
|
@@ -19,11 +19,12 @@ const Commodity = createMaterial(CommodityComponent, {
|
|
19
19
|
borderRadius: 3,
|
20
20
|
width: 60,
|
21
21
|
height: 60,
|
22
|
-
|
22
|
+
marginRight: 8
|
23
23
|
},
|
24
24
|
title: {
|
25
25
|
fontSize: 12,
|
26
|
-
color: '#fff'
|
26
|
+
color: '#fff',
|
27
|
+
textAlign: 'left'
|
27
28
|
},
|
28
29
|
ctaTitle: {
|
29
30
|
fontSize: 10,
|
@@ -19,11 +19,12 @@ const CommodityDiro = createMaterial(CommodityDiroComponent, {
|
|
19
19
|
borderRadius: 3,
|
20
20
|
width: 60,
|
21
21
|
height: 60,
|
22
|
-
|
22
|
+
marginRight: 8
|
23
23
|
},
|
24
24
|
title: {
|
25
25
|
fontSize: 12,
|
26
|
-
color: '#000'
|
26
|
+
color: '#000',
|
27
|
+
textAlign: 'left'
|
27
28
|
},
|
28
29
|
ctaTitle: {
|
29
30
|
fontSize: 10,
|
@@ -19,17 +19,19 @@ const CommodityDiroNew = createMaterial(CommodityDiroNewComponent, {
|
|
19
19
|
borderRadius: 8,
|
20
20
|
width: 78,
|
21
21
|
height: 78,
|
22
|
-
|
22
|
+
marginRight: 16
|
23
23
|
},
|
24
24
|
title: {
|
25
25
|
fontSize: 13,
|
26
|
-
color: '#000'
|
26
|
+
color: '#000',
|
27
|
+
textAlign: 'left'
|
27
28
|
},
|
28
29
|
ctaTitle: {
|
29
30
|
textDecoration: 'underline',
|
30
31
|
fontSize: 14,
|
31
32
|
fontWeight: 'bold',
|
32
33
|
color: '#000',
|
34
|
+
textAlign: 'left',
|
33
35
|
width: 150,
|
34
36
|
height: 20
|
35
37
|
}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
var _a;
|
2
2
|
import settingRender from '../components/settingRender';
|
3
3
|
import linkSettingRender from './settingRender';
|
4
|
-
import interactionRender from './interactionRender';
|
5
4
|
import LinkComponent from '.';
|
6
5
|
import { createMaterial } from '../../../../core/create';
|
6
|
+
import interactionRender from './interactionRender';
|
7
7
|
const Link = createMaterial(LinkComponent, {
|
8
8
|
displayName: '普通CTA',
|
9
9
|
icon: '',
|
@@ -21,17 +21,19 @@ const Link = createMaterial(LinkComponent, {
|
|
21
21
|
borderRadius: 3,
|
22
22
|
width: 60,
|
23
23
|
height: 60,
|
24
|
-
|
24
|
+
marginRight: 8
|
25
25
|
},
|
26
26
|
ctaTitle: {
|
27
27
|
fontSize: 12,
|
28
28
|
color: '#fff',
|
29
|
+
textAlign: 'left',
|
29
30
|
width: 130,
|
30
31
|
height: 20
|
31
32
|
}
|
32
33
|
},
|
33
34
|
customTitle: {
|
34
35
|
style: {
|
36
|
+
textAlign: 'left',
|
35
37
|
textDecoration: 'underline',
|
36
38
|
fontWeight: 'bold',
|
37
39
|
width: 130,
|
@@ -15,7 +15,7 @@ const MultiCommodity = (_a) => {
|
|
15
15
|
const [products] = useState((_c = (_b = recData === null || recData === void 0 ? void 0 : recData.video) === null || _b === void 0 ? void 0 : _b.bindProducts) !== null && _c !== void 0 ? _c : [1, 2]);
|
16
16
|
return (React.createElement(Scroll, { isPadding: !!recData }, products === null || products === void 0 ? void 0 : products.map((item, itemIndex) => {
|
17
17
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
18
|
-
return (React.createElement(React.Fragment, null, recData && !(item === null || item === void 0 ? void 0 : item.bindCta) ? null : (React.createElement(SwiperSlide, { key: itemIndex, className: css(Object.assign(Object.assign({}, style), { flexShrink: 0,
|
18
|
+
return (React.createElement(React.Fragment, null, recData && !(item === null || item === void 0 ? void 0 : item.bindCta) ? null : (React.createElement(SwiperSlide, { key: itemIndex, className: css(Object.assign(Object.assign({}, style), { flexShrink: 0, marginLeft: 0, marginRight: '8px' })), tag: 'li', role: 'listitem' },
|
19
19
|
React.createElement(EventProvider, Object.assign({ rec: recData, multItem: item, multiCheckIndex: itemIndex, index: index }, props),
|
20
20
|
React.createElement(Img, { src: (_d = (_c = (_a = item === null || item === void 0 ? void 0 : item.cover) !== null && _a !== void 0 ? _a : (_b = item === null || item === void 0 ? void 0 : item.homePage) === null || _b === void 0 ? void 0 : _b[0]) !== null && _c !== void 0 ? _c : sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.bottom_image) !== null && _d !== void 0 ? _d : bottom_image, rec: recData, item: item, index: index, translateY: translateY, imgStyle: ctaTempStyles === null || ctaTempStyles === void 0 ? void 0 : ctaTempStyles.img, isActive: isActive }),
|
21
21
|
React.createElement("div", { className: css({
|
@@ -19,11 +19,12 @@ const MultiCommodity = createMaterial(MultiCommodityComponent, {
|
|
19
19
|
borderRadius: 3,
|
20
20
|
width: 60,
|
21
21
|
height: 60,
|
22
|
-
|
22
|
+
marginRight: 8
|
23
23
|
},
|
24
24
|
title: {
|
25
25
|
fontSize: 12,
|
26
26
|
color: '#fff',
|
27
|
+
textAlign: 'left'
|
27
28
|
},
|
28
29
|
ctaTitle: {
|
29
30
|
fontSize: 10,
|
@@ -15,7 +15,7 @@ const MultiCommodityDiro = (_a) => {
|
|
15
15
|
const [products] = useState((_c = (_b = recData === null || recData === void 0 ? void 0 : recData.video) === null || _b === void 0 ? void 0 : _b.bindProducts) !== null && _c !== void 0 ? _c : [1, 2]);
|
16
16
|
return (React.createElement(Scroll, { isPadding: !!recData }, products === null || products === void 0 ? void 0 : products.map((item, itemIndex) => {
|
17
17
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
18
|
-
return (React.createElement(React.Fragment, null, recData && !(item === null || item === void 0 ? void 0 : item.bindCta) ? null : (React.createElement(SwiperSlide, { key: itemIndex, className: css(Object.assign(Object.assign({}, style), { flexShrink: 0,
|
18
|
+
return (React.createElement(React.Fragment, null, recData && !(item === null || item === void 0 ? void 0 : item.bindCta) ? null : (React.createElement(SwiperSlide, { key: itemIndex, className: css(Object.assign(Object.assign({}, style), { flexShrink: 0, marginLeft: 0, marginRight: '8px' })), tag: 'li', role: 'listitem' },
|
19
19
|
React.createElement(EventProvider, Object.assign({ rec: recData, multItem: item, multiCheckIndex: itemIndex, index: index }, props),
|
20
20
|
React.createElement(Img, { src: (_d = (_c = (_a = item === null || item === void 0 ? void 0 : item.cover) !== null && _a !== void 0 ? _a : (_b = item === null || item === void 0 ? void 0 : item.homePage) === null || _b === void 0 ? void 0 : _b[0]) !== null && _c !== void 0 ? _c : sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.bottom_image) !== null && _d !== void 0 ? _d : bottom_image, rec: recData, item: item, index: index, translateY: translateY, imgStyle: ctaTempStyles === null || ctaTempStyles === void 0 ? void 0 : ctaTempStyles.img, isActive: isActive }),
|
21
21
|
React.createElement("div", { className: css({
|
@@ -19,11 +19,12 @@ const MultiCommodityDiro = createMaterial(MultiCommodityDiroComponent, {
|
|
19
19
|
borderRadius: 3,
|
20
20
|
width: 60,
|
21
21
|
height: 60,
|
22
|
-
|
22
|
+
marginRight: 8
|
23
23
|
},
|
24
24
|
title: {
|
25
25
|
fontSize: 12,
|
26
|
-
color: '#000'
|
26
|
+
color: '#000',
|
27
|
+
textAlign: 'left'
|
27
28
|
},
|
28
29
|
ctaTitle: {
|
29
30
|
fontSize: 10,
|
@@ -15,7 +15,7 @@ const MultiCommodityDiroNew = (_a) => {
|
|
15
15
|
const [products] = useState((_c = (_b = recData === null || recData === void 0 ? void 0 : recData.video) === null || _b === void 0 ? void 0 : _b.bindProducts) !== null && _c !== void 0 ? _c : [1, 2]);
|
16
16
|
return (React.createElement(Scroll, { isPadding: !!recData }, products === null || products === void 0 ? void 0 : products.map((item, itemIndex) => {
|
17
17
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
18
|
-
return (React.createElement(React.Fragment, null, recData && !(item === null || item === void 0 ? void 0 : item.bindCta) ? null : (React.createElement(SwiperSlide, { key: itemIndex, className: css(Object.assign(Object.assign({}, style), { flexShrink: 0,
|
18
|
+
return (React.createElement(React.Fragment, null, recData && !(item === null || item === void 0 ? void 0 : item.bindCta) ? null : (React.createElement(SwiperSlide, { key: itemIndex, className: css(Object.assign(Object.assign({}, style), { flexShrink: 0, marginLeft: 0, marginRight: '8px' })), tag: 'li', role: 'listitem' },
|
19
19
|
React.createElement(EventProvider, Object.assign({ rec: recData, multItem: item, multiCheckIndex: itemIndex, index: index }, props),
|
20
20
|
React.createElement(Img, { src: (_d = (_c = (_a = item === null || item === void 0 ? void 0 : item.cover) !== null && _a !== void 0 ? _a : (_b = item === null || item === void 0 ? void 0 : item.homePage) === null || _b === void 0 ? void 0 : _b[0]) !== null && _c !== void 0 ? _c : sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.bottom_image) !== null && _d !== void 0 ? _d : bottom_image, rec: recData, item: item, index: index, translateY: translateY, imgStyle: ctaTempStyles === null || ctaTempStyles === void 0 ? void 0 : ctaTempStyles.img, isActive: isActive }),
|
21
21
|
React.createElement("div", { className: css({
|
@@ -19,17 +19,19 @@ const MultiCommodityDiroNew = createMaterial(MultiCommodityDiroNewComponent, {
|
|
19
19
|
borderRadius: 8,
|
20
20
|
width: 78,
|
21
21
|
height: 78,
|
22
|
-
|
22
|
+
marginRight: 16
|
23
23
|
},
|
24
24
|
title: {
|
25
25
|
fontSize: 12,
|
26
|
-
color: '#000'
|
26
|
+
color: '#000',
|
27
|
+
textAlign: 'left'
|
27
28
|
},
|
28
29
|
ctaTitle: {
|
29
30
|
textDecoration: 'underline',
|
30
31
|
fontSize: 12,
|
31
32
|
fontWeight: 'bold',
|
32
33
|
color: '#000',
|
34
|
+
textAlign: 'left',
|
33
35
|
width: 150,
|
34
36
|
height: 20
|
35
37
|
}
|
@@ -19,11 +19,12 @@ const NineCommodity = createMaterial(NineCommodityComponent, {
|
|
19
19
|
borderRadius: 3,
|
20
20
|
width: 60,
|
21
21
|
height: 60,
|
22
|
-
|
22
|
+
marginRight: 8
|
23
23
|
},
|
24
24
|
title: {
|
25
25
|
fontSize: 12,
|
26
|
-
color: '#fff'
|
26
|
+
color: '#fff',
|
27
|
+
textAlign: 'left'
|
27
28
|
},
|
28
29
|
ctaTitle: {
|
29
30
|
fontSize: 10,
|
@@ -21,7 +21,7 @@ const CommodityGroup = ({ products, data, defImg, style, onCLick, popupDetailDat
|
|
21
21
|
return (React.createElement(React.Fragment, null, (item === null || item === void 0 ? void 0 : item.bindCta) ? (React.createElement(SwiperSlide, { className: css({
|
22
22
|
width: '50px',
|
23
23
|
height: '50px',
|
24
|
-
|
24
|
+
marginRight: '10px'
|
25
25
|
}), onClick: () => {
|
26
26
|
handleClick(item, index);
|
27
27
|
}, key: index },
|
@@ -62,7 +62,7 @@ const DiyPortalPreview = ({ data = [], globalConfig, tipText, nudge, tempMap, de
|
|
62
62
|
const CTA = (rec, index) => {
|
63
63
|
if ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) === undefined || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA)) {
|
64
64
|
return (react_1.default.createElement("div", { className: 'clc-sxp-bottom-card' },
|
65
|
-
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER
|
65
|
+
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER })));
|
66
66
|
}
|
67
67
|
return null;
|
68
68
|
};
|
@@ -75,10 +75,8 @@ const DiyPortalPreview = ({ data = [], globalConfig, tipText, nudge, tempMap, de
|
|
75
75
|
react_1.default.createElement(Nudge_1.default, { nudge: nudge }),
|
76
76
|
CTA(rec, index),
|
77
77
|
react_1.default.createElement("div", null,
|
78
|
-
react_1.default.createElement(ExpandableText_1.default, { className: 'clc-sxp-bottom-text', isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_c = (_b = rec === null || rec === void 0 ? void 0 : rec.video) === null || _b === void 0 ? void 0 : _b.title) !== null && _c !== void 0 ? _c : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none' }) }),
|
79
|
-
|
80
|
-
react_1.default.createElement(Hashtag_1.default, { index: index, tags: (_e = (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.hashTags) !== null && _e !== void 0 ? _e : [], itemId: (_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.itemId, itemType: ((_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle })),
|
81
|
-
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLinkPopup'], isActive: true })));
|
78
|
+
react_1.default.createElement(ExpandableText_1.default, { className: 'clc-sxp-bottom-text', isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_c = (_b = rec === null || rec === void 0 ? void 0 : rec.video) === null || _b === void 0 ? void 0 : _b.title) !== null && _c !== void 0 ? _c : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none' }) })),
|
79
|
+
react_1.default.createElement(Hashtag_1.default, { index: index, tags: (_e = (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.hashTags) !== null && _e !== void 0 ? _e : [], itemId: (_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.itemId, itemType: ((_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle }))));
|
82
80
|
}
|
83
81
|
return null;
|
84
82
|
};
|
@@ -84,10 +84,21 @@ const DiyStoryPreview = (0, react_1.forwardRef)(({ data = [], globalConfig, tipT
|
|
84
84
|
return null;
|
85
85
|
}, [globalConfig]);
|
86
86
|
const renderBottom = (rec, index) => {
|
87
|
-
var _a, _b, _c, _d;
|
87
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
88
88
|
if (rec === null || rec === void 0 ? void 0 : rec.video) {
|
89
|
+
let cta = null;
|
90
|
+
if ((_b = (_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.bindProducts) === null || _b === void 0 ? void 0 : _b.length) {
|
91
|
+
cta = '多商品CTA';
|
92
|
+
}
|
93
|
+
else if ((_c = rec === null || rec === void 0 ? void 0 : rec.video) === null || _c === void 0 ? void 0 : _c.bindProduct) {
|
94
|
+
cta = '商品CTA';
|
95
|
+
}
|
96
|
+
else {
|
97
|
+
cta = (_e = (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.bindCta) === null || _e === void 0 ? void 0 : _e.itemId;
|
98
|
+
}
|
99
|
+
const value = tempMap === null || tempMap === void 0 ? void 0 : tempMap[cta];
|
89
100
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
90
|
-
((
|
101
|
+
((_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.title) && (react_1.default.createElement("div", { style: {
|
91
102
|
background: 'repeating-linear-gradient(0deg, rgba(26, 26, 25, 0.7), hsla(0, 0%, 100%, 0))',
|
92
103
|
height: '130px',
|
93
104
|
position: 'absolute',
|
@@ -98,7 +109,7 @@ const DiyStoryPreview = (0, react_1.forwardRef)(({ data = [], globalConfig, tipT
|
|
98
109
|
pointerEvents
|
99
110
|
} })),
|
100
111
|
react_1.default.createElement("div", { style: {
|
101
|
-
marginBottom: `${(
|
112
|
+
marginBottom: `${(_g = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.bottomInfoDist) !== null && _g !== void 0 ? _g : 40}px`,
|
102
113
|
zIndex: 999,
|
103
114
|
position: 'absolute',
|
104
115
|
bottom: 0,
|
@@ -107,11 +118,11 @@ const DiyStoryPreview = (0, react_1.forwardRef)(({ data = [], globalConfig, tipT
|
|
107
118
|
paddingTop: '20px'
|
108
119
|
} },
|
109
120
|
(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) === undefined || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) ? (react_1.default.createElement("div", { style: {} },
|
110
|
-
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, isActive: index === activeIndex }))) : null,
|
121
|
+
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, isActive: index === activeIndex, value: value }))) : null,
|
111
122
|
react_1.default.createElement("div", null,
|
112
|
-
react_1.default.createElement(ExpandableText_1.default, { isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (
|
113
|
-
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLink'], isActive: index === activeIndex }))),
|
114
|
-
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex })));
|
123
|
+
react_1.default.createElement(ExpandableText_1.default, { isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_j = (_h = rec === null || rec === void 0 ? void 0 : rec.video) === null || _h === void 0 ? void 0 : _h.title) !== null && _j !== void 0 ? _j : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none', padding: '0 20px', fontSize: '12px' }) }),
|
124
|
+
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLink'], isActive: index === activeIndex, value: value }))),
|
125
|
+
react_1.default.createElement(RenderCard_1.default, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex, value: value })));
|
115
126
|
}
|
116
127
|
return null;
|
117
128
|
};
|