pb-sxp-ui 1.0.9 → 1.0.11
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 +17 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +17 -9
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +3 -3
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +17 -9
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +3 -3
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/SxpPageRender/Nudge/index.js +2 -2
- package/es/core/components/SxpPageRender/WaterFall/index.js +1 -1
- package/es/core/components/SxpPageRender/index.d.ts +1 -0
- package/es/core/components/SxpPageRender/index.js +4 -4
- package/lib/core/components/SxpPageRender/Nudge/index.js +2 -2
- package/lib/core/components/SxpPageRender/WaterFall/index.js +1 -1
- package/lib/core/components/SxpPageRender/index.d.ts +1 -0
- package/lib/core/components/SxpPageRender/index.js +4 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
@@ -11700,7 +11700,7 @@ var img$1 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeA
|
|
11700
11700
|
* @Author: binruan@chatlabs.com
|
11701
11701
|
* @Date: 2024-01-10 10:58:24
|
11702
11702
|
* @LastEditors: binruan@chatlabs.com
|
11703
|
-
* @LastEditTime: 2024-04-15
|
11703
|
+
* @LastEditTime: 2024-04-15 16:48:54
|
11704
11704
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\WaterFall\index.tsx
|
11705
11705
|
*
|
11706
11706
|
*/
|
@@ -11727,7 +11727,7 @@ const WaterFall = (props) => {
|
|
11727
11727
|
if (!isEq && cacheRtcList && (cacheRtcList === null || cacheRtcList === void 0 ? void 0 : cacheRtcList.length)) {
|
11728
11728
|
setRtcList === null || setRtcList === void 0 ? void 0 : setRtcList(cacheRtcList);
|
11729
11729
|
}
|
11730
|
-
reportTagsView(0);
|
11730
|
+
reportTagsView(cacheActiveIndex || 0);
|
11731
11731
|
setWaterFallData === null || setWaterFallData === void 0 ? void 0 : setWaterFallData(undefined);
|
11732
11732
|
setIsFromHashtag === null || setIsFromHashtag === void 0 ? void 0 : setIsFromHashtag(false);
|
11733
11733
|
setTimeout(() => {
|
@@ -12473,8 +12473,16 @@ const RenderCard = ({ rec, index, tempMap, resolver }) => {
|
|
12473
12473
|
};
|
12474
12474
|
var RenderCard$1 = React.memo(RenderCard);
|
12475
12475
|
|
12476
|
+
/*
|
12477
|
+
* @Author: binruan@chatlabs.com
|
12478
|
+
* @Date: 2024-03-26 10:07:41
|
12479
|
+
* @LastEditors: binruan@chatlabs.com
|
12480
|
+
* @LastEditTime: 2024-04-15 14:27:18
|
12481
|
+
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\Nudge\index.tsx
|
12482
|
+
*
|
12483
|
+
*/
|
12476
12484
|
const Nudge = ({ nudge }) => {
|
12477
|
-
return (React.createElement(
|
12485
|
+
return (React.createElement(React.Fragment, null, (nudge === null || nudge === void 0 ? void 0 : nudge.isOpen) && (React.createElement("div", { className: 'clc-sxp-bottom-nudge', style: {
|
12478
12486
|
marginBottom: nudge === null || nudge === void 0 ? void 0 : nudge.marginBottom,
|
12479
12487
|
width: nudge === null || nudge === void 0 ? void 0 : nudge.size.width,
|
12480
12488
|
height: nudge === null || nudge === void 0 ? void 0 : nudge.size.height,
|
@@ -12482,14 +12490,14 @@ const Nudge = ({ nudge }) => {
|
|
12482
12490
|
borderRadius: nudge === null || nudge === void 0 ? void 0 : nudge.borderRadius
|
12483
12491
|
} },
|
12484
12492
|
(nudge === null || nudge === void 0 ? void 0 : nudge.icon) ? React.createElement("img", { src: nudge.icon, style: { height: '100%', objectFit: 'cover' } }) : null,
|
12485
|
-
React.createElement("p", { style: Object.assign({}, nudge === null || nudge === void 0 ? void 0 : nudge.textStyle) }, nudge === null || nudge === void 0 ? void 0 : nudge.content)));
|
12493
|
+
React.createElement("p", { style: Object.assign({}, nudge === null || nudge === void 0 ? void 0 : nudge.textStyle) }, nudge === null || nudge === void 0 ? void 0 : nudge.content)))));
|
12486
12494
|
};
|
12487
12495
|
|
12488
12496
|
/*
|
12489
12497
|
* @Author: binruan@chatlabs.com
|
12490
12498
|
* @Date: 2024-01-15 19:03:09
|
12491
12499
|
* @LastEditors: binruan@chatlabs.com
|
12492
|
-
* @LastEditTime: 2024-04-
|
12500
|
+
* @LastEditTime: 2024-04-15 16:41:07
|
12493
12501
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
|
12494
12502
|
*
|
12495
12503
|
*/
|
@@ -12655,12 +12663,12 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.inner
|
|
12655
12663
|
return (React.createElement(PictureGroup$1, { key: rec.video.itemId, imgUrls: rec.video.imgUrls, width: containerWidth, height: height, rec: rec, index: index, onReportViewImageEnd: handleReportViewImageEnd, onViewImageStartEvent: handleViewImageStartEvent }));
|
12656
12664
|
}
|
12657
12665
|
if (rec.product && Array.isArray(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) && ((_c = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _c === void 0 ? void 0 : _c.length) > 0) {
|
12658
|
-
return (_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _d === void 0 ? void 0 : _d.map((value,
|
12666
|
+
return (_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _d === void 0 ? void 0 : _d.map((value, idx) => {
|
12659
12667
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
12660
12668
|
const t = resolver[(_a = value === null || value === void 0 ? void 0 : value.item) === null || _a === void 0 ? void 0 : _a.type];
|
12661
12669
|
const Component = withBindDataSource(t);
|
12662
12670
|
const defaulSetting = (_b = t === null || t === void 0 ? void 0 : t.extend) === null || _b === void 0 ? void 0 : _b.defaulSetting;
|
12663
|
-
return (React.createElement(Component, Object.assign({ key: index
|
12671
|
+
return (React.createElement(Component, Object.assign({ key: `${index}${idx}`, textStyle: Object.assign(Object.assign({}, defaulSetting === null || defaulSetting === void 0 ? void 0 : defaulSetting.textStyle), (_c = value === null || value === void 0 ? void 0 : value.item) === null || _c === void 0 ? void 0 : _c.textStyle), bindDatas: (_e = (_d = value === null || value === void 0 ? void 0 : value.item) === null || _d === void 0 ? void 0 : _d.bindDatas) !== null && _e !== void 0 ? _e : [] }, defaulSetting === null || defaulSetting === void 0 ? void 0 : defaulSetting.props, (_f = value === null || value === void 0 ? void 0 : value.item) === null || _f === void 0 ? void 0 : _f.props, { event: ((_g = value === null || value === void 0 ? void 0 : value.item) === null || _g === void 0 ? void 0 : _g.event) || {}, schema: schema, id: value === null || value === void 0 ? void 0 : value.id, viewTime: viewTime.current, rec: rec, isPost: true, tipText: tipText, style: Object.assign(Object.assign(Object.assign({}, defaulSetting === null || defaulSetting === void 0 ? void 0 : defaulSetting.style), (_h = value === null || value === void 0 ? void 0 : value.item) === null || _h === void 0 ? void 0 : _h.style), { height: '100%', overflow: 'auto' }), index: index })));
|
12664
12672
|
});
|
12665
12673
|
}
|
12666
12674
|
return null;
|
@@ -12674,11 +12682,11 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.inner
|
|
12674
12682
|
React.createElement(Nudge, { nudge: nudge }),
|
12675
12683
|
React.createElement("div", { className: 'clc-sxp-bottom-card' },
|
12676
12684
|
React.createElement(RenderCard$1, { rec: rec, index: index, tempMap: tempMap, resolver: resolver })),
|
12677
|
-
React.createElement(ExpandableText$1, { 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.video) === null || _b === void 0 ? void 0 : _b.title) !== null && _c !== void 0 ? _c : '', style: descStyle }),
|
12685
|
+
React.createElement(ExpandableText$1, { 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.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' }) }),
|
12678
12686
|
React.createElement(Hashtag$1, { index: activeIndex, 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.video) === null || _g === void 0 ? void 0 : _g.url) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle }))));
|
12679
12687
|
}
|
12680
12688
|
return null;
|
12681
|
-
}, [descStyle, activeIndex, tempMap, resolver, tipText, nudge, hashTagStyle]);
|
12689
|
+
}, [descStyle, activeIndex, tempMap, resolver, tipText, nudge, hashTagStyle, globalConfig]);
|
12682
12690
|
const renderLikeButton = React.useCallback((rec, index) => {
|
12683
12691
|
var _a, _b;
|
12684
12692
|
if (!(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowLike))
|