@cntrl-site/sdk-nextjs 1.6.12 → 1.6.14

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 (121) 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/Section/Section.js +78 -15
  14. package/lib/components/items/CodeEmbedItem/CodeEmbedItem.js +30 -30
  15. package/lib/components/items/CompoundItem/CompoundChild.js +20 -20
  16. package/lib/components/items/CompoundItem/CompoundItem.js +14 -14
  17. package/lib/components/items/CustomItem/CustomItem.js +9 -9
  18. package/lib/components/items/EmbedVideoItem/VimeoEmbed.js +23 -23
  19. package/lib/components/items/EmbedVideoItem/YoutubeEmbed.js +26 -26
  20. package/lib/components/items/FileItem/ImageItem.js +38 -38
  21. package/lib/components/items/FileItem/VideoItem.js +45 -45
  22. package/lib/components/items/GroupItem/GroupItem.js +13 -13
  23. package/lib/components/items/Item.js +30 -30
  24. package/lib/components/items/RectangleItem/RectangleItem.js +20 -20
  25. package/lib/components/items/RichTextItem/RichTextItem.js +21 -21
  26. package/lib/utils/RichTextConverter/RichTextConverter.js +21 -21
  27. package/package.json +57 -57
  28. package/src/common/useCurrentLayout.ts +52 -52
  29. package/src/common/useExemplary.ts +9 -9
  30. package/src/common/useItemFXData.ts +47 -47
  31. package/src/common/useKeyframeValue.ts +85 -85
  32. package/src/common/useRegisterResize.ts +17 -17
  33. package/src/components/Article.tsx +66 -66
  34. package/src/components/ArticleWrapper.tsx +21 -21
  35. package/src/components/Head.tsx +56 -56
  36. package/src/components/LayoutStyle.tsx +21 -21
  37. package/src/components/Page.tsx +33 -33
  38. package/src/components/ScrollPlaybackVideo.tsx +56 -56
  39. package/src/components/Section/Section.tsx +164 -77
  40. package/src/components/Section/useSectionColor.ts +19 -19
  41. package/src/components/Section/useSectionHeightMap.ts +19 -19
  42. package/src/components/items/CodeEmbedItem/CodeEmbedItem.tsx +132 -132
  43. package/src/components/items/CodeEmbedItem/useCodeEmbedItem.ts +36 -36
  44. package/src/components/items/CompoundItem/CompoundChild.tsx +150 -150
  45. package/src/components/items/CompoundItem/CompoundItem.tsx +71 -71
  46. package/src/components/items/CompoundItem/useCompoundItem.ts +21 -21
  47. package/src/components/items/CustomItem/CustomItem.tsx +47 -47
  48. package/src/components/items/EmbedVideoItem/VimeoEmbed.tsx +202 -202
  49. package/src/components/items/EmbedVideoItem/YoutubeEmbed.tsx +187 -187
  50. package/src/components/items/EmbedVideoItem/useEmbedVideoItem.ts +46 -46
  51. package/src/components/items/FileItem/ImageItem.tsx +156 -156
  52. package/src/components/items/FileItem/VideoItem.tsx +185 -185
  53. package/src/components/items/FileItem/useFileItem.ts +73 -73
  54. package/src/components/items/GroupItem/GroupItem.tsx +79 -79
  55. package/src/components/items/GroupItem/useGroupItem.ts +34 -34
  56. package/src/components/items/Item.tsx +251 -251
  57. package/src/components/items/LinkWrapper.tsx +39 -39
  58. package/src/components/items/RectangleItem/RectangleItem.tsx +95 -95
  59. package/src/components/items/RectangleItem/useRectangleItem.ts +82 -82
  60. package/src/components/items/RichTextItem/RichTextItem.tsx +105 -105
  61. package/src/components/items/RichTextItem/useRichTextItem.ts +12 -12
  62. package/src/components/items/RichTextWrapper.tsx +15 -15
  63. package/src/components/items/itemsMap.ts +26 -26
  64. package/src/components/items/useDraggable.ts +252 -252
  65. package/src/components/items/useItemAngle.ts +13 -13
  66. package/src/components/items/useItemArea.ts +35 -35
  67. package/src/components/items/useItemPointerEvents.ts +23 -23
  68. package/src/components/items/useItemScale.ts +17 -17
  69. package/src/components/items/useItemTriggers.ts +15 -15
  70. package/src/components/items/useRichTextItemValues.ts +65 -65
  71. package/src/components/items/useSizing.ts +25 -25
  72. package/src/components/items/useStickyItemTop.ts +21 -21
  73. package/src/components/useLayoutContext.ts +7 -7
  74. package/src/index.ts +24 -24
  75. package/src/interactions/CSSPropertyNameMap.ts +38 -38
  76. package/src/interactions/InteractionsRegistry.ts +275 -275
  77. package/src/interactions/ItemInteractionCtrl.ts +77 -77
  78. package/src/interactions/getTransition.ts +27 -27
  79. package/src/interactions/types.ts +36 -36
  80. package/src/interactions/useItemInteractionCtrl.ts +18 -18
  81. package/src/provider/ArticleRectContext.ts +4 -4
  82. package/src/provider/CntrlContext.ts +5 -5
  83. package/src/provider/CntrlProvider.tsx +11 -11
  84. package/src/provider/CntrlSdkContext.ts +69 -69
  85. package/src/provider/CustomItemRegistry.ts +14 -14
  86. package/src/provider/CustomItemTypes.ts +3 -3
  87. package/src/provider/CustomSectionRegistry.ts +25 -25
  88. package/src/provider/InteractionsContext.old.tsx +65 -65
  89. package/src/provider/InteractionsContext.test.tsx +97 -97
  90. package/src/provider/InteractionsContext.tsx +28 -28
  91. package/src/provider/Keyframes.ts +11 -11
  92. package/src/provider/KeyframesContext.ts +5 -5
  93. package/src/provider/LayoutContext.ts +3 -3
  94. package/src/provider/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 +371 -371
  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/binSearchInsertAt.ts +33 -33
  109. package/src/utils/castObject.ts +10 -10
  110. package/src/utils/effects/useImageFx.ts +113 -113
  111. package/src/utils/effects/useVideoFx.ts +116 -116
  112. package/src/utils/getAnchoredItemTop.ts +12 -12
  113. package/src/utils/getCompoundBondaryStyles.ts +61 -62
  114. package/src/utils/getFontFamilyValue.ts +3 -3
  115. package/src/utils/getInvertedRanges.ts +43 -43
  116. package/src/utils/getItemTopStyle.ts +14 -14
  117. package/src/utils/getStyleFromItemStateAndParams.ts +8 -8
  118. package/src/utils/getValidYoutubeUrl.ts +29 -29
  119. package/src/utils/isItemType.ts +6 -6
  120. package/src/utils/rangeMap.ts +13 -13
  121. package/src/utils/useElementRect.ts +23 -23
@@ -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
- PositionType
16
- } from '@cntrl-site/sdk';
17
- import { useCntrlContext } from '../../provider/useCntrlContext';
18
- import { useItemScale } from './useItemScale';
19
- import { ScaleAnchorMap } from '../../utils/ScaleAnchorMap';
20
- import { useSectionHeightData } from '../Section/useSectionHeightMap';
21
- import { getItemTopStyle } from '../../utils/getItemTopStyle';
22
- import { useStickyItemTop } from './useStickyItemTop';
23
- import { getAnchoredItemTop } from '../../utils/getAnchoredItemTop';
24
- import { useLayoutContext } from '../useLayoutContext';
25
- import { ArticleRectContext } from '../../provider/ArticleRectContext';
26
- import { useExemplary } from '../../common/useExemplary';
27
- import { AreaAnchor } from '@cntrl-site/sdk/src/types/article/ItemArea';
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(['top', 'left']);
86
- const innerStateProps = interactionCtrl?.getState(['width', 'height', 'scale', 'top', 'left']);
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
+ PositionType
16
+ } from '@cntrl-site/sdk';
17
+ import { useCntrlContext } from '../../provider/useCntrlContext';
18
+ import { useItemScale } from './useItemScale';
19
+ import { ScaleAnchorMap } from '../../utils/ScaleAnchorMap';
20
+ import { useSectionHeightData } from '../Section/useSectionHeightMap';
21
+ import { getItemTopStyle } from '../../utils/getItemTopStyle';
22
+ import { useStickyItemTop } from './useStickyItemTop';
23
+ import { getAnchoredItemTop } from '../../utils/getAnchoredItemTop';
24
+ import { useLayoutContext } from '../useLayoutContext';
25
+ import { ArticleRectContext } from '../../provider/ArticleRectContext';
26
+ import { useExemplary } from '../../common/useExemplary';
27
+ import { AreaAnchor } from '@cntrl-site/sdk/src/types/article/ItemArea';
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(['top', 'left']);
86
+ const innerStateProps = interactionCtrl?.getState(['width', 'height', 'scale', 'top', 'left']);
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
+ }