@cntrl-site/sdk-nextjs 1.9.11 → 1.9.12

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 (130) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +4 -4
  3. package/TODO.md +1 -1
  4. package/eslint.config.mjs +35 -35
  5. package/jest.config.js +6 -6
  6. package/lib/common/useItemFXData.js +7 -7
  7. package/lib/components/Article.js +5 -5
  8. package/lib/components/LayoutStyle.js +4 -4
  9. package/lib/components/Section/Section.js +27 -27
  10. package/lib/components/items/CodeEmbedItem/CodeEmbedItem.js +36 -36
  11. package/lib/components/items/ComponentItem/ComponentItem.js +13 -13
  12. package/lib/components/items/CompoundItem/CompoundChild.js +20 -20
  13. package/lib/components/items/CompoundItem/CompoundItem.js +14 -14
  14. package/lib/components/items/CustomItem/CustomItem.js +9 -9
  15. package/lib/components/items/EmbedVideoItem/VimeoEmbed.js +24 -24
  16. package/lib/components/items/EmbedVideoItem/YoutubeEmbed.js +27 -27
  17. package/lib/components/items/FileItem/ImageItem.js +40 -40
  18. package/lib/components/items/FileItem/VideoItem.js +64 -64
  19. package/lib/components/items/GroupItem/GroupItem.js +14 -14
  20. package/lib/components/items/Item.js +30 -30
  21. package/lib/components/items/RectangleItem/RectangleItem.js +27 -27
  22. package/lib/components/items/RichTextItem/RichTextItem.js +22 -22
  23. package/lib/provider/CntrlSdkContext.js +2 -2
  24. package/lib/utils/RichTextConverter/RichTextConverter.js +21 -21
  25. package/package.json +60 -59
  26. package/src/common/useCurrentLayout.ts +52 -52
  27. package/src/common/useExemplary.ts +9 -9
  28. package/src/common/useItemFXData.ts +47 -47
  29. package/src/common/useKeyframeValue.ts +85 -85
  30. package/src/common/useRegisterResize.ts +16 -16
  31. package/src/components/Article.tsx +73 -73
  32. package/src/components/ArticleWrapper.tsx +21 -21
  33. package/src/components/Head.tsx +56 -56
  34. package/src/components/LayoutStyle.tsx +21 -21
  35. package/src/components/Page.tsx +33 -33
  36. package/src/components/ScrollPlaybackVideo.tsx +56 -56
  37. package/src/components/Section/Section.tsx +127 -127
  38. package/src/components/Section/SectionImage.tsx +48 -48
  39. package/src/components/Section/SectionVideo.tsx +144 -144
  40. package/src/components/Section/useSectionColor.ts +19 -19
  41. package/src/components/Section/useSectionHeightMap.ts +19 -19
  42. package/src/components/items/CodeEmbedItem/CodeEmbedItem.tsx +145 -145
  43. package/src/components/items/CodeEmbedItem/useCodeEmbedItem.ts +36 -36
  44. package/src/components/items/ComponentItem/ComponentItem.tsx +67 -67
  45. package/src/components/items/ComponentItem/useComponentItem.ts +35 -35
  46. package/src/components/items/CompoundItem/CompoundChild.tsx +150 -150
  47. package/src/components/items/CompoundItem/CompoundItem.tsx +70 -70
  48. package/src/components/items/CompoundItem/useCompoundItem.ts +21 -21
  49. package/src/components/items/CustomItem/CustomItem.tsx +48 -48
  50. package/src/components/items/EmbedVideoItem/VimeoEmbed.tsx +214 -214
  51. package/src/components/items/EmbedVideoItem/YoutubeEmbed.tsx +198 -198
  52. package/src/components/items/EmbedVideoItem/useEmbedVideoItem.ts +46 -46
  53. package/src/components/items/FileItem/ImageItem.tsx +163 -163
  54. package/src/components/items/FileItem/VideoItem.tsx +280 -280
  55. package/src/components/items/FileItem/useFileItem.ts +81 -81
  56. package/src/components/items/GroupItem/GroupItem.tsx +81 -81
  57. package/src/components/items/GroupItem/useGroupItem.ts +34 -34
  58. package/src/components/items/Item.tsx +253 -253
  59. package/src/components/items/LinkWrapper.tsx +39 -39
  60. package/src/components/items/RectangleItem/RectangleItem.tsx +168 -168
  61. package/src/components/items/RectangleItem/useRectangleItem.ts +89 -89
  62. package/src/components/items/RichTextItem/RichTextItem.tsx +107 -107
  63. package/src/components/items/RichTextItem/useRichTextItem.ts +12 -12
  64. package/src/components/items/RichTextWrapper.tsx +15 -15
  65. package/src/components/items/itemsMap.ts +28 -28
  66. package/src/components/items/useDraggable.ts +252 -252
  67. package/src/components/items/useItemAngle.ts +13 -13
  68. package/src/components/items/useItemArea.ts +35 -35
  69. package/src/components/items/useItemPointerEvents.ts +23 -23
  70. package/src/components/items/useItemScale.ts +17 -17
  71. package/src/components/items/useItemTriggers.ts +15 -15
  72. package/src/components/items/useRichTextItemValues.ts +65 -65
  73. package/src/components/items/useSizing.ts +25 -25
  74. package/src/components/items/useStickyItemTop.ts +21 -21
  75. package/src/components/useLayoutContext.ts +7 -7
  76. package/src/index.ts +24 -24
  77. package/src/interactions/CSSPropertyNameMap.ts +37 -37
  78. package/src/interactions/InteractionsRegistry.ts +380 -380
  79. package/src/interactions/ItemInteractionCtrl.ts +78 -78
  80. package/src/interactions/getTransition.ts +27 -27
  81. package/src/interactions/types.ts +36 -36
  82. package/src/interactions/useItemInteractionCtrl.ts +18 -18
  83. package/src/provider/ArticleRectContext.ts +4 -4
  84. package/src/provider/CntrlContext.ts +5 -5
  85. package/src/provider/CntrlProvider.tsx +11 -11
  86. package/src/provider/CntrlSdkContext.ts +84 -83
  87. package/src/provider/CustomItemRegistry.ts +14 -14
  88. package/src/provider/CustomItemTypes.ts +3 -3
  89. package/src/provider/CustomSectionRegistry.ts +25 -25
  90. package/src/provider/InteractionsContext.tsx +59 -59
  91. package/src/provider/Keyframes.ts +11 -11
  92. package/src/provider/KeyframesContext.ts +5 -5
  93. package/src/provider/LayoutContext.ts +3 -3
  94. package/src/provider/WebGLContextManagerContext.tsx +4 -4
  95. package/src/provider/defaultContext.ts +8 -8
  96. package/src/provider/useCntrlContext.ts +8 -8
  97. package/src/styled-jsx.d.ts +1 -1
  98. package/src/utils/Animator/Animator.ts +570 -570
  99. package/src/utils/ArticleRectManager/ArticleRectObserver.ts +93 -93
  100. package/src/utils/ArticleRectManager/useArticleRectObserver.ts +17 -17
  101. package/src/utils/ArticleRectManager/useSectionRegistry.ts +11 -11
  102. package/src/utils/EventEmitter.ts +41 -41
  103. package/src/utils/RichTextConverter/RichTextConverter.tsx +326 -326
  104. package/src/utils/ScaleAnchorMap.ts +13 -13
  105. package/src/utils/StickyManager/StickyManager.ts +23 -23
  106. package/src/utils/Youtube/YouTubeIframeApiLoader.ts +58 -58
  107. package/src/utils/Youtube/YoutubeIframeApi.ts +101 -101
  108. package/src/utils/Youtube/useYouTubeIframeApi.ts +12 -12
  109. package/src/utils/areFillsVisible/areFillsVisible.test.ts +63 -63
  110. package/src/utils/areFillsVisible/areFillsVisible.ts +37 -37
  111. package/src/utils/binSearchInsertAt.ts +33 -33
  112. package/src/utils/castObject.ts +10 -10
  113. package/src/utils/checkOverflowClipSupport.ts +13 -13
  114. package/src/utils/effects/useImageFx.ts +156 -156
  115. package/src/utils/effects/useVideoFx.ts +158 -158
  116. package/src/utils/getAnchoredItemTop.ts +12 -12
  117. package/src/utils/getCompoundBoundaryStyles.ts +60 -60
  118. package/src/utils/getFill.ts +46 -46
  119. package/src/utils/getFontFamilyValue.ts +3 -3
  120. package/src/utils/getInvertedRanges.ts +43 -43
  121. package/src/utils/getItemTopStyle.ts +14 -14
  122. package/src/utils/getStyleFromItemStateAndParams.ts +8 -8
  123. package/src/utils/getValidYoutubeUrl.ts +29 -29
  124. package/src/utils/isItemType.ts +5 -5
  125. package/src/utils/rangeMap.ts +13 -13
  126. package/src/utils/useElementRect.ts +23 -23
  127. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  128. package/.idea/modules.xml +0 -8
  129. package/.idea/sdk-nextjs.iml +0 -12
  130. package/.idea/vcs.xml +0 -6
@@ -1,253 +1,253 @@
1
- import React, {
2
- FC,
3
- useContext,
4
- useId,
5
- useMemo,
6
- useRef,
7
- useState
8
- } from 'react';
9
- import JSXStyle from 'styled-jsx/style';
10
- import {
11
- AnchorSide,
12
- ArticleItemType,
13
- getLayoutStyles,
14
- ItemAny,
15
- AreaAnchor,
16
- PositionType
17
- } from '@cntrl-site/sdk';
18
- import { useCntrlContext } from '../../provider/useCntrlContext';
19
- import { useItemScale } from './useItemScale';
20
- import { ScaleAnchorMap } from '../../utils/ScaleAnchorMap';
21
- import { useSectionHeightData } from '../Section/useSectionHeightMap';
22
- import { getItemTopStyle } from '../../utils/getItemTopStyle';
23
- import { useStickyItemTop } from './useStickyItemTop';
24
- import { getAnchoredItemTop } from '../../utils/getAnchoredItemTop';
25
- import { useLayoutContext } from '../useLayoutContext';
26
- import { ArticleRectContext } from '../../provider/ArticleRectContext';
27
- import { useExemplary } from '../../common/useExemplary';
28
- import { KeyframesContext } from '../../provider/KeyframesContext';
29
- import { useItemInteractionCtrl } from '../../interactions/useItemInteractionCtrl';
30
- import { isItemType } from '../../utils/isItemType';
31
- import { RichTextWrapper } from './RichTextWrapper';
32
- import { itemsMap } from './itemsMap';
33
- import { useItemTriggers } from './useItemTriggers';
34
- import { parseSizing, useSizing } from './useSizing';
35
- import { useItemPointerEvents } from './useItemPointerEvents';
36
- import { useItemArea } from './useItemArea';
37
- import { useDraggable } from './useDraggable';
38
-
39
- export interface ItemProps<I extends ItemAny> {
40
- item: I;
41
- sectionId: string;
42
- articleHeight?: number;
43
- onResize?: (height: number) => void;
44
- interactionCtrl?: ReturnType<typeof useItemInteractionCtrl>;
45
- onVisibilityChange: (isVisible: boolean) => void;
46
- isInCompound?: boolean;
47
- }
48
-
49
- export interface ItemWrapperProps {
50
- item: ItemAny;
51
- sectionId: string;
52
- articleHeight?: number;
53
- isInGroup?: boolean;
54
- isParentVisible?: boolean;
55
- }
56
-
57
- const stickyFix = `
58
- -webkit-transform: translate3d(0, 0, 0);
59
- transform: translate3d(0, 0, 0);
60
- `;
61
-
62
- const noop = () => null;
63
-
64
- export const Item: FC<ItemWrapperProps> = ({ item, sectionId, articleHeight, isParentVisible = true, isInGroup = false }) => {
65
- const itemWrapperRef = useRef<HTMLDivElement | null>(null);
66
- const itemInnerRef = useRef<HTMLDivElement | null>(null);
67
- const rectObserver = useContext(ArticleRectContext);
68
- const keyframesRepo = useContext(KeyframesContext);
69
- const id = useId();
70
- const keyframes = useMemo(() => keyframesRepo.getItemKeyframes(item.id), [keyframesRepo, item.id]);
71
- const { layouts } = useCntrlContext();
72
- const layout = useLayoutContext();
73
- const exemplary = useExemplary();
74
- const { handleVisibilityChange, allowPointerEvents } = useItemPointerEvents(
75
- item.commonParams.pointerEvents ?? 'when_visible',
76
- isParentVisible
77
- );
78
- const [wrapperHeight, setWrapperHeight] = useState<undefined | number>(undefined);
79
- const [itemHeight, setItemHeight] = useState<undefined | number>(undefined);
80
- const itemScale = useItemScale(item, sectionId);
81
- const interactionCtrl = useItemInteractionCtrl(item.id);
82
- const triggers = useItemTriggers(interactionCtrl);
83
- const [position, setPosition] = useState({ x: 0, y: 0 });
84
- const [isDraggingActive, setIsDraggingActive] = useState(false);
85
- const wrapperStateProps = interactionCtrl?.getState<number>(['top', 'left']);
86
- const innerStateProps = interactionCtrl?.getState<number>(['width', 'height', 'scale']);
87
- const { width, height, top, left } = useItemArea(item, sectionId, {
88
- top: wrapperStateProps?.styles?.top as number,
89
- left: wrapperStateProps?.styles?.left as number,
90
- width: innerStateProps?.styles?.width as number,
91
- height: innerStateProps?.styles?.height as number
92
- });
93
- const sectionHeightLayoutMap = useSectionHeightData(sectionId);
94
- const sectionHeight = layout && sectionHeightLayoutMap[layout] ? sectionHeightLayoutMap[layout] : '0';
95
- const stickyTop = useStickyItemTop(item, sectionId, wrapperStateProps?.styles?.top as number);
96
- const layoutValues: Record<string, any>[] = [item.area, item.hidden];
97
- layoutValues.push(item.sticky);
98
- layoutValues.push(sectionHeightLayoutMap);
99
- if (item.layoutParams) {
100
- layoutValues.push(item.layoutParams);
101
- }
102
- const sticky = layout ? item.sticky[layout] : undefined;
103
- const sizingAxis = useSizing(item);
104
- const ItemComponent = itemsMap[item.type] || noop;
105
- const sectionTop = rectObserver ? rectObserver.getSectionTop(sectionId) : 0;
106
- const layoutParams = layout ? item.layoutParams[layout] : undefined;
107
- const isDraggable = layoutParams && 'isDraggable' in layoutParams ? layoutParams.isDraggable : undefined;
108
- useDraggable({ draggableRef: itemInnerRef.current, isEnabled: isDraggable ?? false }, ({ startX, startY, currentX, currentY, lastX, lastY, drag }) => {
109
- const item = itemInnerRef.current;
110
- if (!item) return;
111
- if (drag) {
112
- setIsDraggingActive(true);
113
- setPosition({
114
- x: (currentX - startX) + lastX,
115
- y: (currentY - startY) + lastY
116
- });
117
- } else {
118
- setIsDraggingActive(false);
119
- }
120
- });
121
-
122
- const handleItemResize = (height: number) => {
123
- if (!layout) return;
124
- const sticky = item.sticky[layout];
125
- if (!sticky || stickyTop === undefined || !articleHeight) {
126
- setWrapperHeight(undefined);
127
- return;
128
- }
129
- const itemArticleOffset = sectionTop / window.innerWidth + stickyTop;
130
- const maxStickyTo = articleHeight - itemArticleOffset - height;
131
- const end = sticky.to !== undefined
132
- ? Math.min(maxStickyTo, sticky.to)
133
- : articleHeight - itemArticleOffset - height;
134
- const wrapperHeight = end - sticky.from + height;
135
- setItemHeight(height);
136
- setWrapperHeight(wrapperHeight);
137
- };
138
-
139
- const isRichText = isItemType(item, ArticleItemType.RichText);
140
- const anchorSide = layout ? item.area[layout].anchorSide : AnchorSide.Top;
141
- const positionType = layout ? item.area[layout].positionType : PositionType.ScreenBased;
142
- const isScreenBasedBottom = positionType === PositionType.ScreenBased && anchorSide === AnchorSide.Bottom;
143
- const scale = innerStateProps?.styles?.scale ?? itemScale;
144
- const hasClickTriggers = interactionCtrl?.getHasTrigger(item.id, 'click') ?? false;
145
- return (
146
- <div
147
- className={`item-wrapper-${item.id}`}
148
- ref={itemWrapperRef}
149
- onTransitionEnd={(e) => {
150
- e.stopPropagation();
151
- interactionCtrl?.handleTransitionEnd?.(e.propertyName);
152
- }}
153
- style={{
154
- ...(top !== undefined ? { top: isScreenBasedBottom ? 'unset' : getItemTopStyle(top, anchorSide) } : {}),
155
- ...(left !== undefined ? { left: `${left * 100}vw` } : {}),
156
- ...(top !== undefined ? { bottom: isScreenBasedBottom ? `${-top * 100}vw` : 'unset' } : {}),
157
- ...(wrapperHeight !== undefined ? { height: `${wrapperHeight * 100}vw` } : {}),
158
- transition: wrapperStateProps?.transition ?? 'none'
159
- }}
160
- >
161
- <div
162
- suppressHydrationWarning={true}
163
- className={`item-${item.id}`}
164
- style={{
165
- opacity: (keyframes.length !== 0 && !layout) ? 0 : 1,
166
- top: sticky ? getAnchoredItemTop(stickyTop, sectionHeight, anchorSide) : 0,
167
- height: isRichText && itemHeight !== undefined ? `${itemHeight * 100}vw` : 'unset'
168
- }}
169
- >
170
- <RichTextWrapper isRichText={isRichText}>
171
- <div
172
- className={`item-${item.id}-inner`}
173
- ref={itemInnerRef}
174
- style={{
175
- top: `${position.y}px`,
176
- left: `${position.x}px`,
177
- ...((width !== undefined && height !== undefined)
178
- ? {
179
- width: `${sizingAxis.x === 'manual'
180
- ? isRichText
181
- ? `${width * exemplary}px`
182
- : `${width * 100}vw`
183
- : 'max-content'}`,
184
- height: `${sizingAxis.y === 'manual' ? `${height * 100}vw` : 'unset'}`
185
- }
186
- : {}),
187
- ...(scale !== undefined ? { transform: `scale(${scale})`, WebkitTransform: `scale(${scale})` } : {}),
188
- transition: innerStateProps?.transition ?? 'none',
189
- cursor: isDraggingActive
190
- ? 'grabbing'
191
- : isDraggable
192
- ? 'grab'
193
- : hasClickTriggers
194
- ? 'pointer'
195
- : 'unset',
196
- pointerEvents: allowPointerEvents ? 'auto' : 'none',
197
- userSelect: isDraggable ? 'none' : 'unset',
198
- WebkitUserSelect: isDraggable ? 'none' : 'unset',
199
- MozUserSelect: isDraggable ? 'none' : 'unset',
200
- msUserSelect: isDraggable ? 'none' : 'unset'
201
- }}
202
- {...triggers}
203
- >
204
- <ItemComponent
205
- item={item}
206
- sectionId={sectionId}
207
- onResize={handleItemResize}
208
- articleHeight={articleHeight}
209
- interactionCtrl={interactionCtrl}
210
- onVisibilityChange={handleVisibilityChange}
211
- />
212
- </div>
213
- </RichTextWrapper>
214
- </div>
215
- <JSXStyle id={id}>{`
216
- ${getLayoutStyles(layouts, layoutValues, ([area, hidden, sticky, sectionHeight, layoutParams]) => {
217
- const sizingAxis = parseSizing(layoutParams.sizing);
218
- const isScreenBasedBottom = area.positionType === PositionType.ScreenBased && area.anchorSide === AnchorSide.Bottom;
219
- const scaleAnchor = area.scaleAnchor as AreaAnchor;
220
- return (`
221
- .item-${item.id} {
222
- position: ${sticky ? 'sticky' : 'absolute'};
223
- top: ${sticky ? `${getAnchoredItemTop(area.top - sticky.from, sectionHeight, area.anchorSide)}` : 0};
224
- transition: opacity 0.2s linear 0.1s;
225
- pointer-events: none;
226
- display: ${hidden ? 'none' : 'block'};
227
- height: fit-content;
228
- }
229
- .item-${item.id}-inner {
230
- width: ${sizingAxis.x === 'manual'
231
- ? `${area.width * 100}vw`
232
- : 'max-content'};
233
- height: ${sizingAxis.y === 'manual' ? `${area.height * 100}vw` : 'unset'};
234
- transform-origin: ${ScaleAnchorMap[scaleAnchor]};
235
- transform: scale(${area.scale});
236
- position: relative;
237
- }
238
- .item-wrapper-${item.id} {
239
- position: ${area.positionType === PositionType.ScreenBased ? 'fixed' : 'absolute'};
240
- z-index: ${area.zIndex};
241
- ${!isInGroup && stickyFix}
242
- pointer-events: none;
243
- bottom: ${isScreenBasedBottom ? `${-area.top * 100}vw` : 'unset'};
244
- top: ${isScreenBasedBottom ? 'unset' : getItemTopStyle(area.top, area.anchorSide)};
245
- left: ${area.left * 100}vw;
246
- }
247
- `);
248
- })}
249
- `}
250
- </JSXStyle>
251
- </div>
252
- );
253
- };
1
+ import React, {
2
+ FC,
3
+ useContext,
4
+ useId,
5
+ useMemo,
6
+ useRef,
7
+ useState
8
+ } from 'react';
9
+ import JSXStyle from 'styled-jsx/style';
10
+ import {
11
+ AnchorSide,
12
+ ArticleItemType,
13
+ getLayoutStyles,
14
+ ItemAny,
15
+ AreaAnchor,
16
+ PositionType
17
+ } from '@cntrl-site/sdk';
18
+ import { useCntrlContext } from '../../provider/useCntrlContext';
19
+ import { useItemScale } from './useItemScale';
20
+ import { ScaleAnchorMap } from '../../utils/ScaleAnchorMap';
21
+ import { useSectionHeightData } from '../Section/useSectionHeightMap';
22
+ import { getItemTopStyle } from '../../utils/getItemTopStyle';
23
+ import { useStickyItemTop } from './useStickyItemTop';
24
+ import { getAnchoredItemTop } from '../../utils/getAnchoredItemTop';
25
+ import { useLayoutContext } from '../useLayoutContext';
26
+ import { ArticleRectContext } from '../../provider/ArticleRectContext';
27
+ import { useExemplary } from '../../common/useExemplary';
28
+ import { KeyframesContext } from '../../provider/KeyframesContext';
29
+ import { useItemInteractionCtrl } from '../../interactions/useItemInteractionCtrl';
30
+ import { isItemType } from '../../utils/isItemType';
31
+ import { RichTextWrapper } from './RichTextWrapper';
32
+ import { itemsMap } from './itemsMap';
33
+ import { useItemTriggers } from './useItemTriggers';
34
+ import { parseSizing, useSizing } from './useSizing';
35
+ import { useItemPointerEvents } from './useItemPointerEvents';
36
+ import { useItemArea } from './useItemArea';
37
+ import { useDraggable } from './useDraggable';
38
+
39
+ export interface ItemProps<I extends ItemAny> {
40
+ item: I;
41
+ sectionId: string;
42
+ articleHeight?: number;
43
+ onResize?: (height: number) => void;
44
+ interactionCtrl?: ReturnType<typeof useItemInteractionCtrl>;
45
+ onVisibilityChange: (isVisible: boolean) => void;
46
+ isInCompound?: boolean;
47
+ }
48
+
49
+ export interface ItemWrapperProps {
50
+ item: ItemAny;
51
+ sectionId: string;
52
+ articleHeight?: number;
53
+ isInGroup?: boolean;
54
+ isParentVisible?: boolean;
55
+ }
56
+
57
+ const stickyFix = `
58
+ -webkit-transform: translate3d(0, 0, 0);
59
+ transform: translate3d(0, 0, 0);
60
+ `;
61
+
62
+ const noop = () => null;
63
+
64
+ export const Item: FC<ItemWrapperProps> = ({ item, sectionId, articleHeight, isParentVisible = true, isInGroup = false }) => {
65
+ const itemWrapperRef = useRef<HTMLDivElement | null>(null);
66
+ const itemInnerRef = useRef<HTMLDivElement | null>(null);
67
+ const rectObserver = useContext(ArticleRectContext);
68
+ const keyframesRepo = useContext(KeyframesContext);
69
+ const id = useId();
70
+ const keyframes = useMemo(() => keyframesRepo.getItemKeyframes(item.id), [keyframesRepo, item.id]);
71
+ const { layouts } = useCntrlContext();
72
+ const layout = useLayoutContext();
73
+ const exemplary = useExemplary();
74
+ const { handleVisibilityChange, allowPointerEvents } = useItemPointerEvents(
75
+ item.commonParams.pointerEvents ?? 'when_visible',
76
+ isParentVisible
77
+ );
78
+ const [wrapperHeight, setWrapperHeight] = useState<undefined | number>(undefined);
79
+ const [itemHeight, setItemHeight] = useState<undefined | number>(undefined);
80
+ const itemScale = useItemScale(item, sectionId);
81
+ const interactionCtrl = useItemInteractionCtrl(item.id);
82
+ const triggers = useItemTriggers(interactionCtrl);
83
+ const [position, setPosition] = useState({ x: 0, y: 0 });
84
+ const [isDraggingActive, setIsDraggingActive] = useState(false);
85
+ const wrapperStateProps = interactionCtrl?.getState<number>(['top', 'left']);
86
+ const innerStateProps = interactionCtrl?.getState<number>(['width', 'height', 'scale']);
87
+ const { width, height, top, left } = useItemArea(item, sectionId, {
88
+ top: wrapperStateProps?.styles?.top as number,
89
+ left: wrapperStateProps?.styles?.left as number,
90
+ width: innerStateProps?.styles?.width as number,
91
+ height: innerStateProps?.styles?.height as number
92
+ });
93
+ const sectionHeightLayoutMap = useSectionHeightData(sectionId);
94
+ const sectionHeight = layout && sectionHeightLayoutMap[layout] ? sectionHeightLayoutMap[layout] : '0';
95
+ const stickyTop = useStickyItemTop(item, sectionId, wrapperStateProps?.styles?.top as number);
96
+ const layoutValues: Record<string, any>[] = [item.area, item.hidden];
97
+ layoutValues.push(item.sticky);
98
+ layoutValues.push(sectionHeightLayoutMap);
99
+ if (item.layoutParams) {
100
+ layoutValues.push(item.layoutParams);
101
+ }
102
+ const sticky = layout ? item.sticky[layout] : undefined;
103
+ const sizingAxis = useSizing(item);
104
+ const ItemComponent = itemsMap[item.type] || noop;
105
+ const sectionTop = rectObserver ? rectObserver.getSectionTop(sectionId) : 0;
106
+ const layoutParams = layout ? item.layoutParams[layout] : undefined;
107
+ const isDraggable = layoutParams && 'isDraggable' in layoutParams ? layoutParams.isDraggable : undefined;
108
+ useDraggable({ draggableRef: itemInnerRef.current, isEnabled: isDraggable ?? false }, ({ startX, startY, currentX, currentY, lastX, lastY, drag }) => {
109
+ const item = itemInnerRef.current;
110
+ if (!item) return;
111
+ if (drag) {
112
+ setIsDraggingActive(true);
113
+ setPosition({
114
+ x: (currentX - startX) + lastX,
115
+ y: (currentY - startY) + lastY
116
+ });
117
+ } else {
118
+ setIsDraggingActive(false);
119
+ }
120
+ });
121
+
122
+ const handleItemResize = (height: number) => {
123
+ if (!layout) return;
124
+ const sticky = item.sticky[layout];
125
+ if (!sticky || stickyTop === undefined || !articleHeight) {
126
+ setWrapperHeight(undefined);
127
+ return;
128
+ }
129
+ const itemArticleOffset = sectionTop / window.innerWidth + stickyTop;
130
+ const maxStickyTo = articleHeight - itemArticleOffset - height;
131
+ const end = sticky.to !== undefined
132
+ ? Math.min(maxStickyTo, sticky.to)
133
+ : articleHeight - itemArticleOffset - height;
134
+ const wrapperHeight = end - sticky.from + height;
135
+ setItemHeight(height);
136
+ setWrapperHeight(wrapperHeight);
137
+ };
138
+
139
+ const isRichText = isItemType(item, ArticleItemType.RichText);
140
+ const anchorSide = layout ? item.area[layout].anchorSide : AnchorSide.Top;
141
+ const positionType = layout ? item.area[layout].positionType : PositionType.ScreenBased;
142
+ const isScreenBasedBottom = positionType === PositionType.ScreenBased && anchorSide === AnchorSide.Bottom;
143
+ const scale = innerStateProps?.styles?.scale ?? itemScale;
144
+ const hasClickTriggers = interactionCtrl?.getHasTrigger(item.id, 'click') ?? false;
145
+ return (
146
+ <div
147
+ className={`item-wrapper-${item.id}`}
148
+ ref={itemWrapperRef}
149
+ onTransitionEnd={(e) => {
150
+ e.stopPropagation();
151
+ interactionCtrl?.handleTransitionEnd?.(e.propertyName);
152
+ }}
153
+ style={{
154
+ ...(top !== undefined ? { top: isScreenBasedBottom ? 'unset' : getItemTopStyle(top, anchorSide) } : {}),
155
+ ...(left !== undefined ? { left: `${left * 100}vw` } : {}),
156
+ ...(top !== undefined ? { bottom: isScreenBasedBottom ? `${-top * 100}vw` : 'unset' } : {}),
157
+ ...(wrapperHeight !== undefined ? { height: `${wrapperHeight * 100}vw` } : {}),
158
+ transition: wrapperStateProps?.transition ?? 'none'
159
+ }}
160
+ >
161
+ <div
162
+ suppressHydrationWarning={true}
163
+ className={`item-${item.id}`}
164
+ style={{
165
+ opacity: (keyframes.length !== 0 && !layout) ? 0 : 1,
166
+ top: sticky ? getAnchoredItemTop(stickyTop, sectionHeight, anchorSide) : 0,
167
+ height: isRichText && itemHeight !== undefined ? `${itemHeight * 100}vw` : 'unset'
168
+ }}
169
+ >
170
+ <RichTextWrapper isRichText={isRichText}>
171
+ <div
172
+ className={`item-${item.id}-inner`}
173
+ ref={itemInnerRef}
174
+ style={{
175
+ top: `${position.y}px`,
176
+ left: `${position.x}px`,
177
+ ...((width !== undefined && height !== undefined)
178
+ ? {
179
+ width: `${sizingAxis.x === 'manual'
180
+ ? isRichText
181
+ ? `${width * exemplary}px`
182
+ : `${width * 100}vw`
183
+ : 'max-content'}`,
184
+ height: `${sizingAxis.y === 'manual' ? `${height * 100}vw` : 'unset'}`
185
+ }
186
+ : {}),
187
+ ...(scale !== undefined ? { transform: `scale(${scale})`, WebkitTransform: `scale(${scale})` } : {}),
188
+ transition: innerStateProps?.transition ?? 'none',
189
+ cursor: isDraggingActive
190
+ ? 'grabbing'
191
+ : isDraggable
192
+ ? 'grab'
193
+ : hasClickTriggers
194
+ ? 'pointer'
195
+ : 'unset',
196
+ pointerEvents: allowPointerEvents ? 'auto' : 'none',
197
+ userSelect: isDraggable ? 'none' : 'unset',
198
+ WebkitUserSelect: isDraggable ? 'none' : 'unset',
199
+ MozUserSelect: isDraggable ? 'none' : 'unset',
200
+ msUserSelect: isDraggable ? 'none' : 'unset'
201
+ }}
202
+ {...triggers}
203
+ >
204
+ <ItemComponent
205
+ item={item}
206
+ sectionId={sectionId}
207
+ onResize={handleItemResize}
208
+ articleHeight={articleHeight}
209
+ interactionCtrl={interactionCtrl}
210
+ onVisibilityChange={handleVisibilityChange}
211
+ />
212
+ </div>
213
+ </RichTextWrapper>
214
+ </div>
215
+ <JSXStyle id={id}>{`
216
+ ${getLayoutStyles(layouts, layoutValues, ([area, hidden, sticky, sectionHeight, layoutParams]) => {
217
+ const sizingAxis = parseSizing(layoutParams.sizing);
218
+ const isScreenBasedBottom = area.positionType === PositionType.ScreenBased && area.anchorSide === AnchorSide.Bottom;
219
+ const scaleAnchor = area.scaleAnchor as AreaAnchor;
220
+ return (`
221
+ .item-${item.id} {
222
+ position: ${sticky ? 'sticky' : 'absolute'};
223
+ top: ${sticky ? `${getAnchoredItemTop(area.top - sticky.from, sectionHeight, area.anchorSide)}` : 0};
224
+ transition: opacity 0.2s linear 0.1s;
225
+ pointer-events: none;
226
+ display: ${hidden ? 'none' : 'block'};
227
+ height: fit-content;
228
+ }
229
+ .item-${item.id}-inner {
230
+ width: ${sizingAxis.x === 'manual'
231
+ ? `${area.width * 100}vw`
232
+ : 'max-content'};
233
+ height: ${sizingAxis.y === 'manual' ? `${area.height * 100}vw` : 'unset'};
234
+ transform-origin: ${ScaleAnchorMap[scaleAnchor]};
235
+ transform: scale(${area.scale});
236
+ position: relative;
237
+ }
238
+ .item-wrapper-${item.id} {
239
+ position: ${area.positionType === PositionType.ScreenBased ? 'fixed' : 'absolute'};
240
+ z-index: ${area.zIndex};
241
+ ${!isInGroup && stickyFix}
242
+ pointer-events: none;
243
+ bottom: ${isScreenBasedBottom ? `${-area.top * 100}vw` : 'unset'};
244
+ top: ${isScreenBasedBottom ? 'unset' : getItemTopStyle(area.top, area.anchorSide)};
245
+ left: ${area.left * 100}vw;
246
+ }
247
+ `);
248
+ })}
249
+ `}
250
+ </JSXStyle>
251
+ </div>
252
+ );
253
+ };
@@ -1,39 +1,39 @@
1
- import React, { ReactElement, ReactNode } from 'react';
2
-
3
- interface Props {
4
- url?: string;
5
- children: ReactElement | ReactNode[];
6
- target?: string;
7
- }
8
-
9
- export const LinkWrapper: React.FC<Props> = ({ url, children, target }) => {
10
- const validUrl = url && buildValidUrl(url);
11
- const targetParams = target === '_blank' ? { target, rel: 'noreferrer' } : {};
12
- return url ? (
13
- <a
14
- href={validUrl}
15
- {...targetParams}
16
- >
17
- {children}
18
- </a>
19
- ) : (
20
- <>{children}</>
21
- );
22
- };
23
-
24
- function buildValidUrl(url: string): string {
25
- const prefixes = [
26
- 'http://',
27
- 'https://',
28
- '/',
29
- 'mailto:',
30
- 'tel:',
31
- 'file:',
32
- 'ftp:',
33
- 'javascript',
34
- '#'
35
- ];
36
- const protocolCheck = prefixes.some(prefix => url.startsWith(prefix));
37
- if (protocolCheck) return url;
38
- return `//${url}`;
39
- }
1
+ import React, { ReactElement, ReactNode } from 'react';
2
+
3
+ interface Props {
4
+ url?: string;
5
+ children: ReactElement | ReactNode[];
6
+ target?: string;
7
+ }
8
+
9
+ export const LinkWrapper: React.FC<Props> = ({ url, children, target }) => {
10
+ const validUrl = url && buildValidUrl(url);
11
+ const targetParams = target === '_blank' ? { target, rel: 'noreferrer' } : {};
12
+ return url ? (
13
+ <a
14
+ href={validUrl}
15
+ {...targetParams}
16
+ >
17
+ {children}
18
+ </a>
19
+ ) : (
20
+ <>{children}</>
21
+ );
22
+ };
23
+
24
+ function buildValidUrl(url: string): string {
25
+ const prefixes = [
26
+ 'http://',
27
+ 'https://',
28
+ '/',
29
+ 'mailto:',
30
+ 'tel:',
31
+ 'file:',
32
+ 'ftp:',
33
+ 'javascript',
34
+ '#'
35
+ ];
36
+ const protocolCheck = prefixes.some(prefix => url.startsWith(prefix));
37
+ if (protocolCheck) return url;
38
+ return `//${url}`;
39
+ }