pb-sxp-ui 1.6.2 → 1.6.4
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 +20 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +20 -17
- 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 +20 -17
- 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/Hashtag/index.d.ts +1 -0
- package/es/core/components/SxpPageRender/Hashtag/index.js +5 -3
- package/es/core/components/SxpPageRender/index.d.ts +1 -0
- package/es/core/components/SxpPageRender/index.js +10 -9
- package/es/materials/sxp/template/components/Scroll.d.ts +1 -0
- package/es/materials/sxp/template/components/Scroll.js +2 -2
- package/lib/core/components/SxpPageRender/Hashtag/index.d.ts +1 -0
- package/lib/core/components/SxpPageRender/Hashtag/index.js +5 -3
- package/lib/core/components/SxpPageRender/index.d.ts +1 -0
- package/lib/core/components/SxpPageRender/index.js +10 -9
- package/lib/materials/sxp/template/components/Scroll.d.ts +1 -0
- package/lib/materials/sxp/template/components/Scroll.js +2 -2
- package/package.json +1 -1
package/dist/pb-ui.js
CHANGED
@@ -9183,11 +9183,11 @@
|
|
9183
9183
|
* @Author: binruan@chatlabs.com
|
9184
9184
|
* @Date: 2024-03-20 10:27:32
|
9185
9185
|
* @LastEditors: binruan@chatlabs.com
|
9186
|
-
* @LastEditTime: 2024-
|
9186
|
+
* @LastEditTime: 2024-10-17 17:05:11
|
9187
9187
|
* @FilePath: \pb-sxp-ui\src\materials\sxp\template\components\Scroll.tsx
|
9188
9188
|
*
|
9189
9189
|
*/
|
9190
|
-
const Scroll = ({ children, isPadding = true, style, enableSlideActive = false }) => {
|
9190
|
+
const Scroll = ({ children, isPadding = true, style, enableSlideActive = false, width }) => {
|
9191
9191
|
const ref = React.useRef();
|
9192
9192
|
const { popupDetailData } = useSxpDataSource();
|
9193
9193
|
React.useEffect(() => {
|
@@ -9195,7 +9195,7 @@
|
|
9195
9195
|
if (enableSlideActive)
|
9196
9196
|
(_a = ref === null || ref === void 0 ? void 0 : ref.current) === null || _a === void 0 ? void 0 : _a.swiper.slideTo((_b = popupDetailData === null || popupDetailData === void 0 ? void 0 : popupDetailData.multiCheckIndex) !== null && _b !== void 0 ? _b : 0);
|
9197
9197
|
}, [popupDetailData, enableSlideActive]);
|
9198
|
-
return (React.createElement(Swiper, { ref: ref, direction: 'horizontal', slidesPerView: 'auto', freeMode: true, mousewheel: true, modules: [freeMode, Scrollbar, Mousewheel], style: Object.assign({ padding: isPadding ? '0 12px 0 20px' : 0 }, style) }, children));
|
9198
|
+
return (React.createElement(Swiper, { ref: ref, direction: 'horizontal', slidesPerView: 'auto', freeMode: true, mousewheel: true, modules: [freeMode, Scrollbar, Mousewheel], style: Object.assign(Object.assign({ padding: isPadding ? '0 12px 0 20px' : 0 }, style), (width && { width })) }, children));
|
9199
9199
|
};
|
9200
9200
|
var Scroll$1 = React.memo(Scroll);
|
9201
9201
|
|
@@ -16061,11 +16061,11 @@ Made in Italy` })));
|
|
16061
16061
|
* @Author: binruan@chatlabs.com
|
16062
16062
|
* @Date: 2024-01-15 19:03:09
|
16063
16063
|
* @LastEditors: binruan@chatlabs.com
|
16064
|
-
* @LastEditTime: 2024-10-
|
16064
|
+
* @LastEditTime: 2024-10-17 17:00:33
|
16065
16065
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\Hashtag\index.tsx
|
16066
16066
|
*
|
16067
16067
|
*/
|
16068
|
-
const Hashtag = ({ tags, itemId, itemType, index, rec, hashTagStyle }) => {
|
16068
|
+
const Hashtag = ({ tags, itemId, itemType, index, rec, hashTagStyle, hashTagRightMargin }) => {
|
16069
16069
|
var _a;
|
16070
16070
|
const [isShowMore, setIsShowMore] = React.useState(false);
|
16071
16071
|
const { setWaterFallData, setOpenHashtag, setCacheActiveIndex, waterFallData, setIsFromHashtag } = useSxpDataSource();
|
@@ -16098,8 +16098,10 @@ Made in Italy` })));
|
|
16098
16098
|
}
|
16099
16099
|
return (React.createElement("span", { style: { textDecoration: 'underline', cursor: 'pointer', color: '#fff' }, onClick: () => setIsShowMore(!isShowMore) }, isShowMore ? 'show less' : 'show more'));
|
16100
16100
|
}, [isShowMore, tags]);
|
16101
|
-
return (React.createElement("div", { className: 'clc-sxp-bottom-hashtag', style: {
|
16102
|
-
|
16101
|
+
return (React.createElement("div", { className: 'clc-sxp-bottom-hashtag', style: {
|
16102
|
+
marginTop: `${(_a = hashTagStyle === null || hashTagStyle === void 0 ? void 0 : hashTagStyle.marginTop) !== null && _a !== void 0 ? _a : 16}px`
|
16103
|
+
} },
|
16104
|
+
React.createElement(Scroll$1, { width: hashTagRightMargin }, tags === null || tags === void 0 ? void 0 : tags.map((item, index) => (React.createElement(SwiperSlide, { key: index, hidden: !isShowMore ? index >= 6 : false, className: 'clc-sxp-bottom-hashtag-item', style: hashTagStyle, onClick: () => handleClickTag(item), tag: 'button', "aria-label": item },
|
16103
16105
|
React.createElement("div", { dangerouslySetInnerHTML: { __html: setFontForText(`#${item}`, hashTagStyle) } })))))));
|
16104
16106
|
};
|
16105
16107
|
var Hashtag$1 = React.memo(Hashtag);
|
@@ -16310,12 +16312,12 @@ Made in Italy` })));
|
|
16310
16312
|
* @Author: binruan@chatlabs.com
|
16311
16313
|
* @Date: 2024-01-15 19:03:09
|
16312
16314
|
* @LastEditors: binruan@chatlabs.com
|
16313
|
-
* @LastEditTime: 2024-10-
|
16315
|
+
* @LastEditTime: 2024-10-17 17:16:42
|
16314
16316
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
|
16315
16317
|
*
|
16316
16318
|
*/
|
16317
|
-
const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.innerHeight, containerWidth = window.innerWidth, tempMap, resolver, data = [], ctaType, tipText, nudge, _schema, hashTagStyle, tagList = [], licenseUrl }) => {
|
16318
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v;
|
16319
|
+
const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.innerHeight, containerWidth = window.innerWidth, tempMap, resolver, data = [], ctaType, tipText, nudge, _schema, hashTagStyle, hashTagRightMargin, tagList = [], licenseUrl }) => {
|
16320
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w;
|
16319
16321
|
const mutedIcon = useIconLink('/pb_static/5beaaa5ce7f3477b99db3838619cc471.png');
|
16320
16322
|
const unmutedIcon = useIconLink('/pb_static/fea8668a8a894e4aa3a86bcc775e895e.png');
|
16321
16323
|
const { schema } = useEditor();
|
@@ -16471,10 +16473,10 @@ Made in Italy` })));
|
|
16471
16473
|
minusHeight += 56;
|
16472
16474
|
}
|
16473
16475
|
return minusHeight;
|
16474
|
-
}, []);
|
16476
|
+
}, [globalConfig]);
|
16475
16477
|
const height = React.useMemo(() => {
|
16476
16478
|
return containerHeight - minusHeight - tagHeight;
|
16477
|
-
}, [
|
16479
|
+
}, [minusHeight, containerHeight, tagHeight]);
|
16478
16480
|
const visList = React.useMemo(() => {
|
16479
16481
|
var _a;
|
16480
16482
|
const list = activeIndex === 0 && !waterFallData && !isEditor
|
@@ -16568,7 +16570,7 @@ Made in Italy` })));
|
|
16568
16570
|
React.createElement("div", null,
|
16569
16571
|
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: (_d = (_c = rec === null || rec === void 0 ? void 0 : rec.video) === null || _c === void 0 ? void 0 : _c.title) !== null && _d !== void 0 ? _d : '', 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 }),
|
16570
16572
|
React.createElement(RenderCard$1, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, includesCtaType: ['AniLink'], isActive: index === activeIndex }),
|
16571
|
-
React.createElement(Hashtag$1, { index: activeIndex, tags: (_f = (_e = rec === null || rec === void 0 ? void 0 : rec.video) === null || _e === void 0 ? void 0 : _e.hashTags) !== null && _f !== void 0 ? _f : [], itemId: (_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.itemId, itemType: ((_h = rec === null || rec === void 0 ? void 0 : rec.video) === null || _h === void 0 ? void 0 : _h.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle }))),
|
16573
|
+
React.createElement(Hashtag$1, { index: activeIndex, tags: (_f = (_e = rec === null || rec === void 0 ? void 0 : rec.video) === null || _e === void 0 ? void 0 : _e.hashTags) !== null && _f !== void 0 ? _f : [], itemId: (_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.itemId, itemType: ((_h = rec === null || rec === void 0 ? void 0 : rec.video) === null || _h === void 0 ? void 0 : _h.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle, hashTagRightMargin: containerWidth - (hashTagRightMargin !== null && hashTagRightMargin !== void 0 ? hashTagRightMargin : 0) }))),
|
16572
16574
|
React.createElement(RenderCard$1, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex })));
|
16573
16575
|
}
|
16574
16576
|
return null;
|
@@ -16811,14 +16813,15 @@ Made in Italy` })));
|
|
16811
16813
|
((_f = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.backButton) === null || _f === void 0 ? void 0 : _f.enable) && (React.createElement("button", { style: {
|
16812
16814
|
position: 'absolute',
|
16813
16815
|
[(_h = (_g = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.backButton) === null || _g === void 0 ? void 0 : _g.xPosit) !== null && _h !== void 0 ? _h : 'left']: (_k = (_j = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.backButton) === null || _j === void 0 ? void 0 : _j.x) !== null && _k !== void 0 ? _k : 0,
|
16814
|
-
[(_m = (_l = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.backButton) === null || _l === void 0 ? void 0 : _l.yPosit) !== null && _m !== void 0 ? _m : 'top']: (
|
16816
|
+
[(_m = (_l = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.backButton) === null || _l === void 0 ? void 0 : _l.yPosit) !== null && _m !== void 0 ? _m : 'top']: (((_o = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.backButton) === null || _o === void 0 ? void 0 : _o.yPosit) == 'top' ? minusHeight + tagHeight : 0) +
|
16817
|
+
((_q = (_p = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.backButton) === null || _p === void 0 ? void 0 : _p.y) !== null && _q !== void 0 ? _q : 0),
|
16815
16818
|
zIndex: 8,
|
16816
16819
|
border: 'none',
|
16817
16820
|
padding: 0,
|
16818
16821
|
background: 'transparent'
|
16819
16822
|
}, role: 'button', "aria-label": 'back button', onClick: () => history === null || history === void 0 ? void 0 : history.back() },
|
16820
|
-
React.createElement("img", { src: (
|
16821
|
-
isShowFingerTip ? (React.createElement(FingerSwipeTip, { imageUrl: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.swipeTipIcon, style: { top: `${50 - ((
|
16823
|
+
React.createElement("img", { src: (_s = (_r = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.backButton) === null || _r === void 0 ? void 0 : _r.icon) !== null && _s !== void 0 ? _s : img, alt: 'back button', width: 100, style: { objectFit: 'cover' } }))),
|
16824
|
+
isShowFingerTip ? (React.createElement(FingerSwipeTip, { imageUrl: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.swipeTipIcon, style: { top: `${50 - ((_t = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.swipeTipOffset) !== null && _t !== void 0 ? _t : 0)}%` }, duration: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.swiperTipAniDur })) : null,
|
16822
16825
|
React.createElement(Swiper, { style: {
|
16823
16826
|
marginTop: tagHeight
|
16824
16827
|
}, ref: swiperRef, onSlideChange: () => {
|
@@ -16850,7 +16853,7 @@ Made in Italy` })));
|
|
16850
16853
|
renderLikeButton(visList[activeIndex], activeIndex, !!(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.likeIconFixed)),
|
16851
16854
|
renderToggleButton(!!(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconFixed)),
|
16852
16855
|
renderView),
|
16853
|
-
React.createElement(WaterFall$1, Object.assign({}, (
|
16856
|
+
React.createElement(WaterFall$1, Object.assign({}, (_w = (_v = (_u = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.hashTag) === null || _u === void 0 ? void 0 : _u[0]) === null || _v === void 0 ? void 0 : _v.item) === null || _w === void 0 ? void 0 : _w.props))));
|
16854
16857
|
};
|
16855
16858
|
|
16856
16859
|
const PictureGroup = ({ imgUrls, width, height, imgUrlsPostConfig, rec, index }) => {
|