@cntrl-site/sdk-nextjs 1.9.24 → 1.9.26

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