@cntrl-site/sdk-nextjs 1.9.40 → 1.9.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  2. package/.idea/modules.xml +8 -0
  3. package/.idea/sdk-nextjs.iml +12 -0
  4. package/.idea/vcs.xml +6 -0
  5. package/LICENSE +21 -21
  6. package/README.md +4 -4
  7. package/TODO.md +1 -1
  8. package/eslint.config.mjs +35 -35
  9. package/jest.config.js +6 -6
  10. package/lib/common/useItemFXData.js +7 -7
  11. package/lib/components/Article.js +5 -5
  12. package/lib/components/LayoutStyle.js +4 -4
  13. package/lib/components/ScrollPlaybackVideo.js +1 -1
  14. package/lib/components/Section/Section.js +27 -27
  15. package/lib/components/items/CodeEmbedItem/CodeEmbedItem.js +36 -36
  16. package/lib/components/items/ComponentItem/ComponentItem.js +13 -13
  17. package/lib/components/items/CompoundItem/CompoundChild.js +20 -20
  18. package/lib/components/items/CompoundItem/CompoundItem.js +14 -14
  19. package/lib/components/items/CustomItem/CustomItem.js +9 -9
  20. package/lib/components/items/EmbedVideoItem/VimeoEmbed.js +24 -24
  21. package/lib/components/items/EmbedVideoItem/YoutubeEmbed.js +27 -27
  22. package/lib/components/items/FileItem/ImageItem.js +40 -40
  23. package/lib/components/items/FileItem/VideoItem.js +64 -64
  24. package/lib/components/items/GroupItem/GroupItem.js +14 -14
  25. package/lib/components/items/Item.js +30 -30
  26. package/lib/components/items/RectangleItem/RectangleItem.js +27 -27
  27. package/lib/components/items/RichTextItem/RichTextItem.js +22 -22
  28. package/lib/utils/RichTextConverter/RichTextConverter.js +21 -21
  29. package/package.json +60 -60
  30. package/src/ItemGeometry/CSSPropertyNameMap.ts +37 -37
  31. package/src/ItemGeometry/GenericGeometryController.ts +59 -59
  32. package/src/ItemGeometry/ItemGeometryContext.ts +4 -4
  33. package/src/ItemGeometry/ItemGeometryController.ts +22 -22
  34. package/src/ItemGeometry/ItemGeometryService.ts +34 -34
  35. package/src/ItemGeometry/RichTextGeometryController.ts +166 -166
  36. package/src/ItemGeometry/useItemGeometry.ts +25 -25
  37. package/src/common/useCurrentLayout.ts +52 -52
  38. package/src/common/useExemplary.ts +9 -9
  39. package/src/common/useItemFXData.ts +47 -47
  40. package/src/common/useKeyframeValue.ts +85 -85
  41. package/src/common/useRegisterResize.ts +16 -16
  42. package/src/components/Article.tsx +75 -75
  43. package/src/components/ArticleWrapper.tsx +21 -21
  44. package/src/components/Head.tsx +56 -56
  45. package/src/components/LayoutStyle.tsx +21 -21
  46. package/src/components/Page.tsx +38 -38
  47. package/src/components/ScrollPlaybackVideo.tsx +56 -56
  48. package/src/components/Section/Section.tsx +129 -129
  49. package/src/components/Section/SectionImage.tsx +48 -48
  50. package/src/components/Section/SectionVideo.tsx +144 -144
  51. package/src/components/Section/useSectionColor.ts +19 -19
  52. package/src/components/Section/useSectionHeightMap.ts +19 -19
  53. package/src/components/items/CodeEmbedItem/CodeEmbedItem.tsx +147 -147
  54. package/src/components/items/CodeEmbedItem/useCodeEmbedItem.ts +36 -36
  55. package/src/components/items/ComponentItem/ComponentItem.tsx +72 -72
  56. package/src/components/items/ComponentItem/useComponentItem.ts +35 -35
  57. package/src/components/items/CompoundItem/CompoundChild.tsx +150 -150
  58. package/src/components/items/CompoundItem/CompoundItem.tsx +87 -87
  59. package/src/components/items/CompoundItem/useCompoundItem.ts +21 -21
  60. package/src/components/items/CustomItem/CustomItem.tsx +50 -50
  61. package/src/components/items/EmbedVideoItem/VimeoEmbed.tsx +216 -216
  62. package/src/components/items/EmbedVideoItem/YoutubeEmbed.tsx +200 -200
  63. package/src/components/items/EmbedVideoItem/useEmbedVideoItem.ts +46 -46
  64. package/src/components/items/FileItem/ImageItem.tsx +165 -165
  65. package/src/components/items/FileItem/VideoItem.tsx +282 -282
  66. package/src/components/items/FileItem/useFileItem.ts +81 -81
  67. package/src/components/items/GroupItem/GroupItem.tsx +98 -98
  68. package/src/components/items/GroupItem/useGroupItem.ts +34 -34
  69. package/src/components/items/Item.tsx +262 -262
  70. package/src/components/items/LinkWrapper.tsx +39 -39
  71. package/src/components/items/RectangleItem/RectangleItem.tsx +184 -184
  72. package/src/components/items/RectangleItem/useRectangleItem.ts +89 -89
  73. package/src/components/items/RichTextItem/RichTextItem.tsx +112 -112
  74. package/src/components/items/RichTextItem/useRichTextItem.ts +12 -12
  75. package/src/components/items/RichTextWrapper.tsx +15 -15
  76. package/src/components/items/itemsMap.ts +28 -28
  77. package/src/components/items/useDraggable.ts +252 -252
  78. package/src/components/items/useItemAngle.ts +13 -13
  79. package/src/components/items/useItemArea.ts +35 -35
  80. package/src/components/items/useItemPointerEvents.ts +23 -23
  81. package/src/components/items/useItemScale.ts +17 -17
  82. package/src/components/items/useItemTriggers.ts +15 -15
  83. package/src/components/items/useRichTextItemValues.ts +66 -66
  84. package/src/components/items/useSizing.ts +25 -25
  85. package/src/components/items/useStickyItemTop.ts +21 -21
  86. package/src/components/useLayoutContext.ts +7 -7
  87. package/src/index.ts +24 -24
  88. package/src/interactions/InteractionsRegistry.ts +512 -512
  89. package/src/interactions/ItemInteractionCtrl.ts +78 -78
  90. package/src/interactions/getTransition.ts +27 -27
  91. package/src/interactions/types.ts +36 -36
  92. package/src/interactions/useItemInteractionCtrl.ts +18 -18
  93. package/src/provider/ArticleRectContext.ts +4 -4
  94. package/src/provider/CntrlContext.ts +5 -5
  95. package/src/provider/CntrlProvider.tsx +11 -11
  96. package/src/provider/CntrlSdkContext.ts +84 -84
  97. package/src/provider/CustomItemRegistry.ts +14 -14
  98. package/src/provider/CustomItemTypes.ts +3 -3
  99. package/src/provider/CustomSectionRegistry.ts +25 -25
  100. package/src/provider/InteractionsContext.tsx +73 -73
  101. package/src/provider/Keyframes.ts +11 -11
  102. package/src/provider/KeyframesContext.ts +5 -5
  103. package/src/provider/LayoutContext.ts +3 -3
  104. package/src/provider/WebGLContextManagerContext.tsx +4 -4
  105. package/src/provider/defaultContext.ts +8 -8
  106. package/src/provider/useCntrlContext.ts +8 -8
  107. package/src/styled-jsx.d.ts +1 -1
  108. package/src/utils/Animator/Animator.ts +570 -570
  109. package/src/utils/ArticleRectManager/ArticleRectObserver.ts +93 -93
  110. package/src/utils/ArticleRectManager/useArticleRectObserver.ts +17 -17
  111. package/src/utils/ArticleRectManager/useSectionRegistry.ts +11 -11
  112. package/src/utils/CSSNumeric.ts +19 -19
  113. package/src/utils/EventEmitter.ts +41 -41
  114. package/src/utils/RichTextConverter/RichTextConverter.tsx +342 -342
  115. package/src/utils/ScaleAnchorMap.ts +13 -13
  116. package/src/utils/StickyManager/StickyManager.ts +23 -23
  117. package/src/utils/Youtube/YouTubeIframeApiLoader.ts +58 -58
  118. package/src/utils/Youtube/YoutubeIframeApi.ts +101 -101
  119. package/src/utils/Youtube/useYouTubeIframeApi.ts +12 -12
  120. package/src/utils/areFillsVisible/areFillsVisible.test.ts +63 -63
  121. package/src/utils/areFillsVisible/areFillsVisible.ts +37 -37
  122. package/src/utils/binSearchInsertAt.ts +33 -33
  123. package/src/utils/castObject.ts +10 -10
  124. package/src/utils/checkOverflowClipSupport.ts +13 -13
  125. package/src/utils/domDfs.ts +11 -11
  126. package/src/utils/effects/useImageFx.ts +156 -156
  127. package/src/utils/effects/useVideoFx.ts +158 -158
  128. package/src/utils/getAnchoredItemTop.ts +12 -12
  129. package/src/utils/getCompoundBoundaryStyles.ts +60 -60
  130. package/src/utils/getFill.ts +46 -46
  131. package/src/utils/getFontFamilyValue.ts +3 -3
  132. package/src/utils/getInvertedRanges.ts +43 -43
  133. package/src/utils/getItemTopStyle.ts +14 -14
  134. package/src/utils/getStyleFromItemStateAndParams.ts +8 -8
  135. package/src/utils/getValidYoutubeUrl.ts +29 -29
  136. package/src/utils/isItemType.ts +5 -5
  137. package/src/utils/rangeMap.ts +13 -13
  138. package/src/utils/useElementRect.ts +23 -23
  139. package/cntrl-site-sdk-nextjs-1.9.32-0.tgz +0 -0
@@ -1,262 +1,262 @@
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
- const blendMode = layoutParams && 'blendMode' in layoutParams ? layoutParams.blendMode : 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
- ...(blendMode && { mixBlendMode: blendMode as React.CSSProperties['mixBlendMode'] })
168
- }}
169
- >
170
- <div
171
- suppressHydrationWarning={true}
172
- className={`item-${item.id}`}
173
- style={{
174
- opacity: (keyframes.length !== 0 && !layout) ? 0 : 1,
175
- top: sticky ? getAnchoredItemTop(stickyTop, sectionHeight, anchorSide) : 0,
176
- height: isRichText && itemHeight !== undefined ? `${itemHeight * 100}vw` : 'unset'
177
- }}
178
- >
179
- <RichTextWrapper isRichText={isRichText}>
180
- <div
181
- className={`item-${item.id}-inner`}
182
- ref={itemInnerRef}
183
- style={{
184
- top: `${position.y}px`,
185
- left: `${position.x}px`,
186
- ...((width !== undefined && height !== undefined)
187
- ? {
188
- width: `${sizingAxis.x === 'manual'
189
- ? isRichText
190
- ? `${width * exemplary}px`
191
- : `${width * 100}vw`
192
- : 'max-content'}`,
193
- height: `${sizingAxis.y === 'manual' ? `${height * 100}vw` : 'unset'}`
194
- }
195
- : {}),
196
- ...(scale !== undefined ? { transform: `scale(${scale})`, WebkitTransform: `scale(${scale})` } : {}),
197
- transition: innerStateProps?.transition ?? 'none',
198
- cursor: isDraggingActive
199
- ? 'grabbing'
200
- : isDraggable
201
- ? 'grab'
202
- : hasClickTriggers
203
- ? 'pointer'
204
- : 'unset',
205
- pointerEvents: allowPointerEvents ? 'auto' : 'none',
206
- userSelect: isDraggable ? 'none' : 'unset',
207
- WebkitUserSelect: isDraggable ? 'none' : 'unset',
208
- MozUserSelect: isDraggable ? 'none' : 'unset',
209
- msUserSelect: isDraggable ? 'none' : 'unset'
210
- }}
211
- {...triggers}
212
- >
213
- <ItemComponent
214
- item={item}
215
- sectionId={sectionId}
216
- onResize={handleItemResize}
217
- articleHeight={articleHeight}
218
- interactionCtrl={interactionCtrl}
219
- onVisibilityChange={handleVisibilityChange}
220
- />
221
- </div>
222
- </RichTextWrapper>
223
- </div>
224
- <JSXStyle id={id}>{`
225
- ${getLayoutStyles(layouts, layoutValues, ([area, hidden, sticky, sectionHeight, layoutParams]) => {
226
- const sizingAxis = parseSizing(layoutParams.sizing);
227
- const isScreenBasedBottom = area.positionType === PositionType.ScreenBased && area.anchorSide === AnchorSide.Bottom;
228
- const scaleAnchor = area.scaleAnchor as AreaAnchor;
229
- return (`
230
- .item-${item.id} {
231
- position: ${sticky ? 'sticky' : 'absolute'};
232
- top: ${sticky ? `${getAnchoredItemTop(area.top - sticky.from, sectionHeight, area.anchorSide)}` : 0};
233
- transition: opacity 0.2s linear 0.1s;
234
- pointer-events: none;
235
- display: ${hidden ? 'none' : 'block'};
236
- height: fit-content;
237
- }
238
- .item-${item.id}-inner {
239
- width: ${sizingAxis.x === 'manual'
240
- ? `${area.width * 100}vw`
241
- : 'max-content'};
242
- height: ${sizingAxis.y === 'manual' ? `${area.height * 100}vw` : 'unset'};
243
- transform-origin: ${ScaleAnchorMap[scaleAnchor]};
244
- transform: scale(${area.scale});
245
- position: relative;
246
- }
247
- .item-wrapper-${item.id} {
248
- position: ${area.positionType === PositionType.ScreenBased ? 'fixed' : 'absolute'};
249
- z-index: ${area.zIndex};
250
- ${!isInGroup && stickyFix}
251
- pointer-events: none;
252
- bottom: ${isScreenBasedBottom ? `${-area.top * 100}vw` : 'unset'};
253
- top: ${isScreenBasedBottom ? 'unset' : getItemTopStyle(area.top, area.anchorSide)};
254
- left: ${area.left * 100}vw;
255
- }
256
- `);
257
- })}
258
- `}
259
- </JSXStyle>
260
- </div>
261
- );
262
- };
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
+ const blendMode = layoutParams && 'blendMode' in layoutParams ? layoutParams.blendMode : 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
+ ...(blendMode && { mixBlendMode: blendMode as React.CSSProperties['mixBlendMode'] })
168
+ }}
169
+ >
170
+ <div
171
+ suppressHydrationWarning={true}
172
+ className={`item-${item.id}`}
173
+ style={{
174
+ opacity: (keyframes.length !== 0 && !layout) ? 0 : 1,
175
+ top: sticky ? getAnchoredItemTop(stickyTop, sectionHeight, anchorSide) : 0,
176
+ height: isRichText && itemHeight !== undefined ? `${itemHeight * 100}vw` : 'unset'
177
+ }}
178
+ >
179
+ <RichTextWrapper isRichText={isRichText}>
180
+ <div
181
+ className={`item-${item.id}-inner`}
182
+ ref={itemInnerRef}
183
+ style={{
184
+ top: `${position.y}px`,
185
+ left: `${position.x}px`,
186
+ ...((width !== undefined && height !== undefined)
187
+ ? {
188
+ width: `${sizingAxis.x === 'manual'
189
+ ? isRichText
190
+ ? `${width * exemplary}px`
191
+ : `${width * 100}vw`
192
+ : 'max-content'}`,
193
+ height: `${sizingAxis.y === 'manual' ? `${height * 100}vw` : 'unset'}`
194
+ }
195
+ : {}),
196
+ ...(scale !== undefined ? { transform: `scale(${scale})`, WebkitTransform: `scale(${scale})` } : {}),
197
+ transition: innerStateProps?.transition ?? 'none',
198
+ cursor: isDraggingActive
199
+ ? 'grabbing'
200
+ : isDraggable
201
+ ? 'grab'
202
+ : hasClickTriggers
203
+ ? 'pointer'
204
+ : 'unset',
205
+ pointerEvents: allowPointerEvents ? 'auto' : 'none',
206
+ userSelect: isDraggable ? 'none' : 'unset',
207
+ WebkitUserSelect: isDraggable ? 'none' : 'unset',
208
+ MozUserSelect: isDraggable ? 'none' : 'unset',
209
+ msUserSelect: isDraggable ? 'none' : 'unset'
210
+ }}
211
+ {...triggers}
212
+ >
213
+ <ItemComponent
214
+ item={item}
215
+ sectionId={sectionId}
216
+ onResize={handleItemResize}
217
+ articleHeight={articleHeight}
218
+ interactionCtrl={interactionCtrl}
219
+ onVisibilityChange={handleVisibilityChange}
220
+ />
221
+ </div>
222
+ </RichTextWrapper>
223
+ </div>
224
+ <JSXStyle id={id}>{`
225
+ ${getLayoutStyles(layouts, layoutValues, ([area, hidden, sticky, sectionHeight, layoutParams]) => {
226
+ const sizingAxis = parseSizing(layoutParams.sizing);
227
+ const isScreenBasedBottom = area.positionType === PositionType.ScreenBased && area.anchorSide === AnchorSide.Bottom;
228
+ const scaleAnchor = area.scaleAnchor as AreaAnchor;
229
+ return (`
230
+ .item-${item.id} {
231
+ position: ${sticky ? 'sticky' : 'absolute'};
232
+ top: ${sticky ? `${getAnchoredItemTop(area.top - sticky.from, sectionHeight, area.anchorSide)}` : 0};
233
+ transition: opacity 0.2s linear 0.1s;
234
+ pointer-events: none;
235
+ display: ${hidden ? 'none' : 'block'};
236
+ height: fit-content;
237
+ }
238
+ .item-${item.id}-inner {
239
+ width: ${sizingAxis.x === 'manual'
240
+ ? `${area.width * 100}vw`
241
+ : 'max-content'};
242
+ height: ${sizingAxis.y === 'manual' ? `${area.height * 100}vw` : 'unset'};
243
+ transform-origin: ${ScaleAnchorMap[scaleAnchor]};
244
+ transform: scale(${area.scale});
245
+ position: relative;
246
+ }
247
+ .item-wrapper-${item.id} {
248
+ position: ${area.positionType === PositionType.ScreenBased ? 'fixed' : 'absolute'};
249
+ z-index: ${area.zIndex};
250
+ ${!isInGroup && stickyFix}
251
+ pointer-events: none;
252
+ bottom: ${isScreenBasedBottom ? `${-area.top * 100}vw` : 'unset'};
253
+ top: ${isScreenBasedBottom ? 'unset' : getItemTopStyle(area.top, area.anchorSide)};
254
+ left: ${area.left * 100}vw;
255
+ }
256
+ `);
257
+ })}
258
+ `}
259
+ </JSXStyle>
260
+ </div>
261
+ );
262
+ };
@@ -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
+ }