pb-sxp-ui 1.0.38 → 1.0.40
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 +38 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +38 -20
- 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 +38 -20
- 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/VideoWidget/index.js +26 -18
- package/es/core/components/SxpPageRender/index.js +6 -1
- package/lib/core/components/SxpPageRender/VideoWidget/index.js +26 -18
- package/lib/core/components/SxpPageRender/index.js +6 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
@@ -12039,6 +12039,7 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
12039
12039
|
}
|
12040
12040
|
}, [bffEventReport, data, index, isFirstPlay]);
|
12041
12041
|
const handleCanplay = React.useCallback(() => {
|
12042
|
+
handLoadeddata();
|
12042
12043
|
setIsLoadFinish(true);
|
12043
12044
|
}, []);
|
12044
12045
|
const handleClickVideo = React.useCallback((type) => () => {
|
@@ -12108,21 +12109,28 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
12108
12109
|
return ((_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.cover) || firstFrameSrc;
|
12109
12110
|
}, [firstFrameSrc, rec]);
|
12110
12111
|
const handLoadeddata = React.useCallback(() => {
|
12112
|
+
var _a;
|
12111
12113
|
const videoDomRef = document.getElementById(`${videoId}_html5_api`);
|
12112
|
-
if (!canvasRef || !videoDomRef || !canvasRef.current)
|
12114
|
+
if (((_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.cover) || !canvasRef || !videoDomRef || !canvasRef.current)
|
12113
12115
|
return;
|
12114
|
-
const
|
12115
|
-
|
12116
|
-
|
12117
|
-
|
12118
|
-
|
12119
|
-
|
12120
|
-
|
12121
|
-
|
12122
|
-
|
12116
|
+
const setFrameImg = () => {
|
12117
|
+
const video = videoDomRef;
|
12118
|
+
const canvas = canvasRef === null || canvasRef === void 0 ? void 0 : canvasRef.current;
|
12119
|
+
const ctx = canvas.getContext('2d');
|
12120
|
+
const targetWidth = window === null || window === void 0 ? void 0 : window.innerWidth;
|
12121
|
+
const targetHeight = window === null || window === void 0 ? void 0 : window.innerHeight;
|
12122
|
+
canvas.height = targetHeight;
|
12123
|
+
canvas.width = targetWidth;
|
12124
|
+
ctx === null || ctx === void 0 ? void 0 : ctx.drawImage(video, 0, 0, canvas.width, canvas.height);
|
12125
|
+
setFirstFrameSrc(canvas.toDataURL());
|
12126
|
+
};
|
12127
|
+
setFrameImg();
|
12128
|
+
setTimeout(() => {
|
12129
|
+
setFrameImg();
|
12130
|
+
}, 500);
|
12123
12131
|
}, []);
|
12124
12132
|
React.useEffect(() => {
|
12125
|
-
var _a, _b, _c, _d, _e
|
12133
|
+
var _a, _b, _c, _d, _e;
|
12126
12134
|
setIsPauseVideo(false);
|
12127
12135
|
const videoSrc = rec.video.url;
|
12128
12136
|
if (videoSrc && typeof TCPlayer === 'function') {
|
@@ -12141,21 +12149,23 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
12141
12149
|
posterImage: false,
|
12142
12150
|
bigPlayButton: true
|
12143
12151
|
});
|
12152
|
+
videoRef.current.play();
|
12153
|
+
videoRef.current.pause();
|
12144
12154
|
}
|
12145
12155
|
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.on('loadedmetadata', handleCanplay);
|
12146
12156
|
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.on('canplay', handleCanplay);
|
12147
12157
|
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.on('playing', handlePlaying);
|
12148
|
-
|
12149
|
-
(
|
12150
|
-
(
|
12158
|
+
// videoRef.current?.on('loadeddata', handLoadeddata);
|
12159
|
+
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.on('pause', handlePause);
|
12160
|
+
(_e = videoRef.current) === null || _e === void 0 ? void 0 : _e.on('ended', handleEnded);
|
12151
12161
|
return () => {
|
12152
|
-
var _a, _b, _c, _d, _e
|
12162
|
+
var _a, _b, _c, _d, _e;
|
12153
12163
|
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.off('loadedmetadata', handleCanplay);
|
12154
12164
|
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.off('canplay', handleCanplay);
|
12155
12165
|
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.off('playing', handlePlaying);
|
12156
|
-
|
12157
|
-
(
|
12158
|
-
(
|
12166
|
+
// videoRef.current?.off('loadeddata', handLoadeddata);
|
12167
|
+
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.off('pause', handlePause);
|
12168
|
+
(_e = videoRef.current) === null || _e === void 0 ? void 0 : _e.off('ended', handleEnded);
|
12159
12169
|
videoRef.current.dispose();
|
12160
12170
|
};
|
12161
12171
|
}, []);
|
@@ -12575,7 +12585,7 @@ const Nudge = ({ nudge }) => {
|
|
12575
12585
|
* @Author: binruan@chatlabs.com
|
12576
12586
|
* @Date: 2024-01-15 19:03:09
|
12577
12587
|
* @LastEditors: binruan@chatlabs.com
|
12578
|
-
* @LastEditTime: 2024-04-
|
12588
|
+
* @LastEditTime: 2024-04-25 17:03:41
|
12579
12589
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
|
12580
12590
|
*
|
12581
12591
|
*/
|
@@ -12936,7 +12946,12 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.inner
|
|
12936
12946
|
} })),
|
12937
12947
|
renderLogo,
|
12938
12948
|
isShowFingerTip ? React.createElement(FingerSwipeTip, { imageUrl: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.swipeTipIcon }) : null,
|
12939
|
-
React.createElement(Swiper, { ref: swiperRef,
|
12949
|
+
React.createElement(Swiper, { ref: swiperRef, onSlideChange: () => {
|
12950
|
+
swiperRef.current.swiper.allowTouchMove = false;
|
12951
|
+
setTimeout(() => {
|
12952
|
+
swiperRef.current.swiper.allowTouchMove = true;
|
12953
|
+
}, 500);
|
12954
|
+
}, onActiveIndexChange: (swiper) => {
|
12940
12955
|
setActiveIndex(swiper.activeIndex);
|
12941
12956
|
if (openHashtag)
|
12942
12957
|
return;
|
@@ -12953,6 +12968,9 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.inner
|
|
12953
12968
|
}
|
12954
12969
|
}
|
12955
12970
|
},
|
12971
|
+
// style={{
|
12972
|
+
// pointerEvents: canSwiper ? 'auto' : 'none'
|
12973
|
+
// }}
|
12956
12974
|
// onReachEnd={() => {
|
12957
12975
|
// // 由hashtaglist跳转过来时不执行下面的方法
|
12958
12976
|
// if (waterFallData) return;
|