pb-sxp-ui 1.15.15-alpha.2 → 1.15.16-alpha.2

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.
Files changed (51) hide show
  1. package/dist/index.cjs +146 -785
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.js +145 -783
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.cjs +6 -6
  6. package/dist/index.min.cjs.map +1 -1
  7. package/dist/index.min.js +6 -6
  8. package/dist/index.min.js.map +1 -1
  9. package/dist/pb-ui.js +146 -785
  10. package/dist/pb-ui.js.map +1 -1
  11. package/dist/pb-ui.min.js +6 -6
  12. package/dist/pb-ui.min.js.map +1 -1
  13. package/es/core/components/SxpPageCore/index.d.ts +0 -1
  14. package/es/core/components/SxpPageCore/index.js +7 -7
  15. package/es/core/components/SxpPageRender/ExpandableText.js +2 -10
  16. package/es/core/components/SxpPageRender/RenderCard.js +4 -4
  17. package/es/core/context/EditorContext.js +1 -1
  18. package/es/core/context/SxpDataSourceProvider.d.ts +1 -1
  19. package/es/core/context/SxpDataSourceProvider.js +58 -32
  20. package/es/index.d.ts +0 -1
  21. package/es/index.js +0 -1
  22. package/es/materials/sxp/template/MultiCommodity/index.js +1 -1
  23. package/es/materials/sxp/template/MultiCommodityDiro/index.js +1 -2
  24. package/es/materials/sxp/template/MultiCommodityDiroNew/index.js +1 -2
  25. package/es/materials/sxp/template/components/EventProvider.js +2 -2
  26. package/lib/core/components/SxpPageCore/index.d.ts +0 -1
  27. package/lib/core/components/SxpPageCore/index.js +7 -7
  28. package/lib/core/components/SxpPageRender/ExpandableText.js +2 -10
  29. package/lib/core/components/SxpPageRender/RenderCard.js +4 -4
  30. package/lib/core/context/EditorContext.js +1 -1
  31. package/lib/core/context/SxpDataSourceProvider.d.ts +1 -1
  32. package/lib/core/context/SxpDataSourceProvider.js +58 -32
  33. package/lib/index.d.ts +0 -1
  34. package/lib/index.js +1 -3
  35. package/lib/materials/sxp/template/MultiCommodity/index.js +1 -1
  36. package/lib/materials/sxp/template/MultiCommodityDiro/index.js +1 -2
  37. package/lib/materials/sxp/template/MultiCommodityDiroNew/index.js +1 -2
  38. package/lib/materials/sxp/template/components/EventProvider.js +2 -2
  39. package/package.json +1 -1
  40. package/es/core/components/DiyStoryPreview/PictureGroup.d.ts +0 -16
  41. package/es/core/components/DiyStoryPreview/PictureGroup.js +0 -34
  42. package/es/core/components/DiyStoryPreview/VideoWidget.d.ts +0 -27
  43. package/es/core/components/DiyStoryPreview/VideoWidget.js +0 -195
  44. package/es/core/components/DiyStoryPreview/index.d.ts +0 -51
  45. package/es/core/components/DiyStoryPreview/index.js +0 -411
  46. package/lib/core/components/DiyStoryPreview/PictureGroup.d.ts +0 -16
  47. package/lib/core/components/DiyStoryPreview/PictureGroup.js +0 -37
  48. package/lib/core/components/DiyStoryPreview/VideoWidget.d.ts +0 -27
  49. package/lib/core/components/DiyStoryPreview/VideoWidget.js +0 -198
  50. package/lib/core/components/DiyStoryPreview/index.d.ts +0 -51
  51. package/lib/core/components/DiyStoryPreview/index.js +0 -414
@@ -1,51 +0,0 @@
1
- import React from 'react';
2
- import { ISxpPageRenderProps } from '../SxpPageRender';
3
- import '../SxpPageRender/index.less';
4
- export interface IScene {
5
- blueprintStep: number;
6
- endTime: number;
7
- itemId: string;
8
- mediaFileNo: string;
9
- mediaUrl: string;
10
- position: number;
11
- postId: string;
12
- sceneId: string;
13
- sceneInfo: string;
14
- sceneTag: string;
15
- startTime: number;
16
- traceInfo: string;
17
- bindProducts?: any[];
18
- title?: string;
19
- }
20
- export type ScenesType = IScene[];
21
- export type DiyStoryPreviewType = ISxpPageRenderProps & {
22
- appDomain?: string;
23
- scenes?: ScenesType;
24
- activeIndex?: number;
25
- onActiveChange?: (v: number) => void;
26
- loopPlay?: boolean;
27
- pointerEvents?: any;
28
- onUpdateTimeLine: (index: number, curTime: number) => void;
29
- onPlay: (index: number, curTime: number) => void;
30
- onPause: () => void;
31
- disabledListener?: boolean;
32
- };
33
- export interface IDiyStoryPreviewRef {
34
- play: () => void;
35
- pause: () => void;
36
- slideTo: (n: number) => void;
37
- isPlaying: () => boolean;
38
- }
39
- declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<ISxpPageRenderProps & {
40
- appDomain?: string | undefined;
41
- scenes?: ScenesType | undefined;
42
- activeIndex?: number | undefined;
43
- onActiveChange?: ((v: number) => void) | undefined;
44
- loopPlay?: boolean | undefined;
45
- pointerEvents?: any;
46
- onUpdateTimeLine: (index: number, curTime: number) => void;
47
- onPlay: (index: number, curTime: number) => void;
48
- onPause: () => void;
49
- disabledListener?: boolean | undefined;
50
- } & React.RefAttributes<IDiyStoryPreviewRef>>>;
51
- export default _default;
@@ -1,411 +0,0 @@
1
- import React, { forwardRef, memo, useCallback, useEffect, useImperativeHandle, useMemo, useRef, useState } from 'react';
2
- import { Swiper, SwiperSlide } from 'swiper/react';
3
- import { cloneDeep, debounce } from 'lodash';
4
- import RenderCard from '../SxpPageRender/RenderCard';
5
- import ExpandableText from '../SxpPageRender/ExpandableText';
6
- import LikeButton from '../SxpPageRender/LikeButton';
7
- import { useIconLink } from '../SxpPageRender/useIconLink';
8
- import ToggleButton from '../SxpPageRender/ToggleButton';
9
- import PictureGroup from './PictureGroup';
10
- import VideoWidget from './VideoWidget';
11
- import * as _materials_ from '../../../materials';
12
- import '../SxpPageRender/index.less';
13
- const recData = {
14
- position: 0,
15
- isCollected: false,
16
- product: null,
17
- video: {
18
- appId: null,
19
- itemId: 'VIDEOSsRgI1695278974368',
20
- title: '8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片8张尺寸不一样的图片',
21
- enTitle: null,
22
- icon: null,
23
- cover: 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20231017/fsJFWmW1dGyW7XmDspbJPTn5esL3U1697538777398.png',
24
- link: null,
25
- linkTitle: null,
26
- linkType: null,
27
- menuCategoryId: null,
28
- remark: null,
29
- tags: [
30
- 'Gift-Giving',
31
- 'Daily Wear',
32
- 'Business Formal',
33
- 'Sports/Casual',
34
- 'Anniversary Gifts',
35
- 'Wedding/Engagement',
36
- 'Formal Dinner/Party'
37
- ],
38
- traceInfo: ':VIDEO:VIDEOSsRgI1695278974368:regular:1:VPRHSkRS1697701789894:main::0:EXPMW20250305155940:COMBTh20250305160047:',
39
- value: 385,
40
- weight: null,
41
- bindCta: null,
42
- bindProduct: null,
43
- bindProducts: [
44
- {
45
- appId: 'wx448578f8851f3dce',
46
- itemId: 'test02178888',
47
- title: 'christian dior小包包 新CDN',
48
- enTitle: null,
49
- icon: null,
50
- cover: 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20240913/fs2jqiurjftpoaba67iiwr9jt5sc31726213277754.avif',
51
- link: '/pages/details/index?spu_id=1702262707659534338',
52
- linkTitle: '',
53
- linkType: 'MP',
54
- menuCategoryId: null,
55
- remark: null,
56
- tags: [],
57
- traceInfo: ':PRODUCT:test02178888:regular:1:VPRHSkRS1697701789894:main::0:EXPMW20250305155940:COMBTh20250305160047:',
58
- value: null,
59
- weight: null,
60
- bindCta: {
61
- appId: 'wx448578f8851f3dce',
62
- itemId: 'CTA3KofE1716186622249',
63
- title: 'SHOP NOW 立即购买',
64
- enTitle: 'BUY NOW立即购买,选择你所喜爱的;',
65
- icon: 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20240520/fssfxbmiwghixmgblz9uriwennd2r1716186615574.avif',
66
- cover: null,
67
- link: '/pages/details/index?spu_id=1702262707659534338',
68
- linkTitle: '',
69
- linkType: 'MP',
70
- menuCategoryId: '64b60b202caf0e1c1ce1e17d',
71
- remark: null,
72
- tags: [
73
- "Woman's Perfumes",
74
- 'Plates & Bowls',
75
- 'Glasses',
76
- 'Multicolor',
77
- 'Carafes',
78
- 'Tea & Coffee',
79
- 'Green',
80
- 'Grey',
81
- 'Cutlery'
82
- ],
83
- traceInfo: ':CTA:CTA3KofE1716186622249:regular:1:VPRHSkRS1697701789894:main::0:EXPMW20250305155940:COMBTh20250305160047:',
84
- value: null,
85
- weight: null
86
- },
87
- collection: 'Ricco',
88
- currency: 'INR-₹',
89
- homePage: [
90
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20240913/fs2jqiurjftpoaba67iiwr9jt5sc31726213277754.avif',
91
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20240913/fsr9ttuzuljs85smqi6lsidovnyoy1726213285994.avif',
92
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20240913/fsknmfhx2lxukxews05guwwxr8rju1726213281108.avif',
93
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20240913/fs0acnua4f1clamdpwdsrh0v5dgc61726213289247.avif'
94
- ],
95
- info: 'test',
96
- price: 53200,
97
- shippingInfo: null,
98
- taxInfo: null
99
- },
100
- {
101
- appId: null,
102
- itemId: '113J631A0684_C520',
103
- title: 'Sweatshirt à capuche Dior Oblique, coupe relax',
104
- enTitle: null,
105
- icon: null,
106
- cover: 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20241115/fsaf0xq8vx8gkkl30y1h1swpinmbt1731661943891.avif',
107
- link: 'https://www.dior.com/fr_fr/fashion/products/113J631A0684_C520',
108
- linkTitle: null,
109
- linkType: 'WEB',
110
- menuCategoryId: null,
111
- remark: null,
112
- tags: [],
113
- traceInfo: ':PRODUCT:113J631A0684_C520:regular:1:VPRHSkRS1697701789894:main::0:EXPMW20250305155940:COMBTh20250305160047:',
114
- value: null,
115
- weight: null,
116
- bindCta: {
117
- appId: null,
118
- itemId: 'CTAAfaKf1730796437032',
119
- title: 'test',
120
- enTitle: 'test',
121
- icon: 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20241105/fsjblxoud2tmehpiqqomh0oktwqrd1730796431496.avif',
122
- cover: null,
123
- link: null,
124
- linkTitle: null,
125
- linkType: null,
126
- menuCategoryId: '64b60b202caf0e1c1ce1e17d',
127
- remark: '',
128
- tags: [],
129
- traceInfo: ':CTA:CTAAfaKf1730796437032:regular:1:VPRHSkRS1697701789894:main::0:EXPMW20250305155940:COMBTh20250305160047:',
130
- value: null,
131
- weight: null
132
- },
133
- collection: 'Jacquard de coton éponge bleu',
134
- currency: 'EUR-€',
135
- homePage: [
136
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20241115/fsaf0xq8vx8gkkl30y1h1swpinmbt1731661943891.avif',
137
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20241115/fszxkdcjfjql2oiy90ffbal5tsfd81731661964913.avif',
138
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20241115/fs1jhd9jwxvfqmrbjwy5abfzb0fde1731661994996.avif'
139
- ],
140
- info: "Le sweatshirt à capuche bleu met à l'honneur l'emblématique motif dior oblique. Confectionné en jacquard de coton éponge bleu, il présente une coupe relax très confortable. Doté de poches latérales fendues, ce sweatshirt à capuche s'associera à tous vos jeans ou pantalons de survêtement pour un look décontracté.. Sweatshirt à capuche dior oblique, coupe relax Jacquard de coton éponge bleu",
141
- price: 1800,
142
- shippingInfo: null,
143
- taxInfo: null
144
- },
145
- {
146
- appId: null,
147
- itemId: 'S5573CRIW_M928',
148
- title: 'Mini Dior Book Tote',
149
- enTitle: null,
150
- icon: null,
151
- cover: 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20250213/fsvewk9etrawxrzznmvvewgt1bctu1739415576729.avif',
152
- link: 'https://www.dior.com/en_gb/fashion/products/S5573CRIW_M928',
153
- linkTitle: null,
154
- linkType: 'WEB',
155
- menuCategoryId: null,
156
- remark: null,
157
- tags: ['ダイヤモンド'],
158
- traceInfo: ':PRODUCT:S5573CRIW_M928:regular:1:VPRHSkRS1697701789894:main::0:EXPMW20250305155940:COMBTh20250305160047:',
159
- value: null,
160
- weight: null,
161
- bindCta: null,
162
- collection: null,
163
- currency: 'GBP-£',
164
- homePage: [
165
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20250213/fsvewk9etrawxrzznmvvewgt1bctu1739415576729.avif',
166
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20250213/fsngtlvhid7xwt5if0viw7vqanm831739415582147.avif',
167
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20250213/fs4hotdvyzjtnqb9vszlynuzplddc1739415586910.avif',
168
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20250213/fswffx9kwexf3z3vcnxisut1qxtez1739415591629.avif',
169
- 'https://graff-cdn.chatlabs.net/dev/img/8922b5b8-a954-4a61-9ffc-80edebdf02b4/sxp-portal/20250213/fsbfsi7tttx1hnzldoiw7eoea7fvh1739415597388.avif'
170
- ],
171
- info: "The Dior Book Tote is a House classic and original design by Maria Grazia Chiuri, Creative Director of Christian Dior. The style is fully embroidered with the House's hallmark blue Dior Oblique motif and showcases the Christian Dior Paris signature. Exemplifying House savoir-faire, the miniature style features an adjustable and removable strap that allows it to be carried by hand, worn over the shoulder or crossbody.",
172
- price: 1950,
173
- shippingInfo: null,
174
- taxInfo: null
175
- }
176
- ],
177
- url: null,
178
- blockCta: 1,
179
- blockProduct: 1,
180
- hashTags: [
181
- 'Sports/Casual',
182
- 'Formal Dinner/Party',
183
- 'Business Formal',
184
- 'Wedding/Engagement',
185
- 'Gift-Giving',
186
- 'Daily Wear',
187
- 'Anniversary Gifts'
188
- ]
189
- }
190
- };
191
- const RESOLVER = {};
192
- Object.values(_materials_).forEach((v) => {
193
- RESOLVER[v.extend.type] = v;
194
- });
195
- const defaultUnLikeIconPath = '/pb_static/f71266d2c64446c5ae6a5a7f5489cc0a.png';
196
- const defaultLikeIconPath = '/pb_static/f07900fe3f0f4ae188ea1611d4801a44.png';
197
- const DiyStoryPreview = forwardRef(({ data = [], globalConfig, tipText, nudge, tempMap, descStyle, hashTagStyle, containerHeight = 664, containerWidth = 375, appDomain, tagList = [], scenes, onActiveChange, activeIndex, loopPlay = false, pointerEvents = 'none', onUpdateTimeLine, disabledListener, onPlay, onPause }, ref) => {
198
- const videoWidgetRef = useRef(null);
199
- const swiperRef = useRef(null);
200
- const [curIndex, setCurIndex] = useState(0);
201
- const height = useMemo(() => {
202
- let minusHeight = 0;
203
- if ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.logoUrl) && (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowLogo)) {
204
- minusHeight += 45;
205
- }
206
- if (tagList.length > 0) {
207
- minusHeight += 45;
208
- }
209
- return containerHeight - minusHeight;
210
- }, [globalConfig, containerHeight, tagList]);
211
- useImperativeHandle(ref, () => {
212
- return {
213
- play() {
214
- var _a;
215
- (_a = videoWidgetRef === null || videoWidgetRef === void 0 ? void 0 : videoWidgetRef.current) === null || _a === void 0 ? void 0 : _a.play();
216
- },
217
- pause() {
218
- var _a;
219
- (_a = videoWidgetRef === null || videoWidgetRef === void 0 ? void 0 : videoWidgetRef.current) === null || _a === void 0 ? void 0 : _a.pause();
220
- },
221
- slideTo(n) {
222
- var _a, _b;
223
- if (!(swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current))
224
- return;
225
- (_b = (_a = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _a === void 0 ? void 0 : _a.swiper) === null || _b === void 0 ? void 0 : _b.slideTo(n);
226
- },
227
- isPlaying() {
228
- var _a, _b;
229
- return (_b = (_a = videoWidgetRef === null || videoWidgetRef === void 0 ? void 0 : videoWidgetRef.current) === null || _a === void 0 ? void 0 : _a.isPlaying()) !== null && _b !== void 0 ? _b : false;
230
- }
231
- };
232
- });
233
- const isVideoUrl = (url) => {
234
- if (url && url !== '' && typeof url === 'string') {
235
- const imageExtensions = ['.mp4', '.m3u8'];
236
- const lowerCaseUrl = url === null || url === void 0 ? void 0 : url.toLowerCase();
237
- return imageExtensions.some((ext) => lowerCaseUrl === null || lowerCaseUrl === void 0 ? void 0 : lowerCaseUrl.endsWith(ext));
238
- }
239
- else {
240
- return false;
241
- }
242
- };
243
- const renderContent = (rec, index) => {
244
- const isVideo = isVideoUrl(rec === null || rec === void 0 ? void 0 : rec.mediaUrl);
245
- if (isVideo) {
246
- return (React.createElement(VideoWidget, Object.assign({ key: index }, (curIndex === index && { ref: videoWidgetRef }), { rec: rec, index: index, muted: true, width: containerWidth, data: scenes !== null && scenes !== void 0 ? scenes : [], height: containerHeight, activeIndex: index, videoPostConfig: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.videoPost, videoPlayIcon: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.videoPlayIcon, swiperRef: swiperRef, loopPlay: loopPlay, onUpdateTimeLine: onUpdateTimeLine, onPlay: onPlay, onPause: onPause })));
247
- }
248
- else {
249
- return (React.createElement(PictureGroup, { key: rec.itemId, imgUrls: [rec === null || rec === void 0 ? void 0 : rec.mediaUrl], width: containerWidth, height: containerHeight, rec: rec, index: index, imgUrlsPostConfig: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.imgUrlsPost, data: scenes !== null && scenes !== void 0 ? scenes : [], swiperRef: swiperRef }));
250
- }
251
- };
252
- const renderLogo = useMemo(() => {
253
- if ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.logoUrl) && (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowLogo)) {
254
- return (React.createElement("div", { className: 'clc-sxp-logo-banner', style: { backgroundColor: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.color } },
255
- React.createElement("img", { src: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.logoUrl, alt: 'logo' })));
256
- }
257
- return null;
258
- }, [globalConfig]);
259
- const renderBottom = (rec, index) => {
260
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
261
- if (rec === null || rec === void 0 ? void 0 : rec.video) {
262
- let cta = null;
263
- 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) {
264
- cta = '多商品CTA';
265
- }
266
- else if ((_c = rec === null || rec === void 0 ? void 0 : rec.video) === null || _c === void 0 ? void 0 : _c.bindProduct) {
267
- cta = '商品CTA';
268
- }
269
- else {
270
- 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;
271
- }
272
- const value = tempMap === null || tempMap === void 0 ? void 0 : tempMap[cta];
273
- return (React.createElement(React.Fragment, null,
274
- ((_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.title) && (React.createElement("div", { style: {
275
- background: 'repeating-linear-gradient(0deg, rgba(26, 26, 25, 0.7), hsla(0, 0%, 100%, 0))',
276
- height: '130px',
277
- position: 'absolute',
278
- bottom: 0,
279
- width: '100%',
280
- willChange: 'transform',
281
- zIndex: 2,
282
- pointerEvents
283
- } })),
284
- React.createElement("div", { style: {
285
- marginBottom: `${(_g = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.bottomInfoDist) !== null && _g !== void 0 ? _g : 40}px`,
286
- zIndex: 999,
287
- position: 'absolute',
288
- bottom: 0,
289
- left: 0,
290
- right: 0,
291
- paddingTop: '20px'
292
- } },
293
- (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) === undefined || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) ? (React.createElement("div", { style: {} },
294
- React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, isActive: index === activeIndex, value: value }))) : null,
295
- React.createElement("div", null,
296
- 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' }) }),
297
- React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLink'], isActive: index === activeIndex, value: value }))),
298
- React.createElement(RenderCard, { rec: rec, index: index, tempMap: tempMap, resolver: RESOLVER, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex, value: value })));
299
- }
300
- return null;
301
- };
302
- const likeIcon = useIconLink(defaultLikeIconPath, appDomain);
303
- const unlikeIcon = useIconLink(defaultUnLikeIconPath, appDomain);
304
- const renderLikeButton = (rec, index) => {
305
- var _a, _b, _c, _d;
306
- if (!(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowLike))
307
- return null;
308
- let top = (_a = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.likeIconY) !== null && _a !== void 0 ? _a : 400;
309
- if (top < 40) {
310
- top += 40;
311
- }
312
- if (rec === null || rec === void 0 ? void 0 : rec.video) {
313
- 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, style: {
314
- top,
315
- right: (_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.likeIconX) !== null && _d !== void 0 ? _d : 0,
316
- position: 'absolute',
317
- zIndex: 999,
318
- backgroundColor: 'transparent',
319
- width: '50px',
320
- height: '50px',
321
- outline: 'none',
322
- border: 'none',
323
- boxSizing: 'content-box',
324
- padding: 0,
325
- transform: 'translate3d(0px, 0px, 0px)'
326
- } }));
327
- }
328
- return null;
329
- };
330
- const mutedIcon = useIconLink('/pb_static/5beaaa5ce7f3477b99db3838619cc471.png', appDomain);
331
- const unmutedIcon = useIconLink('/pb_static/fea8668a8a894e4aa3a86bcc775e895e.png', appDomain);
332
- const renderToggleButton = (visible) => {
333
- var _a, _b, _c, _d;
334
- if (!visible)
335
- return null;
336
- let top = (_a = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconY) !== null && _a !== void 0 ? _a : 23;
337
- if ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconYPosit) === 'top') {
338
- top += 45;
339
- }
340
- return (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowMute) === undefined || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowMute) === true ? (React.createElement(ToggleButton, { style: {
341
- position: 'absolute',
342
- visibility: 'visible',
343
- zIndex: 999,
344
- transform: 'translate3d(0px,0px,0px)',
345
- [(_b = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconXPosit) !== null && _b !== void 0 ? _b : 'right']: (_c = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconX) !== null && _c !== void 0 ? _c : 0,
346
- [(_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconYPosit) !== null && _d !== void 0 ? _d : 'bottom']: top,
347
- backgroundColor: 'transparent',
348
- width: '50px',
349
- height: '50px',
350
- outline: 'none',
351
- border: 'none',
352
- boxSizing: 'content-box',
353
- padding: 0
354
- }, 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 })) : null;
355
- };
356
- const renderView = (item, index) => {
357
- var _a, _b, _c, _d;
358
- const rec = cloneDeep(recData);
359
- rec.video.bindProducts = item === null || item === void 0 ? void 0 : item.bindProducts;
360
- rec.video.title = (item === null || item === void 0 ? void 0 : item.title) || '';
361
- return (React.createElement("div", { style: { position: 'relative' } },
362
- React.createElement(SwiperSlide, { key: index, virtualIndex: index, style: { overflow: 'hidden', position: 'relative' } },
363
- renderBottom(rec, index),
364
- renderLikeButton(rec, index),
365
- renderToggleButton(!(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconFixed)),
366
- React.createElement(ToggleButton, { style: {
367
- position: 'absolute',
368
- right: (_a = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconX) !== null && _a !== void 0 ? _a : 0,
369
- 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',
370
- bottom: (_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.muteIconY) !== null && _d !== void 0 ? _d : 23,
371
- zIndex: 999
372
- }, 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 }),
373
- renderContent(item, index))));
374
- };
375
- useEffect(() => {
376
- var _a, _b;
377
- if (!(swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current))
378
- return;
379
- (_b = (_a = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _a === void 0 ? void 0 : _a.swiper) === null || _b === void 0 ? void 0 : _b.slideTo(activeIndex);
380
- }, [activeIndex]);
381
- const handleSessionExpire = useCallback(debounce(() => {
382
- var _a;
383
- (_a = videoWidgetRef.current) === null || _a === void 0 ? void 0 : _a.setLoopPlay(false);
384
- }, 1000), []);
385
- useEffect(() => {
386
- if (disabledListener)
387
- return;
388
- const events = ['touchstart', 'touchcancel'];
389
- events.forEach((event) => {
390
- window.addEventListener(event, handleSessionExpire);
391
- });
392
- return () => {
393
- events.forEach((event) => {
394
- window.removeEventListener(event, handleSessionExpire);
395
- });
396
- };
397
- }, [handleSessionExpire, disabledListener]);
398
- return (React.createElement("div", { id: 'sxp-render', style: { height: containerHeight, position: 'relative', pointerEvents } },
399
- React.createElement(Swiper, { ref: swiperRef, allowTouchMove: pointerEvents !== 'none', onSlideChange: () => {
400
- swiperRef.current.swiper.allowTouchMove = false;
401
- setTimeout(() => {
402
- swiperRef.current.swiper.allowTouchMove = true;
403
- }, 500);
404
- }, onActiveIndexChange: (swiper) => {
405
- setCurIndex(swiper === null || swiper === void 0 ? void 0 : swiper.activeIndex);
406
- onActiveChange === null || onActiveChange === void 0 ? void 0 : onActiveChange(swiper.activeIndex);
407
- }, direction: 'vertical', style: { overflow: 'hidden', height: containerHeight }, height: containerHeight }, scenes === null || scenes === void 0 ? void 0 : scenes.map((rec, index) => {
408
- return renderView(rec, index);
409
- }))));
410
- });
411
- export default memo(DiyStoryPreview);
@@ -1,16 +0,0 @@
1
- import React from 'react';
2
- import { postConfigType } from '../SxpPageRender';
3
- import { IScene, ScenesType } from '.';
4
- interface IPictureGroupProps {
5
- imgUrls?: string[];
6
- width: number;
7
- height: number;
8
- rec: IScene;
9
- index: number;
10
- imgUrlsPostConfig?: postConfigType;
11
- swiperRef?: any;
12
- data?: ScenesType;
13
- loopPlay?: boolean;
14
- }
15
- declare const _default: React.NamedExoticComponent<IPictureGroupProps>;
16
- export default _default;
@@ -1,37 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- const react_1 = tslib_1.__importStar(require("react"));
5
- const modules_1 = require("swiper/modules");
6
- const react_2 = require("swiper/react");
7
- const Picture_1 = tslib_1.__importDefault(require("../SxpPageRender/PictureGroup/Picture"));
8
- const PictureGroup = ({ imgUrls, width, height, imgUrlsPostConfig, rec, index, swiperRef, data = [], loopPlay }) => {
9
- const { isActive } = (0, react_2.useSwiperSlide)();
10
- const [isload, setIsLoad] = (0, react_1.useState)(false);
11
- (0, react_1.useEffect)(() => {
12
- if (isActive && isload && loopPlay) {
13
- setTimeout(() => {
14
- var _a, _b, _c, _d;
15
- if (index === (data === null || data === void 0 ? void 0 : data.length) - 1) {
16
- (_a = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _a === void 0 ? void 0 : _a.swiper.slideTo(0);
17
- }
18
- else {
19
- const i = (_c = (_b = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _b === void 0 ? void 0 : _b.swiper) === null || _c === void 0 ? void 0 : _c.activeIndex;
20
- (_d = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _d === void 0 ? void 0 : _d.swiper.slideTo(i + 1);
21
- }
22
- }, 3000);
23
- }
24
- }, [isActive, isload, data, index, swiperRef, loopPlay]);
25
- const loadFinishImage = () => {
26
- setIsLoad(true);
27
- };
28
- return (react_1.default.createElement(react_2.Swiper, { defaultValue: 0, direction: 'horizontal', modules: [modules_1.Pagination, modules_1.Autoplay], pagination: {
29
- clickable: true,
30
- bulletActiveClass: 'swipe-item-active-bullet',
31
- bulletElement: 'button'
32
- }, height: height, style: { width }, loop: true, autoplay: false }, imgUrls === null || imgUrls === void 0 ? void 0 : imgUrls.map((url) => {
33
- return (react_1.default.createElement(react_2.SwiperSlide, { key: url },
34
- react_1.default.createElement(Picture_1.default, { src: url, height: height, imgUrlsPostConfig: imgUrlsPostConfig, onShowFirstImage: loadFinishImage })));
35
- })));
36
- };
37
- exports.default = (0, react_1.memo)(PictureGroup);
@@ -1,27 +0,0 @@
1
- import React from 'react';
2
- import { postConfigType } from '../SxpPageRender';
3
- import { IScene, ScenesType } from '.';
4
- interface IVideoWidgetProps {
5
- rec: IScene;
6
- index: number;
7
- height: number;
8
- width: number;
9
- data: ScenesType;
10
- muted: boolean;
11
- activeIndex?: number;
12
- videoPostConfig?: postConfigType;
13
- swiperRef?: any;
14
- videoPlayIcon?: string;
15
- onUpdateTimeLine?: (index: number, v: number) => void;
16
- loopPlay: any;
17
- onPlay?: (index: number, v: number) => void;
18
- onPause?: () => void;
19
- }
20
- export interface IVideoWidgetRef {
21
- play: () => void;
22
- pause: () => void;
23
- setLoopPlay: (v: boolean) => void;
24
- isPlaying: () => boolean;
25
- }
26
- declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<IVideoWidgetProps & React.RefAttributes<IVideoWidgetRef>>>;
27
- export default _default;