@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,77 +1,164 @@
1
- import { FC, ReactElement, useId, useRef } from 'react';
2
- import JSXStyle from 'styled-jsx/style';
3
- import {
4
- getLayoutMediaQuery,
5
- getLayoutStyles,
6
- Section as TSection,
7
- SectionHeight,
8
- SectionHeightMode
9
- } from '@cntrl-site/sdk';
10
- import { useCntrlContext } from '../../provider/useCntrlContext';
11
- import { useSectionRegistry } from '../../utils/ArticleRectManager/useSectionRegistry';
12
- import { CntrlColor } from '@cntrl-site/color';
13
-
14
- type SectionChild = ReactElement<any, any>;
15
- const DEFAULT_COLOR = 'rgba(0, 0, 0, 0)';
16
-
17
- interface Props {
18
- section: TSection;
19
- children: SectionChild[];
20
- data?: any;
21
- }
22
-
23
- export const Section: FC<Props> = ({ section, data, children }) => {
24
- const id = useId();
25
- const sectionRef = useRef<HTMLDivElement | null>(null);
26
- const { layouts, customSections } = useCntrlContext();
27
- const layoutValues: Record<string, any>[] = [section.height, section.color];
28
- const SectionComponent = section.name ? customSections.getComponent(section.name) : undefined;
29
- useSectionRegistry(section.id, sectionRef.current);
30
- const getSectionVisibilityStyles = () => {
31
- return layouts
32
- .sort((a, b) => a.startsWith - b.startsWith)
33
- .reduce((acc, layout) => {
34
- const isHidden = section.hidden[layout.id];
35
- return `
36
- ${acc}
37
- ${getLayoutMediaQuery(layout.id, layouts)} {
38
- .section-${section.id} {
39
- display: ${isHidden ? 'none': 'block'};
40
- }
41
- }`;
42
- }, '');
43
- };
44
-
45
- if (SectionComponent) return <div ref={sectionRef}><SectionComponent data={data}>{children}</SectionComponent></div>;
46
-
47
- return (
48
- <>
49
- <div
50
- className={`section-${section.id}`}
51
- id={section.name}
52
- ref={sectionRef}
53
- >
54
- {children}
55
- </div>
56
- <JSXStyle id={id}>{`
57
- ${
58
- getLayoutStyles(layouts, layoutValues, ([height, color]) => (`
59
- .section-${section.id} {
60
- height: ${getSectionHeight(height)};
61
- position: relative;
62
- background-color: ${CntrlColor.parse(color ?? DEFAULT_COLOR).fmt('rgba')};
63
- }`
64
- ))
65
- }
66
- ${getSectionVisibilityStyles()}
67
- `}</JSXStyle>
68
- </>
69
- );
70
- };
71
-
72
- export function getSectionHeight(heightData: SectionHeight): string {
73
- const { units, vhUnits, mode } = heightData;
74
- if (mode === SectionHeightMode.ViewportHeightUnits) return `${vhUnits}vh`;
75
- if (mode === SectionHeightMode.ControlUnits) return `${units * 100}vw`;
76
- return '0';
77
- }
1
+ import { FC, ReactElement, useEffect, useId, useRef, useState, useContext } from 'react';
2
+ import JSXStyle from 'styled-jsx/style';
3
+ import {
4
+ getLayoutMediaQuery,
5
+ getLayoutStyles,
6
+ Section as TSection,
7
+ SectionHeight,
8
+ SectionHeightMode
9
+ } from '@cntrl-site/sdk';
10
+ import { useCntrlContext } from '../../provider/useCntrlContext';
11
+ import { useSectionRegistry } from '../../utils/ArticleRectManager/useSectionRegistry';
12
+ import { CntrlColor } from '@cntrl-site/color';
13
+ import { useLayoutContext } from '../useLayoutContext';
14
+
15
+ type SectionChild = ReactElement<any, any>;
16
+ const DEFAULT_COLOR = 'rgba(0, 0, 0, 0)';
17
+
18
+ interface Props {
19
+ section: TSection;
20
+ children: SectionChild[];
21
+ data?: any;
22
+ }
23
+
24
+ function isVideoUrl(url: string): boolean {
25
+ const videoExtensions = ['.mp4', '.webm', '.ogg'];
26
+ return videoExtensions.some(ext => url.toLowerCase().endsWith(ext));
27
+ }
28
+
29
+ export const Section: FC<Props> = ({ section, data, children }) => {
30
+ const id = useId();
31
+ const sectionRef = useRef<HTMLDivElement | null>(null);
32
+ const { layouts, customSections } = useCntrlContext();
33
+ const layout = useLayoutContext();
34
+ const layoutValues: Record<string, any>[] = [section.height, section.color, section.media ?? {}];
35
+ const SectionComponent = section.name ? customSections.getComponent(section.name) : undefined;
36
+ const isVideo = layout && section.media?.[layout]?.url ? isVideoUrl(String(section.media?.[layout]?.url)) : false;
37
+ const videoRef = useRef<HTMLVideoElement | null>(null);
38
+ useSectionRegistry(section.id, sectionRef.current);
39
+
40
+ const getSectionVisibilityStyles = () => {
41
+ return layouts
42
+ .sort((a, b) => a.startsWith - b.startsWith)
43
+ .reduce((acc, layout) => {
44
+ const isHidden = section.hidden[layout.id];
45
+ return `
46
+ ${acc}
47
+ ${getLayoutMediaQuery(layout.id, layouts)} {
48
+ .section-${section.id} {
49
+ display: ${isHidden ? 'none' : 'block'};
50
+ }
51
+ }`;
52
+ }, '');
53
+ };
54
+
55
+ useEffect(() => {
56
+ if (!isVideo || !sectionRef.current || !videoRef.current) return;
57
+ const video = videoRef.current;
58
+ const section = sectionRef.current;
59
+ const observer = new IntersectionObserver(
60
+ ([entry]) => {
61
+ if (entry.isIntersecting) {
62
+ video.style.display = 'block';
63
+ video.play().catch(() => {});
64
+ } else {
65
+ video.style.display = 'none';
66
+ video.pause();
67
+ }
68
+ },
69
+ {
70
+ root: null,
71
+ rootMargin: '50px',
72
+ threshold: 0
73
+ }
74
+ );
75
+ observer.observe(section);
76
+ return () => observer.disconnect();
77
+ }, [isVideo]);
78
+
79
+ if (SectionComponent) return <div ref={sectionRef}><SectionComponent data={data}>{children}</SectionComponent></div>;
80
+
81
+ return (
82
+ <>
83
+ <div
84
+ className={`section-${section.id}`}
85
+ id={section.name}
86
+ ref={sectionRef}
87
+ >
88
+ {layout && section.media?.[layout]?.url && section.media?.[layout]?.size !== 'none' && sectionRef.current && (
89
+ <div className={`section-background-overlay-${section.id}`}>
90
+ <div
91
+ key={`section-background-wrapper-${section.id}`}
92
+ className={`section-background-wrapper-${section.id}`}
93
+ >
94
+ {isVideo ? (
95
+ <video
96
+ ref={videoRef}
97
+ autoPlay
98
+ loop
99
+ muted
100
+ playsInline
101
+ preload="auto"
102
+ className={`video-background-${section.id}`}
103
+ >
104
+ <source src={section.media?.[layout]?.url ?? ''} />
105
+ </video>
106
+ ) : (
107
+ <img src={section.media?.[layout]?.url ?? ''} className={`image-background-${section.id}`} />
108
+ )}
109
+ </div>
110
+ </div>
111
+ )}
112
+ {children}
113
+ </div>
114
+ <JSXStyle id={id}>{`
115
+ ${
116
+ getLayoutStyles(layouts, layoutValues, ([height, color, media]) => (`
117
+ .section-${section.id} {
118
+ height: ${getSectionHeight(height)};
119
+ position: relative;
120
+ background-color: ${CntrlColor.parse(color ?? DEFAULT_COLOR).fmt('rgba')};
121
+ }
122
+ .section-background-overlay-${section.id} {
123
+ height: ${getSectionHeight(height)};
124
+ width: 100%;
125
+ position: relative;
126
+ overflow: clip;
127
+ }
128
+ .section-background-wrapper-${section.id} {
129
+ transform: ${media?.position === 'fixed' ? 'translateY(-100vh)' : 'unset'};
130
+ left: 0;
131
+ position: relative;
132
+ height: ${media?.position === 'fixed' ? `calc(${getSectionHeight(height)} + 200vh)` : getSectionHeight(height)}};
133
+ width: 100%;
134
+ }
135
+ .video-background-${section.id} {
136
+ object-fit: ${media?.size ?? 'cover'};
137
+ width: 100%;
138
+ height: ${media?.position === 'fixed' ? '100vh' : '100%'};
139
+ position: ${media?.position === 'fixed' ? 'sticky' : 'relative'};
140
+ top: ${media?.position === 'fixed' ? '100vh' : 'unset'};
141
+ left: 0;
142
+ }
143
+ .image-background-${section.id} {
144
+ object-fit: ${media?.size};
145
+ width: 100%;
146
+ height: ${media?.position === 'fixed' ? '100vh' : '100%'};
147
+ position: ${media?.position === 'fixed' ? 'sticky' : 'relative'};
148
+ top: ${media?.position === 'fixed' ? '100vh' : 'unset'};
149
+ }
150
+ `
151
+ ))
152
+ }
153
+ ${getSectionVisibilityStyles()}
154
+ `}</JSXStyle>
155
+ </>
156
+ );
157
+ };
158
+
159
+ export function getSectionHeight(heightData: SectionHeight): string {
160
+ const { units, vhUnits, mode } = heightData;
161
+ if (mode === SectionHeightMode.ViewportHeightUnits) return `${vhUnits}vh`;
162
+ if (mode === SectionHeightMode.ControlUnits) return `${units * 100}vw`;
163
+ return '0';
164
+ }
@@ -1,19 +1,19 @@
1
- import { useMemo } from 'react';
2
- import { CntrlColor } from '@cntrl-site/color';
3
- import { useLayoutContext } from '../useLayoutContext';
4
-
5
- type LayoutIdentifier = string;
6
- const DEFAULT_COLOR = 'rgba(0, 0, 0, 0)';
7
-
8
- export const useSectionColor = (colorData: Record<LayoutIdentifier, string | null>): CntrlColor => {
9
- const layoutId = useLayoutContext();
10
- return useMemo(() => {
11
- if (!layoutId) return CntrlColor.parse(DEFAULT_COLOR);
12
- const layoutColor = colorData[layoutId];
13
- return CntrlColor.parse(
14
- !layoutColor
15
- ? DEFAULT_COLOR
16
- : layoutColor
17
- );
18
- }, [layoutId]);
19
- };
1
+ import { useMemo } from 'react';
2
+ import { CntrlColor } from '@cntrl-site/color';
3
+ import { useLayoutContext } from '../useLayoutContext';
4
+
5
+ type LayoutIdentifier = string;
6
+ const DEFAULT_COLOR = 'rgba(0, 0, 0, 0)';
7
+
8
+ export const useSectionColor = (colorData: Record<LayoutIdentifier, string | null>): CntrlColor => {
9
+ const layoutId = useLayoutContext();
10
+ return useMemo(() => {
11
+ if (!layoutId) return CntrlColor.parse(DEFAULT_COLOR);
12
+ const layoutColor = colorData[layoutId];
13
+ return CntrlColor.parse(
14
+ !layoutColor
15
+ ? DEFAULT_COLOR
16
+ : layoutColor
17
+ );
18
+ }, [layoutId]);
19
+ };
@@ -1,19 +1,19 @@
1
- import { useContext } from 'react';
2
- import { CntrlContext } from '../../provider/CntrlContext';
3
- import { Layout, SectionHeight } from '@cntrl-site/sdk';
4
- import { getSectionHeight } from './Section';
5
-
6
- export const useSectionHeightData = (sectionId: string): Record<string, string> => {
7
- const sectionHeightContext = useContext(CntrlContext);
8
- const layouts = sectionHeightContext.layouts;
9
- const sectionHeightData = sectionHeightContext.getSectionHeightData(sectionId);
10
- return sectionHeightData ? getSectionHeightMap(sectionHeightData) : getDefaultHeightData(layouts);
11
- };
12
-
13
- export function getSectionHeightMap(sectionHeight: Record<string, SectionHeight>): Record<string, string> {
14
- return Object.fromEntries(Object.entries(sectionHeight).map(([sectionId, heightData]) => [sectionId, getSectionHeight(heightData)]));
15
- }
16
-
17
- function getDefaultHeightData(layouts: Layout[]) {
18
- return layouts.reduce((acc, layout) => ({...acc, [layout.id]: '0'}), {});
19
- }
1
+ import { useContext } from 'react';
2
+ import { CntrlContext } from '../../provider/CntrlContext';
3
+ import { Layout, SectionHeight } from '@cntrl-site/sdk';
4
+ import { getSectionHeight } from './Section';
5
+
6
+ export const useSectionHeightData = (sectionId: string): Record<string, string> => {
7
+ const sectionHeightContext = useContext(CntrlContext);
8
+ const layouts = sectionHeightContext.layouts;
9
+ const sectionHeightData = sectionHeightContext.getSectionHeightData(sectionId);
10
+ return sectionHeightData ? getSectionHeightMap(sectionHeightData) : getDefaultHeightData(layouts);
11
+ };
12
+
13
+ export function getSectionHeightMap(sectionHeight: Record<string, SectionHeight>): Record<string, string> {
14
+ return Object.fromEntries(Object.entries(sectionHeight).map(([sectionId, heightData]) => [sectionId, getSectionHeight(heightData)]));
15
+ }
16
+
17
+ function getDefaultHeightData(layouts: Layout[]) {
18
+ return layouts.reduce((acc, layout) => ({...acc, [layout.id]: '0'}), {});
19
+ }
@@ -1,132 +1,132 @@
1
- import { getLayoutStyles, CodeEmbedItem as TCodeEmbedItem, AreaAnchor, FontFaceGenerator } from '@cntrl-site/sdk';
2
- import { FC, useEffect, useId, useState } from 'react';
3
- import { useCntrlContext } from '../../../provider/useCntrlContext';
4
- import { ItemProps } from '../Item';
5
- import JSXStyle from 'styled-jsx/style';
6
- import { useRegisterResize } from '../../../common/useRegisterResize';
7
- import { useItemAngle } from '../useItemAngle';
8
- import { LinkWrapper } from '../LinkWrapper';
9
- import { useCodeEmbedItem } from './useCodeEmbedItem';
10
-
11
- const stylesMap = {
12
- [AreaAnchor.TopLeft]: {},
13
- [AreaAnchor.TopCenter]: { justifyContent: 'center' },
14
- [AreaAnchor.TopRight]: { justifyContent: 'flex-end' },
15
- [AreaAnchor.MiddleLeft]: { alignItems: 'center' },
16
- [AreaAnchor.MiddleCenter]: { justifyContent: 'center', alignItems: 'center' },
17
- [AreaAnchor.MiddleRight]: { justifyContent: 'flex-end', alignItems: 'center' },
18
- [AreaAnchor.BottomLeft]: { alignItems: 'flex-end' },
19
- [AreaAnchor.BottomCenter]: { justifyContent: 'center', alignItems: 'flex-end' },
20
- [AreaAnchor.BottomRight]: { justifyContent: 'flex-end', alignItems: 'flex-end' }
21
- };
22
-
23
- export const CodeEmbedItem: FC<ItemProps<TCodeEmbedItem>> = ({ item, sectionId, onResize, interactionCtrl, onVisibilityChange }) => {
24
- const id = useId();
25
- const { layouts, fonts } = useCntrlContext();
26
- const fontGoogleTags = fonts?.google;
27
- const fontAdobeTags = fonts?.adobe;
28
- const fontCustomTags = new FontFaceGenerator(fonts?.custom ?? []).generate();
29
- const { anchor, blur: itemBlur, opacity: itemOpacity } = useCodeEmbedItem(item, sectionId);
30
- const itemAngle = useItemAngle(item, sectionId);
31
- const { html } = item.commonParams;
32
- const [ref, setRef] = useState<HTMLDivElement | null>(null);
33
- useRegisterResize(ref, onResize);
34
- const pos = stylesMap[anchor];
35
- const layoutValues: Record<string, any>[] = [item.area, item.layoutParams];
36
- const stateParams = interactionCtrl?.getState(['angle', 'blur', 'opacity']);
37
- const blur = (stateParams?.styles?.blur ?? itemBlur) as number;
38
- const opacity = stateParams?.styles?.opacity ?? itemOpacity;
39
- const angle = stateParams?.styles?.angle ?? itemAngle;
40
-
41
- useEffect(() => {
42
- if (!ref) return;
43
- const scripts = ref.querySelectorAll('script');
44
- for (const script of scripts) {
45
- const newScript = document.createElement('script');
46
- for (const attr of script.getAttributeNames()) {
47
- newScript.setAttribute(attr, script.getAttribute(attr)!);
48
- }
49
- newScript.textContent = script.textContent;
50
- script.parentNode!.removeChild(script);
51
- ref.appendChild(newScript);
52
- }
53
- }, [item.commonParams.html]);
54
-
55
- useEffect(() => {
56
- if (!ref) return;
57
- const iframe: HTMLIFrameElement | null = ref.querySelector(`[data-embed="${item.id}"]`);
58
- if (!iframe) return;
59
- const htmlWithStyles = `
60
- ${fontGoogleTags}
61
- ${fontAdobeTags}
62
- <style>
63
- ${fontCustomTags}
64
- </style>
65
- ${item.commonParams.html}
66
- `;
67
- iframe.srcdoc = htmlWithStyles;
68
- }, [item.commonParams.html, item.commonParams.iframe, ref]);
69
-
70
- const isInteractive = opacity !== 0;
71
- useEffect(() => {
72
- onVisibilityChange?.(isInteractive);
73
- }, [isInteractive, onVisibilityChange]);
74
-
75
- return (
76
- <LinkWrapper url={item.link?.url} target={item.link?.target}>
77
- <div
78
- className={`embed-wrapper-${item.id}`}
79
- style={{
80
- ...(angle !== undefined ? { transform: `rotate(${angle}deg)` } : {}),
81
- ...(blur !== undefined ? { filter: `blur(${blur * 100}vw)` } : {}),
82
- ...(opacity !== undefined ? { opacity } : {}),
83
- transition: stateParams?.transition ?? 'none'
84
- }}
85
- ref={setRef}
86
- >
87
- {item.commonParams.iframe ? (
88
- <iframe
89
- data-embed={item.id}
90
- className={`embed-${item.id}`}
91
- style={{
92
- ...pos,
93
- border: 'unset'
94
- }}
95
- />
96
- ) : (
97
- <div
98
- className={`embed-${item.id}`}
99
- style={{ ...pos }}
100
- dangerouslySetInnerHTML={{ __html: html }}
101
- />
102
- )}
103
- </div>
104
- <JSXStyle id={id}>{`
105
- .embed-wrapper-${item.id} {
106
- position: absolute;
107
- width: 100%;
108
- height: 100%;
109
- }
110
- .embed-${item.id} {
111
- transform: ${item.commonParams.scale ? 'scale(var(--layout-deviation))' : 'none'};
112
- transform-origin: top left;
113
- z-index: 1;
114
- border: none;
115
- }
116
- ${getLayoutStyles(layouts, layoutValues, ([area, layoutParams], exemplary) => {
117
- return (`
118
- .embed-wrapper-${item.id} {
119
- opacity: ${layoutParams.opacity};
120
- transform: rotate(${area.angle}deg);
121
- filter: ${layoutParams.blur !== 0 ? `blur(${layoutParams.blur * 100}vw)` : 'unset'};
122
- }
123
- .embed-${item.id} {
124
- width: ${item.commonParams.scale ? `${area.width * exemplary}px` : '100%'};
125
- height: ${item.commonParams.scale ? `${area.height * exemplary}px` : '100%'};
126
- }
127
- `);
128
- })}
129
- `}</JSXStyle>
130
- </LinkWrapper>
131
- );
132
- };
1
+ import { getLayoutStyles, CodeEmbedItem as TCodeEmbedItem, AreaAnchor, FontFaceGenerator } from '@cntrl-site/sdk';
2
+ import { FC, useEffect, useId, useState } from 'react';
3
+ import { useCntrlContext } from '../../../provider/useCntrlContext';
4
+ import { ItemProps } from '../Item';
5
+ import JSXStyle from 'styled-jsx/style';
6
+ import { useRegisterResize } from '../../../common/useRegisterResize';
7
+ import { useItemAngle } from '../useItemAngle';
8
+ import { LinkWrapper } from '../LinkWrapper';
9
+ import { useCodeEmbedItem } from './useCodeEmbedItem';
10
+
11
+ const stylesMap = {
12
+ [AreaAnchor.TopLeft]: {},
13
+ [AreaAnchor.TopCenter]: { justifyContent: 'center' },
14
+ [AreaAnchor.TopRight]: { justifyContent: 'flex-end' },
15
+ [AreaAnchor.MiddleLeft]: { alignItems: 'center' },
16
+ [AreaAnchor.MiddleCenter]: { justifyContent: 'center', alignItems: 'center' },
17
+ [AreaAnchor.MiddleRight]: { justifyContent: 'flex-end', alignItems: 'center' },
18
+ [AreaAnchor.BottomLeft]: { alignItems: 'flex-end' },
19
+ [AreaAnchor.BottomCenter]: { justifyContent: 'center', alignItems: 'flex-end' },
20
+ [AreaAnchor.BottomRight]: { justifyContent: 'flex-end', alignItems: 'flex-end' }
21
+ };
22
+
23
+ export const CodeEmbedItem: FC<ItemProps<TCodeEmbedItem>> = ({ item, sectionId, onResize, interactionCtrl, onVisibilityChange }) => {
24
+ const id = useId();
25
+ const { layouts, fonts } = useCntrlContext();
26
+ const fontGoogleTags = fonts?.google;
27
+ const fontAdobeTags = fonts?.adobe;
28
+ const fontCustomTags = new FontFaceGenerator(fonts?.custom ?? []).generate();
29
+ const { anchor, blur: itemBlur, opacity: itemOpacity } = useCodeEmbedItem(item, sectionId);
30
+ const itemAngle = useItemAngle(item, sectionId);
31
+ const { html } = item.commonParams;
32
+ const [ref, setRef] = useState<HTMLDivElement | null>(null);
33
+ useRegisterResize(ref, onResize);
34
+ const pos = stylesMap[anchor];
35
+ const layoutValues: Record<string, any>[] = [item.area, item.layoutParams];
36
+ const stateParams = interactionCtrl?.getState(['angle', 'blur', 'opacity']);
37
+ const blur = (stateParams?.styles?.blur ?? itemBlur) as number;
38
+ const opacity = stateParams?.styles?.opacity ?? itemOpacity;
39
+ const angle = stateParams?.styles?.angle ?? itemAngle;
40
+
41
+ useEffect(() => {
42
+ if (!ref) return;
43
+ const scripts = ref.querySelectorAll('script');
44
+ for (const script of scripts) {
45
+ const newScript = document.createElement('script');
46
+ for (const attr of script.getAttributeNames()) {
47
+ newScript.setAttribute(attr, script.getAttribute(attr)!);
48
+ }
49
+ newScript.textContent = script.textContent;
50
+ script.parentNode!.removeChild(script);
51
+ ref.appendChild(newScript);
52
+ }
53
+ }, [item.commonParams.html]);
54
+
55
+ useEffect(() => {
56
+ if (!ref) return;
57
+ const iframe: HTMLIFrameElement | null = ref.querySelector(`[data-embed="${item.id}"]`);
58
+ if (!iframe) return;
59
+ const htmlWithStyles = `
60
+ ${fontGoogleTags}
61
+ ${fontAdobeTags}
62
+ <style>
63
+ ${fontCustomTags}
64
+ </style>
65
+ ${item.commonParams.html}
66
+ `;
67
+ iframe.srcdoc = htmlWithStyles;
68
+ }, [item.commonParams.html, item.commonParams.iframe, ref]);
69
+
70
+ const isInteractive = opacity !== 0;
71
+ useEffect(() => {
72
+ onVisibilityChange?.(isInteractive);
73
+ }, [isInteractive, onVisibilityChange]);
74
+
75
+ return (
76
+ <LinkWrapper url={item.link?.url} target={item.link?.target}>
77
+ <div
78
+ className={`embed-wrapper-${item.id}`}
79
+ style={{
80
+ ...(angle !== undefined ? { transform: `rotate(${angle}deg)` } : {}),
81
+ ...(blur !== undefined ? { filter: `blur(${blur * 100}vw)` } : {}),
82
+ ...(opacity !== undefined ? { opacity } : {}),
83
+ transition: stateParams?.transition ?? 'none'
84
+ }}
85
+ ref={setRef}
86
+ >
87
+ {item.commonParams.iframe ? (
88
+ <iframe
89
+ data-embed={item.id}
90
+ className={`embed-${item.id}`}
91
+ style={{
92
+ ...pos,
93
+ border: 'unset'
94
+ }}
95
+ />
96
+ ) : (
97
+ <div
98
+ className={`embed-${item.id}`}
99
+ style={{ ...pos }}
100
+ dangerouslySetInnerHTML={{ __html: html }}
101
+ />
102
+ )}
103
+ </div>
104
+ <JSXStyle id={id}>{`
105
+ .embed-wrapper-${item.id} {
106
+ position: absolute;
107
+ width: 100%;
108
+ height: 100%;
109
+ }
110
+ .embed-${item.id} {
111
+ transform: ${item.commonParams.scale ? 'scale(var(--layout-deviation))' : 'none'};
112
+ transform-origin: top left;
113
+ z-index: 1;
114
+ border: none;
115
+ }
116
+ ${getLayoutStyles(layouts, layoutValues, ([area, layoutParams], exemplary) => {
117
+ return (`
118
+ .embed-wrapper-${item.id} {
119
+ opacity: ${layoutParams.opacity};
120
+ transform: rotate(${area.angle}deg);
121
+ filter: ${layoutParams.blur !== 0 ? `blur(${layoutParams.blur * 100}vw)` : 'unset'};
122
+ }
123
+ .embed-${item.id} {
124
+ width: ${item.commonParams.scale ? `${area.width * exemplary}px` : '100%'};
125
+ height: ${item.commonParams.scale ? `${area.height * exemplary}px` : '100%'};
126
+ }
127
+ `);
128
+ })}
129
+ `}</JSXStyle>
130
+ </LinkWrapper>
131
+ );
132
+ };
@@ -1,36 +1,36 @@
1
- import { CodeEmbedItem, AreaAnchor, KeyframeType } from '@cntrl-site/sdk';
2
- import { useLayoutContext } from '../../useLayoutContext';
3
- import { useKeyframeValue } from '../../../common/useKeyframeValue';
4
-
5
- export const useCodeEmbedItem = (item: CodeEmbedItem, sectionId: string) => {
6
- const layoutId = useLayoutContext();
7
-
8
- const blur = useKeyframeValue(
9
- item,
10
- KeyframeType.Blur,
11
- (item, layoutId) => {
12
- if (!layoutId) return;
13
- const layoutParams = item.layoutParams[layoutId];
14
- return 'blur' in layoutParams ? layoutParams.blur : 0;
15
- },
16
- (animator, scroll, value) => value !== undefined ? animator.getBlur({ blur: value }, scroll).blur : undefined,
17
- sectionId,
18
- [layoutId]
19
- );
20
-
21
- const opacity = useKeyframeValue(
22
- item,
23
- KeyframeType.Opacity,
24
- (item, layoutId) => {
25
- if (!layoutId) return;
26
- const layoutParams = item.layoutParams[layoutId];
27
- return 'opacity' in layoutParams ? layoutParams.opacity : 1;
28
- },
29
- (animator, scroll, value) => value !== undefined ? animator.getOpacity({ opacity: value }, scroll).opacity : undefined,
30
- sectionId,
31
- [layoutId]
32
- );
33
-
34
- const anchor = layoutId && 'areaAnchor' in item.layoutParams[layoutId] ? item.layoutParams[layoutId].areaAnchor : AreaAnchor.TopLeft;
35
- return { anchor, blur, opacity };
36
- };
1
+ import { CodeEmbedItem, AreaAnchor, KeyframeType } from '@cntrl-site/sdk';
2
+ import { useLayoutContext } from '../../useLayoutContext';
3
+ import { useKeyframeValue } from '../../../common/useKeyframeValue';
4
+
5
+ export const useCodeEmbedItem = (item: CodeEmbedItem, sectionId: string) => {
6
+ const layoutId = useLayoutContext();
7
+
8
+ const blur = useKeyframeValue(
9
+ item,
10
+ KeyframeType.Blur,
11
+ (item, layoutId) => {
12
+ if (!layoutId) return;
13
+ const layoutParams = item.layoutParams[layoutId];
14
+ return 'blur' in layoutParams ? layoutParams.blur : 0;
15
+ },
16
+ (animator, scroll, value) => value !== undefined ? animator.getBlur({ blur: value }, scroll).blur : undefined,
17
+ sectionId,
18
+ [layoutId]
19
+ );
20
+
21
+ const opacity = useKeyframeValue(
22
+ item,
23
+ KeyframeType.Opacity,
24
+ (item, layoutId) => {
25
+ if (!layoutId) return;
26
+ const layoutParams = item.layoutParams[layoutId];
27
+ return 'opacity' in layoutParams ? layoutParams.opacity : 1;
28
+ },
29
+ (animator, scroll, value) => value !== undefined ? animator.getOpacity({ opacity: value }, scroll).opacity : undefined,
30
+ sectionId,
31
+ [layoutId]
32
+ );
33
+
34
+ const anchor = layoutId && 'areaAnchor' in item.layoutParams[layoutId] ? item.layoutParams[layoutId].areaAnchor : AreaAnchor.TopLeft;
35
+ return { anchor, blur, opacity };
36
+ };