@cntrl-site/sdk-nextjs 1.9.4 → 1.9.6

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