pb-sxp-ui 1.0.39 → 1.0.41
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 +454 -126
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +8 -1
- package/dist/index.js +453 -126
- 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 +457 -130
- 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/DiyPortalPreview/PictureGroup.d.ts +13 -0
- package/es/core/components/DiyPortalPreview/PictureGroup.js +11 -0
- package/es/core/components/DiyPortalPreview/VideoWidget.d.ts +15 -0
- package/es/core/components/DiyPortalPreview/VideoWidget.js +236 -0
- package/es/core/components/DiyPortalPreview/index.d.ts +6 -0
- package/es/core/components/DiyPortalPreview/index.js +112 -0
- package/es/core/components/SxpPageRender/PictureGroup/Picture.js +1 -0
- package/es/core/components/SxpPageRender/VideoWidget/index.js +46 -79
- package/es/core/components/SxpPageRender/WaterFall/index.js +1 -1
- package/es/core/components/SxpPageRender/index.js +7 -7
- package/es/core/context/SxpDataSourceProvider.js +1 -1
- package/es/core/hooks/useEventReport.js +4 -4
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/materials/sxp/popup/CommodityDetail/index.js +6 -6
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +9 -9
- package/lib/core/components/DiyPortalPreview/PictureGroup.d.ts +13 -0
- package/lib/core/components/DiyPortalPreview/PictureGroup.js +14 -0
- package/lib/core/components/DiyPortalPreview/VideoWidget.d.ts +15 -0
- package/lib/core/components/DiyPortalPreview/VideoWidget.js +239 -0
- package/lib/core/components/DiyPortalPreview/index.d.ts +6 -0
- package/lib/core/components/DiyPortalPreview/index.js +115 -0
- package/lib/core/components/SxpPageRender/PictureGroup/Picture.js +1 -0
- package/lib/core/components/SxpPageRender/VideoWidget/index.js +46 -79
- package/lib/core/components/SxpPageRender/WaterFall/index.js +1 -1
- package/lib/core/components/SxpPageRender/index.js +7 -7
- package/lib/core/context/SxpDataSourceProvider.js +1 -1
- package/lib/core/hooks/useEventReport.js +4 -4
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -1
- package/lib/materials/sxp/popup/CommodityDetail/index.js +6 -6
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +9 -9
- package/package.json +2 -1
@@ -0,0 +1,13 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { RecItemType } from '../SxpPageRender/typing';
|
3
|
+
import { postConfigType } from '../SxpPageRender';
|
4
|
+
interface IPictureGroupProps {
|
5
|
+
imgUrls?: string[];
|
6
|
+
width: number;
|
7
|
+
height: number;
|
8
|
+
rec: RecItemType;
|
9
|
+
index: number;
|
10
|
+
imgUrlsPostConfig?: postConfigType;
|
11
|
+
}
|
12
|
+
declare const _default: React.NamedExoticComponent<IPictureGroupProps>;
|
13
|
+
export default _default;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import React, { memo } from 'react';
|
2
|
+
import { Autoplay, Pagination } from 'swiper/modules';
|
3
|
+
import { Swiper, SwiperSlide } from 'swiper/react';
|
4
|
+
import Picture from '../SxpPageRender/PictureGroup/Picture';
|
5
|
+
const PictureGroup = ({ imgUrls, width, height, imgUrlsPostConfig, rec, index }) => {
|
6
|
+
return (React.createElement(Swiper, { defaultValue: 0, direction: 'horizontal', modules: [Pagination, Autoplay], pagination: { clickable: true, bulletActiveClass: 'swipe-item-active-bullet' }, height: height, style: { width }, loop: true, autoplay: false }, imgUrls === null || imgUrls === void 0 ? void 0 : imgUrls.map((url) => {
|
7
|
+
return (React.createElement(SwiperSlide, { key: url },
|
8
|
+
React.createElement(Picture, { src: url, height: height, imgUrlsPostConfig: imgUrlsPostConfig })));
|
9
|
+
})));
|
10
|
+
};
|
11
|
+
export default memo(PictureGroup);
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { RecItemType } from '../SxpPageRender/typing';
|
3
|
+
import { postConfigType } from '../SxpPageRender';
|
4
|
+
interface IVideoWidgetProps {
|
5
|
+
rec: RecItemType;
|
6
|
+
index: number;
|
7
|
+
height: number;
|
8
|
+
width: number;
|
9
|
+
data: RecItemType[];
|
10
|
+
muted: boolean;
|
11
|
+
activeIndex?: number;
|
12
|
+
videoPostConfig?: postConfigType;
|
13
|
+
}
|
14
|
+
declare const _default: React.NamedExoticComponent<IVideoWidgetProps>;
|
15
|
+
export default _default;
|
@@ -0,0 +1,236 @@
|
|
1
|
+
import React, { memo, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
2
|
+
import Hls from 'hls.js';
|
3
|
+
import { useIconLink } from '../SxpPageRender/useIconLink';
|
4
|
+
import FormatImage from '../SxpPageRender/FormatImage';
|
5
|
+
import { useSxpDataSource } from '../../../core/hooks';
|
6
|
+
const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostConfig, width }) => {
|
7
|
+
const [isPauseVideo, setIsPauseVideo] = useState(false);
|
8
|
+
const videoRef = useRef(null);
|
9
|
+
const { bffEventReport, sxpParameter, waterFallData, openHashtag } = useSxpDataSource();
|
10
|
+
const videoStartTime = useRef(0);
|
11
|
+
const [isLoadFinish, setIsLoadFinish] = useState(false);
|
12
|
+
const [isFirstPlay, setIsFirstPlay] = useState(true);
|
13
|
+
const canvasRef = useRef(null);
|
14
|
+
const [firstFrameSrc, setFirstFrameSrc] = useState('');
|
15
|
+
useEffect(() => {
|
16
|
+
if (!videoRef.current)
|
17
|
+
return;
|
18
|
+
videoRef.current.muted = muted;
|
19
|
+
}, [muted]);
|
20
|
+
const handleVideoStart = useCallback(() => {
|
21
|
+
var _a;
|
22
|
+
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.play();
|
23
|
+
}, []);
|
24
|
+
const PAUSE_ICON = useIconLink('/pb_static/06f28a2025c74c1cb49be6767316d827.png');
|
25
|
+
const handlePlaying = useCallback(() => {
|
26
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
27
|
+
setIsPauseVideo(false);
|
28
|
+
const item = data[index];
|
29
|
+
if (item && ((_a = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _a === void 0 ? void 0 : _a.duration)) {
|
30
|
+
videoStartTime.current = ((_b = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _b === void 0 ? void 0 : _b.currentTime) || 0;
|
31
|
+
const videoDuration = ((_d = (_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.duration) !== null && _d !== void 0 ? _d : 0).toFixed(2);
|
32
|
+
const videoCurrentTime = ((_f = (_e = videoRef.current) === null || _e === void 0 ? void 0 : _e.currentTime) !== null && _f !== void 0 ? _f : 0).toFixed(2);
|
33
|
+
const playType = isFirstPlay ? '0' : '1';
|
34
|
+
bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
|
35
|
+
eventInfo: {
|
36
|
+
eventSubject: 'playVideo',
|
37
|
+
eventDescription: 'User played the video',
|
38
|
+
contentId: (_h = (_g = item.video) === null || _g === void 0 ? void 0 : _g.itemId) !== null && _h !== void 0 ? _h : '',
|
39
|
+
contentName: (_k = (_j = item.video) === null || _j === void 0 ? void 0 : _j.title) !== null && _k !== void 0 ? _k : '',
|
40
|
+
playType,
|
41
|
+
startTime: videoCurrentTime,
|
42
|
+
videoDuration,
|
43
|
+
contentTags: JSON.stringify((_m = (_l = item.video) === null || _l === void 0 ? void 0 : _l.tags) !== null && _m !== void 0 ? _m : []),
|
44
|
+
position: index + '',
|
45
|
+
contentFormat: 'video',
|
46
|
+
traceInfo: (_o = item.video) === null || _o === void 0 ? void 0 : _o.traceInfo
|
47
|
+
}
|
48
|
+
});
|
49
|
+
setIsFirstPlay(false);
|
50
|
+
}
|
51
|
+
}, [bffEventReport, data, index, isFirstPlay]);
|
52
|
+
const handleLoadedMetadata = useCallback(() => {
|
53
|
+
setIsLoadFinish(true);
|
54
|
+
}, []);
|
55
|
+
const handleClickVideo = useCallback((type) => () => {
|
56
|
+
var _a, _b, _c, _d, _e;
|
57
|
+
if (!isLoadFinish)
|
58
|
+
return;
|
59
|
+
const isPause = (_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.paused;
|
60
|
+
switch (type) {
|
61
|
+
case 'start':
|
62
|
+
if (!isPause)
|
63
|
+
return;
|
64
|
+
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.play();
|
65
|
+
setIsPauseVideo(false);
|
66
|
+
break;
|
67
|
+
case 'pause':
|
68
|
+
if (isPause)
|
69
|
+
return;
|
70
|
+
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.pause();
|
71
|
+
setIsPauseVideo(true);
|
72
|
+
break;
|
73
|
+
default:
|
74
|
+
if (isPause) {
|
75
|
+
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.play();
|
76
|
+
}
|
77
|
+
else {
|
78
|
+
(_e = videoRef.current) === null || _e === void 0 ? void 0 : _e.pause();
|
79
|
+
}
|
80
|
+
setIsPauseVideo(!isPause);
|
81
|
+
break;
|
82
|
+
}
|
83
|
+
}, [isLoadFinish]);
|
84
|
+
const onPause = useCallback(() => {
|
85
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
86
|
+
const item = data[index];
|
87
|
+
const videoDuration = ((_b = (_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.duration) !== null && _b !== void 0 ? _b : 0).toFixed(2);
|
88
|
+
const videoCurrentTime = ((_d = (_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.currentTime) !== null && _d !== void 0 ? _d : 0).toFixed(2);
|
89
|
+
if ((_e = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _e === void 0 ? void 0 : _e.duration) {
|
90
|
+
const playDuration = (((_f = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _f === void 0 ? void 0 : _f.currentTime) - videoStartTime.current).toFixed(2);
|
91
|
+
bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
|
92
|
+
eventInfo: {
|
93
|
+
eventSubject: 'playOverVideo',
|
94
|
+
eventDescription: 'User finished playing the video',
|
95
|
+
contentId: (_h = (_g = item.video) === null || _g === void 0 ? void 0 : _g.itemId) !== null && _h !== void 0 ? _h : '',
|
96
|
+
contentName: (_k = (_j = item.video) === null || _j === void 0 ? void 0 : _j.title) !== null && _k !== void 0 ? _k : '',
|
97
|
+
endTime: videoCurrentTime,
|
98
|
+
videoDuration,
|
99
|
+
playDuration,
|
100
|
+
contentTags: JSON.stringify((_m = (_l = item.video) === null || _l === void 0 ? void 0 : _l.tags) !== null && _m !== void 0 ? _m : []),
|
101
|
+
position: index + '',
|
102
|
+
contentFormat: 'video',
|
103
|
+
traceInfo: (_o = item.video) === null || _o === void 0 ? void 0 : _o.traceInfo
|
104
|
+
}
|
105
|
+
});
|
106
|
+
}
|
107
|
+
}, [data, index, bffEventReport]);
|
108
|
+
const blur = useMemo(() => {
|
109
|
+
return (videoPostConfig === null || videoPostConfig === void 0 ? void 0 : videoPostConfig.mode) === '2';
|
110
|
+
}, [videoPostConfig]);
|
111
|
+
const translateY = useMemo(() => {
|
112
|
+
var _a;
|
113
|
+
return (videoPostConfig === null || videoPostConfig === void 0 ? void 0 : videoPostConfig.mode) === '2'
|
114
|
+
? `translateY(-${50 + ((_a = videoPostConfig === null || videoPostConfig === void 0 ? void 0 : videoPostConfig.offsetTop) !== null && _a !== void 0 ? _a : 0)}%) translate3d(0px, 0px, 0px)`
|
115
|
+
: 'translateY(-50%)';
|
116
|
+
}, [videoPostConfig]);
|
117
|
+
const blurBgSrc = useMemo(() => {
|
118
|
+
var _a;
|
119
|
+
return ((_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.cover) || firstFrameSrc;
|
120
|
+
}, [firstFrameSrc, rec]);
|
121
|
+
const handLoadeddata = useCallback(() => {
|
122
|
+
if (!canvasRef || !videoRef || !videoRef.current || !canvasRef.current)
|
123
|
+
return;
|
124
|
+
const video = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current;
|
125
|
+
const canvas = canvasRef === null || canvasRef === void 0 ? void 0 : canvasRef.current;
|
126
|
+
const ctx = canvas.getContext('2d');
|
127
|
+
const targetWidth = window === null || window === void 0 ? void 0 : window.innerWidth;
|
128
|
+
const targetHeight = window === null || window === void 0 ? void 0 : window.innerHeight;
|
129
|
+
canvas.height = targetHeight;
|
130
|
+
canvas.width = targetWidth;
|
131
|
+
ctx === null || ctx === void 0 ? void 0 : ctx.drawImage(video, 0, 0, canvas.width, canvas.height);
|
132
|
+
setFirstFrameSrc(canvas.toDataURL());
|
133
|
+
}, []);
|
134
|
+
useEffect(() => {
|
135
|
+
var _a, _b, _c, _d;
|
136
|
+
if (!videoRef.current)
|
137
|
+
return;
|
138
|
+
setIsPauseVideo(false);
|
139
|
+
if (!videoRef.current.src) {
|
140
|
+
const videoSrc = rec.video.url;
|
141
|
+
if (videoSrc.includes('.m3u8')) {
|
142
|
+
if (Hls.isSupported()) {
|
143
|
+
const hls = new Hls();
|
144
|
+
hls.loadSource(videoSrc);
|
145
|
+
hls.attachMedia(videoRef.current);
|
146
|
+
}
|
147
|
+
else if (videoRef.current.canPlayType('application/vnd.apple.mpegurl')) {
|
148
|
+
videoRef.current.src = videoSrc;
|
149
|
+
}
|
150
|
+
else {
|
151
|
+
videoRef.current.src = videoSrc;
|
152
|
+
}
|
153
|
+
}
|
154
|
+
else {
|
155
|
+
videoRef.current.src = videoSrc;
|
156
|
+
}
|
157
|
+
videoRef.current.setAttribute('x5-playsinline', 'true');
|
158
|
+
videoRef.current.setAttribute('webkit-playsinline', 'true');
|
159
|
+
}
|
160
|
+
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.addEventListener('loadedmetadata', handleLoadedMetadata);
|
161
|
+
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.addEventListener('canplay', handleLoadedMetadata);
|
162
|
+
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.addEventListener('playing', handlePlaying);
|
163
|
+
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.addEventListener('loadeddata', handLoadeddata);
|
164
|
+
return () => {
|
165
|
+
var _a, _b, _c, _d;
|
166
|
+
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.removeEventListener('loadedmetadata', handleLoadedMetadata);
|
167
|
+
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.removeEventListener('canplay', handleLoadedMetadata);
|
168
|
+
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.removeEventListener('playing', handlePlaying);
|
169
|
+
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.removeEventListener('loadeddata', handLoadeddata);
|
170
|
+
};
|
171
|
+
}, [handleLoadedMetadata, handlePlaying, rec.video, handLoadeddata]);
|
172
|
+
const renderPoster = useMemo(() => {
|
173
|
+
if (!(sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.placeholder_image) || isLoadFinish) {
|
174
|
+
return null;
|
175
|
+
}
|
176
|
+
return (React.createElement("img", { style: { position: 'absolute', left: 0, top: 0, width: '100%', height: '100%', objectFit: 'cover' }, src: sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.placeholder_image }));
|
177
|
+
}, [isLoadFinish, sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.placeholder_image]);
|
178
|
+
useEffect(() => {
|
179
|
+
const handleBeforeUnload = () => {
|
180
|
+
var _a, _b;
|
181
|
+
if (activeIndex === index && ((_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.url) && ((_b = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _b === void 0 ? void 0 : _b.src) && !isPauseVideo) {
|
182
|
+
handleClickVideo('pause')();
|
183
|
+
}
|
184
|
+
};
|
185
|
+
window.addEventListener('beforeunload', handleBeforeUnload);
|
186
|
+
return () => {
|
187
|
+
window.removeEventListener('beforeunload', handleBeforeUnload);
|
188
|
+
};
|
189
|
+
}, [activeIndex, index, rec, videoRef, handleClickVideo, isPauseVideo]);
|
190
|
+
const blurStyle = useMemo(() => {
|
191
|
+
return blur
|
192
|
+
? {
|
193
|
+
filter: 'blur(10px)',
|
194
|
+
transform: 'translate3d(0px, 0px, 0px) scale(1.2)'
|
195
|
+
}
|
196
|
+
: {};
|
197
|
+
}, [blur]);
|
198
|
+
if (!rec.video) {
|
199
|
+
return null;
|
200
|
+
}
|
201
|
+
return (React.createElement(React.Fragment, null, blur ? (React.createElement("div", { className: 'video-container', key: rec.video.itemId, onClick: handleClickVideo(), style: {
|
202
|
+
position: 'relative',
|
203
|
+
width,
|
204
|
+
height,
|
205
|
+
overflow: 'hidden'
|
206
|
+
} },
|
207
|
+
React.createElement(FormatImage, { src: blurBgSrc, style: Object.assign({ height,
|
208
|
+
width, objectFit: 'cover' }, blurStyle) }),
|
209
|
+
React.createElement("canvas", { ref: canvasRef, style: { display: 'none' } }),
|
210
|
+
React.createElement("div", { style: {
|
211
|
+
position: 'absolute',
|
212
|
+
width,
|
213
|
+
height,
|
214
|
+
top: '50%',
|
215
|
+
transform: translateY,
|
216
|
+
left: 0,
|
217
|
+
right: 0
|
218
|
+
} },
|
219
|
+
React.createElement("div", { style: { position: 'relative', width, height: '100%' } },
|
220
|
+
React.createElement("video", { id: `pb-video-${index}`, className: 'clc-pb-video', ref: videoRef, crossOrigin: 'anonymous', muted: true, controls: false, playsInline: true, preload: 'auto', onPause: onPause, onEnded: handleVideoStart, style: {
|
221
|
+
width: '100%',
|
222
|
+
height,
|
223
|
+
objectFit: 'contain'
|
224
|
+
} }),
|
225
|
+
React.createElement("img", { hidden: !isPauseVideo, className: 'clc-pb-video-pause', src: PAUSE_ICON }))),
|
226
|
+
renderPoster)) : (React.createElement("div", { className: 'video-container', key: rec.video.itemId, onClick: handleClickVideo(), style: {
|
227
|
+
position: 'relative',
|
228
|
+
width,
|
229
|
+
height,
|
230
|
+
overflow: 'hidden'
|
231
|
+
} },
|
232
|
+
React.createElement("video", { id: `pb-video-${index}`, className: 'clc-pb-video', ref: videoRef, crossOrigin: 'anonymous', muted: true, controls: false, playsInline: true, preload: 'auto', onPause: onPause, onEnded: handleVideoStart }),
|
233
|
+
renderPoster,
|
234
|
+
React.createElement("img", { hidden: !isPauseVideo, className: 'clc-pb-video-pause', src: PAUSE_ICON })))));
|
235
|
+
};
|
236
|
+
export default memo(VideoWidget);
|
@@ -0,0 +1,112 @@
|
|
1
|
+
import React, { memo, useMemo } from 'react';
|
2
|
+
import Nudge from '../SxpPageRender/Nudge';
|
3
|
+
import RenderCard from '../SxpPageRender/RenderCard';
|
4
|
+
import ExpandableText from '../SxpPageRender/ExpandableText';
|
5
|
+
import Hashtag from '../SxpPageRender/Hashtag';
|
6
|
+
import LikeButton from '../SxpPageRender/LikeButton';
|
7
|
+
import ToggleButton from '../SxpPageRender/ToggleButton';
|
8
|
+
import { useIconLink } from '../SxpPageRender/useIconLink';
|
9
|
+
import PictureGroup from './PictureGroup';
|
10
|
+
import VideoWidget from './VideoWidget';
|
11
|
+
import * as _materials_ from '../../../materials';
|
12
|
+
import withBindDataSource from '../../../core/hoc/withBindDataSource';
|
13
|
+
const RESOLVER = {};
|
14
|
+
Object.values(_materials_).forEach((v) => {
|
15
|
+
RESOLVER[v.extend.type] = v;
|
16
|
+
});
|
17
|
+
const defaultUnLikeIconPath = '/pb_static/f71266d2c64446c5ae6a5a7f5489cc0a.png';
|
18
|
+
const defaultLikeIconPath = '/pb_static/f07900fe3f0f4ae188ea1611d4801a44.png';
|
19
|
+
const DiyPortalPreview = ({ data, globalConfig, tipText, nudge, tempMap, descStyle, hashTagStyle, containerHeight = 664, containerWidth = 375, appDomain }) => {
|
20
|
+
const height = useMemo(() => {
|
21
|
+
return (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.logoUrl) && (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowLogo) ? containerHeight - 45 : containerHeight;
|
22
|
+
}, [globalConfig, containerHeight]);
|
23
|
+
const renderContent = (rec, index) => {
|
24
|
+
var _a, _b, _c, _d;
|
25
|
+
if ((_a = rec.video) === null || _a === void 0 ? void 0 : _a.url) {
|
26
|
+
return (React.createElement(VideoWidget, { rec: rec, index: index, muted: true, width: containerWidth, data: data !== null && data !== void 0 ? data : [], height: height, activeIndex: index, videoPostConfig: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.videoPost }));
|
27
|
+
}
|
28
|
+
if ((_b = rec.video) === null || _b === void 0 ? void 0 : _b.imgUrls) {
|
29
|
+
return (React.createElement(PictureGroup, { key: rec.video.itemId, imgUrls: rec.video.imgUrls, width: containerWidth, height: height, rec: rec, index: index, imgUrlsPostConfig: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.imgUrlsPost }));
|
30
|
+
}
|
31
|
+
if (rec.product) {
|
32
|
+
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) {
|
33
|
+
return (_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _d === void 0 ? void 0 : _d.map((value, idx) => {
|
34
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
35
|
+
const t = RESOLVER[(_a = value === null || value === void 0 ? void 0 : value.item) === null || _a === void 0 ? void 0 : _a.type];
|
36
|
+
const Component = withBindDataSource(t);
|
37
|
+
const defaulSetting = (_b = t === null || t === void 0 ? void 0 : t.extend) === null || _b === void 0 ? void 0 : _b.defaulSetting;
|
38
|
+
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) || {}, id: value === null || value === void 0 ? void 0 : value.id, 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), { width: containerWidth, height, overflow: 'auto' }), index: index })));
|
39
|
+
});
|
40
|
+
}
|
41
|
+
}
|
42
|
+
};
|
43
|
+
const renderLogo = useMemo(() => {
|
44
|
+
if ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.logoUrl) && (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowLogo)) {
|
45
|
+
return (React.createElement("div", { className: 'clc-sxp-logo-banner', style: { backgroundColor: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.color } },
|
46
|
+
React.createElement("img", { src: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.logoUrl, alt: 'logo' })));
|
47
|
+
}
|
48
|
+
return null;
|
49
|
+
}, [globalConfig]);
|
50
|
+
const renderBottom = (rec, index) => {
|
51
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
52
|
+
if (rec.video) {
|
53
|
+
return (React.createElement(React.Fragment, null,
|
54
|
+
((_a = rec.video) === null || _a === void 0 ? void 0 : _a.title) && React.createElement("div", { className: 'clc-sxp-bottom-shadow' }),
|
55
|
+
React.createElement("div", { className: 'clc-sxp-bottom' },
|
56
|
+
React.createElement(Nudge, { nudge: nudge }),
|
57
|
+
React.createElement("div", { className: 'clc-sxp-bottom-card' },
|
58
|
+
React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER })),
|
59
|
+
React.createElement("div", null,
|
60
|
+
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.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' }) })),
|
61
|
+
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.video) === null || _g === void 0 ? void 0 : _g.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle }))));
|
62
|
+
}
|
63
|
+
return null;
|
64
|
+
};
|
65
|
+
const likeIcon = useIconLink(defaultLikeIconPath, appDomain);
|
66
|
+
const unlikeIcon = useIconLink(defaultUnLikeIconPath, appDomain);
|
67
|
+
const renderLikeButton = (rec, index) => {
|
68
|
+
var _a, _b, _c, _d;
|
69
|
+
if (!(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowLike))
|
70
|
+
return;
|
71
|
+
let top = (_a = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.likeIconY) !== null && _a !== void 0 ? _a : 400;
|
72
|
+
if (top < 40) {
|
73
|
+
top += 40;
|
74
|
+
}
|
75
|
+
if (rec.video) {
|
76
|
+
return (React.createElement(LikeButton, { key: rec.position, activeIcon: (_b = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.likeIcon) !== null && _b !== void 0 ? _b : likeIcon, unActicveIcon: (_c = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.unlikeIcon) !== null && _c !== void 0 ? _c : unlikeIcon, position: index, active: rec.isCollected, recData: rec, className: 'clc-sxp-like-button', style: {
|
77
|
+
top,
|
78
|
+
right: (_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.likeIconX) !== null && _d !== void 0 ? _d : 0
|
79
|
+
} }));
|
80
|
+
}
|
81
|
+
return null;
|
82
|
+
};
|
83
|
+
const mutedIcon = useIconLink('/pb_static/5beaaa5ce7f3477b99db3838619cc471.png', appDomain);
|
84
|
+
const unmutedIcon = useIconLink('/pb_static/fea8668a8a894e4aa3a86bcc775e895e.png', appDomain);
|
85
|
+
const renderView = (rec, index) => {
|
86
|
+
var _a, _b, _c, _d;
|
87
|
+
return (React.createElement("div", { style: { position: 'relative' } },
|
88
|
+
renderLogo,
|
89
|
+
React.createElement(ToggleButton, { style: {
|
90
|
+
position: 'absolute',
|
91
|
+
right: (_a = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconX) !== null && _a !== void 0 ? _a : 0,
|
92
|
+
visibility: ((_c = (_b = data === null || data === void 0 ? void 0 : data[index]) === null || _b === void 0 ? void 0 : _b.video) === null || _c === void 0 ? void 0 : _c.url) ? 'visible' : 'hidden',
|
93
|
+
bottom: (_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconY) !== null && _d !== void 0 ? _d : 23,
|
94
|
+
zIndex: 999
|
95
|
+
}, defaultValue: true, activeIcon: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.unMuteIcon) ? globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.unMuteIcon : mutedIcon, unactiveIcon: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIcon) ? globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIcon : unmutedIcon }),
|
96
|
+
renderContent(rec, index),
|
97
|
+
renderBottom(rec, index),
|
98
|
+
renderLikeButton(rec, index)));
|
99
|
+
};
|
100
|
+
return (React.createElement("div", { style: {
|
101
|
+
width: '100%',
|
102
|
+
height: containerHeight,
|
103
|
+
display: 'flex',
|
104
|
+
boxSizing: 'border-box',
|
105
|
+
gap: 16,
|
106
|
+
pointerEvents: 'none',
|
107
|
+
userSelect: 'none'
|
108
|
+
} }, data === null || data === void 0 ? void 0 : data.map((rec, index) => {
|
109
|
+
return renderView(rec, index);
|
110
|
+
})));
|
111
|
+
};
|
112
|
+
export default memo(DiyPortalPreview);
|
@@ -28,6 +28,7 @@ const Picture = (props) => {
|
|
28
28
|
React.createElement(FormatImage, { src: src, style: Object.assign({ height: '100%', width: '100%', objectFit: 'cover' }, blurStyle) }),
|
29
29
|
blur && (React.createElement(FormatImage, { src: src, style: {
|
30
30
|
width: '100%',
|
31
|
+
height: '100%',
|
31
32
|
objectFit: 'contain',
|
32
33
|
position: 'absolute',
|
33
34
|
top: '50%',
|
@@ -14,13 +14,12 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
14
14
|
const { isActive } = useSwiperSlide();
|
15
15
|
const canvasRef = useRef(null);
|
16
16
|
const [firstFrameSrc, setFirstFrameSrc] = useState('');
|
17
|
-
const videoId = `pb-video-${index}`;
|
18
17
|
useEffect(() => {
|
19
18
|
if (!videoRef.current)
|
20
19
|
return;
|
21
|
-
videoRef.current.muted
|
20
|
+
videoRef.current.muted = muted;
|
22
21
|
}, [muted]);
|
23
|
-
const
|
22
|
+
const handleVideoStart = useCallback(() => {
|
24
23
|
var _a;
|
25
24
|
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.play();
|
26
25
|
}, []);
|
@@ -29,10 +28,10 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
29
28
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
30
29
|
setIsPauseVideo(false);
|
31
30
|
const item = data[index];
|
32
|
-
if (item && ((_a = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _a === void 0 ? void 0 : _a.duration
|
33
|
-
videoStartTime.current = ((_b = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _b === void 0 ? void 0 : _b.currentTime
|
34
|
-
const videoDuration = ((_d = (_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.duration
|
35
|
-
const videoCurrentTime = ((_f = (_e = videoRef.current) === null || _e === void 0 ? void 0 : _e.currentTime
|
31
|
+
if (item && ((_a = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _a === void 0 ? void 0 : _a.duration)) {
|
32
|
+
videoStartTime.current = ((_b = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _b === void 0 ? void 0 : _b.currentTime) || 0;
|
33
|
+
const videoDuration = ((_d = (_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.duration) !== null && _d !== void 0 ? _d : 0).toFixed(2);
|
34
|
+
const videoCurrentTime = ((_f = (_e = videoRef.current) === null || _e === void 0 ? void 0 : _e.currentTime) !== null && _f !== void 0 ? _f : 0).toFixed(2);
|
36
35
|
const playType = isFirstPlay ? '0' : '1';
|
37
36
|
bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
|
38
37
|
eventInfo: {
|
@@ -52,15 +51,14 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
52
51
|
setIsFirstPlay(false);
|
53
52
|
}
|
54
53
|
}, [bffEventReport, data, index, isFirstPlay]);
|
55
|
-
const
|
56
|
-
handLoadeddata();
|
54
|
+
const handleLoadedMetadata = useCallback(() => {
|
57
55
|
setIsLoadFinish(true);
|
58
56
|
}, []);
|
59
57
|
const handleClickVideo = useCallback((type) => () => {
|
60
58
|
var _a, _b, _c, _d, _e;
|
61
59
|
if (!isLoadFinish)
|
62
60
|
return;
|
63
|
-
const isPause = (_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.paused
|
61
|
+
const isPause = (_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.paused;
|
64
62
|
switch (type) {
|
65
63
|
case 'start':
|
66
64
|
if (!isPause)
|
@@ -85,13 +83,13 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
85
83
|
break;
|
86
84
|
}
|
87
85
|
}, [isLoadFinish]);
|
88
|
-
const
|
86
|
+
const onPause = useCallback(() => {
|
89
87
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
90
88
|
const item = data[index];
|
91
|
-
const videoDuration = ((_b = (_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.duration
|
92
|
-
const videoCurrentTime = ((_d = (_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.currentTime
|
93
|
-
if ((_e = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _e === void 0 ? void 0 : _e.duration
|
94
|
-
const playDuration = (((_f = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _f === void 0 ? void 0 : _f.currentTime
|
89
|
+
const videoDuration = ((_b = (_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.duration) !== null && _b !== void 0 ? _b : 0).toFixed(2);
|
90
|
+
const videoCurrentTime = ((_d = (_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.currentTime) !== null && _d !== void 0 ? _d : 0).toFixed(2);
|
91
|
+
if ((_e = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _e === void 0 ? void 0 : _e.duration) {
|
92
|
+
const playDuration = (((_f = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _f === void 0 ? void 0 : _f.currentTime) - videoStartTime.current).toFixed(2);
|
95
93
|
bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
|
96
94
|
eventInfo: {
|
97
95
|
eventSubject: 'playOverVideo',
|
@@ -123,64 +121,41 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
123
121
|
return ((_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.cover) || firstFrameSrc;
|
124
122
|
}, [firstFrameSrc, rec]);
|
125
123
|
const handLoadeddata = useCallback(() => {
|
126
|
-
|
127
|
-
const videoDomRef = document.getElementById(`${videoId}_html5_api`);
|
128
|
-
if (((_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.cover) || !canvasRef || !videoDomRef || !canvasRef.current)
|
124
|
+
if (!canvasRef || !videoRef || !videoRef.current || !canvasRef.current)
|
129
125
|
return;
|
130
|
-
const
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
setFirstFrameSrc(canvas.toDataURL());
|
140
|
-
};
|
141
|
-
setFrameImg();
|
142
|
-
setTimeout(() => {
|
143
|
-
setFrameImg();
|
144
|
-
}, 500);
|
126
|
+
const video = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current;
|
127
|
+
const canvas = canvasRef === null || canvasRef === void 0 ? void 0 : canvasRef.current;
|
128
|
+
const ctx = canvas.getContext('2d');
|
129
|
+
const targetWidth = window === null || window === void 0 ? void 0 : window.innerWidth;
|
130
|
+
const targetHeight = window === null || window === void 0 ? void 0 : window.innerHeight;
|
131
|
+
canvas.height = targetHeight;
|
132
|
+
canvas.width = targetWidth;
|
133
|
+
ctx === null || ctx === void 0 ? void 0 : ctx.drawImage(video, 0, 0, canvas.width, canvas.height);
|
134
|
+
setFirstFrameSrc(canvas.toDataURL());
|
145
135
|
}, []);
|
146
136
|
useEffect(() => {
|
147
|
-
var _a, _b, _c, _d
|
137
|
+
var _a, _b, _c, _d;
|
138
|
+
if (!videoRef.current)
|
139
|
+
return;
|
148
140
|
setIsPauseVideo(false);
|
149
|
-
|
150
|
-
|
151
|
-
videoRef.current =
|
152
|
-
|
153
|
-
|
154
|
-
src: videoSrc
|
155
|
-
}
|
156
|
-
],
|
157
|
-
licenseUrl: 'https://license.vod2.myqcloud.com/license/v2/1325816236_1/v_cube.license',
|
158
|
-
controls: false,
|
159
|
-
autoplay: false,
|
160
|
-
loop: false,
|
161
|
-
muted: true,
|
162
|
-
preload: 'auto',
|
163
|
-
posterImage: false,
|
164
|
-
bigPlayButton: true
|
165
|
-
});
|
166
|
-
videoRef.current.play();
|
167
|
-
videoRef.current.pause();
|
141
|
+
if (!videoRef.current.src) {
|
142
|
+
const videoSrc = rec.video.url;
|
143
|
+
videoRef.current.src = videoSrc;
|
144
|
+
videoRef.current.setAttribute('x5-playsinline', 'true');
|
145
|
+
videoRef.current.setAttribute('webkit-playsinline', 'true');
|
168
146
|
}
|
169
|
-
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.
|
170
|
-
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.
|
171
|
-
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.
|
172
|
-
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.
|
173
|
-
(_e = videoRef.current) === null || _e === void 0 ? void 0 : _e.on('ended', handleEnded);
|
147
|
+
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.addEventListener('loadedmetadata', handleLoadedMetadata);
|
148
|
+
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.addEventListener('canplay', handleLoadedMetadata);
|
149
|
+
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.addEventListener('playing', handlePlaying);
|
150
|
+
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.addEventListener('loadeddata', handLoadeddata);
|
174
151
|
return () => {
|
175
|
-
var _a, _b, _c, _d
|
176
|
-
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.
|
177
|
-
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.
|
178
|
-
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.
|
179
|
-
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.
|
180
|
-
(_e = videoRef.current) === null || _e === void 0 ? void 0 : _e.off('ended', handleEnded);
|
181
|
-
videoRef.current.dispose();
|
152
|
+
var _a, _b, _c, _d;
|
153
|
+
(_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.removeEventListener('loadedmetadata', handleLoadedMetadata);
|
154
|
+
(_b = videoRef.current) === null || _b === void 0 ? void 0 : _b.removeEventListener('canplay', handleLoadedMetadata);
|
155
|
+
(_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.removeEventListener('playing', handlePlaying);
|
156
|
+
(_d = videoRef.current) === null || _d === void 0 ? void 0 : _d.removeEventListener('loadeddata', handLoadeddata);
|
182
157
|
};
|
183
|
-
}, []);
|
158
|
+
}, [handleLoadedMetadata, handlePlaying, rec.video, handLoadeddata]);
|
184
159
|
useEffect(() => {
|
185
160
|
var _a;
|
186
161
|
if (!(videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) || !isLoadFinish)
|
@@ -263,27 +238,19 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
263
238
|
right: 0
|
264
239
|
} },
|
265
240
|
React.createElement("div", { style: { position: 'relative', width: '100%', height: '100%' } },
|
266
|
-
React.createElement("video", { id: `pb-video-${index}`,
|
241
|
+
React.createElement("video", { id: `pb-video-${index}`, className: 'clc-pb-video', ref: videoRef, crossOrigin: 'anonymous', muted: true, controls: false, playsInline: true, preload: 'auto', onPause: onPause, onEnded: handleVideoStart, style: {
|
267
242
|
width: '100%',
|
268
243
|
height: '100%',
|
269
|
-
objectFit: 'contain'
|
270
|
-
backgroundColor: 'transparent',
|
271
|
-
pointerEvents: 'none'
|
244
|
+
objectFit: 'contain'
|
272
245
|
} }),
|
273
246
|
React.createElement("img", { hidden: !isPauseVideo, className: 'clc-pb-video-pause', src: PAUSE_ICON }))),
|
274
|
-
renderPoster)) : (React.createElement("div", { className: 'video-container', key: rec.video.itemId, style: {
|
247
|
+
renderPoster)) : (React.createElement("div", { className: 'video-container', key: rec.video.itemId, onClick: handleClickVideo(), style: {
|
275
248
|
position: 'relative',
|
276
249
|
width: '100%',
|
277
250
|
height,
|
278
251
|
overflow: 'hidden'
|
279
|
-
}
|
280
|
-
React.createElement("video", { id: `pb-video-${index}`,
|
281
|
-
backgroundColor: 'transparent',
|
282
|
-
width: '100%',
|
283
|
-
height: '100%',
|
284
|
-
objectFit: 'cover',
|
285
|
-
pointerEvents: 'none'
|
286
|
-
} }),
|
252
|
+
} },
|
253
|
+
React.createElement("video", { id: `pb-video-${index}`, className: 'clc-pb-video', ref: videoRef, crossOrigin: 'anonymous', muted: true, controls: false, playsInline: true, preload: 'auto', onPause: onPause, onEnded: handleVideoStart }),
|
287
254
|
renderPoster,
|
288
255
|
React.createElement("img", { hidden: !isPauseVideo, className: 'clc-pb-video-pause', src: PAUSE_ICON })))));
|
289
256
|
};
|
@@ -63,7 +63,7 @@ const WaterFall = (props) => {
|
|
63
63
|
}
|
64
64
|
bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
|
65
65
|
eventInfo: {
|
66
|
-
|
66
|
+
contentId: (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.itemId,
|
67
67
|
position: cacheActiveIndex + '',
|
68
68
|
contentTags: JSON.stringify((_e = rec === null || rec === void 0 ? void 0 : rec.video) === null || _e === void 0 ? void 0 : _e.tags),
|
69
69
|
traceInfo: (_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.traceInfo,
|