@developer_tribe/react-builder 1.2.42 → 1.2.44-test.1

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 (131) hide show
  1. package/dist/build-components/BIcon/BIconProps.generated.d.ts +1 -1
  2. package/dist/build-components/Checkbox/Checkbox.d.ts +6 -0
  3. package/dist/build-components/Checkbox/CheckboxProps.generated.d.ts +67 -0
  4. package/dist/build-components/CountDown/CountDownProps.generated.d.ts +1 -1
  5. package/dist/build-components/FormCheckbox/FormCheckbox.d.ts +3 -0
  6. package/dist/build-components/FormCheckbox/FormCheckboxProps.generated.d.ts +69 -0
  7. package/dist/build-components/FormErrorText/FormErrorText.d.ts +3 -0
  8. package/dist/build-components/FormErrorText/FormErrorTextProps.generated.d.ts +61 -0
  9. package/dist/build-components/FormProvider/FormProvider.d.ts +11 -0
  10. package/dist/build-components/FormProvider/FormProviderProps.generated.d.ts +55 -0
  11. package/dist/build-components/FormSubmitButton/FormSubmitButton.d.ts +2 -0
  12. package/dist/build-components/FormSubmitButton/FormSubmitButtonProps.generated.d.ts +73 -0
  13. package/dist/build-components/GlobalProvider/GlobalContext.d.ts +28 -0
  14. package/dist/build-components/GlobalProvider/GlobalProvider.d.ts +5 -0
  15. package/dist/build-components/GlobalProvider/GlobalProviderProps.generated.d.ts +60 -0
  16. package/dist/build-components/GlobalProvider/globalProviderUtils.d.ts +37 -0
  17. package/dist/build-components/GlobalProvider/useGlobalNavigation.d.ts +19 -0
  18. package/dist/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +17 -10
  19. package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +1 -1
  20. package/dist/build-components/OnboardProvider/OnboardProviderProps.generated.d.ts +2 -0
  21. package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +1 -1
  22. package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +1 -1
  23. package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +1 -1
  24. package/dist/build-components/PaywallFooter/PaywallFooterProps.generated.d.ts +1 -1
  25. package/dist/build-components/PaywallProvider/PaywallProviderProps.generated.d.ts +2 -0
  26. package/dist/build-components/PriceTag/PriceTagProps.generated.d.ts +1 -1
  27. package/dist/build-components/Pricing/PricingProps.generated.d.ts +1 -1
  28. package/dist/build-components/Promo/PromoProps.generated.d.ts +1 -1
  29. package/dist/build-components/SystemButton/SystemButton.d.ts +7 -0
  30. package/dist/build-components/SystemButton/SystemButtonProps.generated.d.ts +71 -0
  31. package/dist/build-components/SystemButton/usePlacementButtonEvents.d.ts +28 -0
  32. package/dist/build-components/TermsProvider/TermsProvider.d.ts +5 -0
  33. package/dist/build-components/TermsProvider/TermsProviderProps.generated.d.ts +55 -0
  34. package/dist/build-components/Text/TextProps.generated.d.ts +1 -1
  35. package/dist/build-components/WebView/WebView.d.ts +2 -0
  36. package/dist/build-components/WebView/WebViewProps.generated.d.ts +59 -0
  37. package/dist/build-components/index.d.ts +10 -1
  38. package/dist/build-components/patterns.generated.d.ts +5507 -1543
  39. package/dist/index.cjs.js +1 -1
  40. package/dist/index.cjs.js.map +1 -1
  41. package/dist/index.esm.js +1 -1
  42. package/dist/index.esm.js.map +1 -1
  43. package/dist/index.web.cjs.js +5 -5
  44. package/dist/index.web.cjs.js.map +1 -1
  45. package/dist/index.web.d.ts +1 -0
  46. package/dist/index.web.esm.js +4 -4
  47. package/dist/index.web.esm.js.map +1 -1
  48. package/dist/mockOS/context/MockOSContextBase.d.ts +3 -1
  49. package/dist/styles.css +1 -1
  50. package/dist/types/PreviewConfig.d.ts +1 -1
  51. package/package.json +2 -1
  52. package/src/RenderPage.tsx +4 -1
  53. package/src/assets/meta.json +1 -1
  54. package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
  55. package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
  56. package/src/assets/samples/getSamples.ts +7 -0
  57. package/src/assets/samples/global-onboard-flow.json +729 -0
  58. package/src/assets/samples/paywall-1.json +2 -2
  59. package/src/assets/samples/terms-and-privacy-no-form.json +108 -0
  60. package/src/assets/samples/terms-and-privacy.json +130 -0
  61. package/src/attributes-editor/FallbackLocalizationField.tsx +725 -250
  62. package/src/build-components/BIcon/BIconProps.generated.ts +1 -1
  63. package/src/build-components/Checkbox/Checkbox.tsx +165 -0
  64. package/src/build-components/Checkbox/CheckboxProps.generated.ts +84 -0
  65. package/src/build-components/Checkbox/pattern.json +83 -0
  66. package/src/build-components/CountDown/CountDownProps.generated.ts +1 -1
  67. package/src/build-components/FormCheckbox/FormCheckbox.tsx +106 -0
  68. package/src/build-components/FormCheckbox/FormCheckboxProps.generated.ts +86 -0
  69. package/src/build-components/FormCheckbox/pattern.json +39 -0
  70. package/src/build-components/FormErrorText/FormErrorText.tsx +34 -0
  71. package/src/build-components/FormErrorText/FormErrorTextProps.generated.ts +78 -0
  72. package/src/build-components/FormErrorText/pattern.json +21 -0
  73. package/src/build-components/FormProvider/FormProvider.tsx +131 -0
  74. package/src/build-components/FormProvider/FormProviderProps.generated.ts +72 -0
  75. package/src/build-components/FormProvider/pattern.json +33 -0
  76. package/src/build-components/FormSubmitButton/FormSubmitButton.tsx +49 -0
  77. package/src/build-components/FormSubmitButton/FormSubmitButtonProps.generated.ts +91 -0
  78. package/src/build-components/FormSubmitButton/pattern.json +33 -0
  79. package/src/build-components/GlobalProvider/GlobalContext.ts +48 -0
  80. package/src/build-components/GlobalProvider/GlobalProvider.tsx +191 -0
  81. package/src/build-components/GlobalProvider/GlobalProviderProps.generated.ts +78 -0
  82. package/src/build-components/GlobalProvider/globalProviderUtils.ts +163 -0
  83. package/src/build-components/GlobalProvider/pattern.json +55 -0
  84. package/src/build-components/GlobalProvider/useGlobalNavigation.ts +70 -0
  85. package/src/build-components/OnboardButton/OnboardButton.tsx +41 -36
  86. package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +17 -10
  87. package/src/build-components/OnboardButton/pattern.json +5 -4
  88. package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +1 -1
  89. package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +12 -0
  90. package/src/build-components/OnboardProvider/pattern.json +9 -1
  91. package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +1 -1
  92. package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +1 -1
  93. package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +1 -1
  94. package/src/build-components/PaywallFooter/PaywallFooterProps.generated.ts +1 -1
  95. package/src/build-components/PaywallProvider/PaywallProviderProps.generated.ts +12 -0
  96. package/src/build-components/PaywallProvider/pattern.json +9 -1
  97. package/src/build-components/PriceTag/PriceTagProps.generated.ts +1 -1
  98. package/src/build-components/Pricing/PricingProps.generated.ts +1 -1
  99. package/src/build-components/Promo/PromoProps.generated.ts +1 -1
  100. package/src/build-components/RenderNode.generated.tsx +46 -1
  101. package/src/build-components/SystemButton/SystemButton.tsx +71 -0
  102. package/src/build-components/SystemButton/SystemButtonProps.generated.ts +89 -0
  103. package/src/build-components/SystemButton/pattern.json +61 -0
  104. package/src/build-components/SystemButton/usePlacementButtonEvents.ts +101 -0
  105. package/src/build-components/TermsProvider/TermsProvider.tsx +45 -0
  106. package/src/build-components/TermsProvider/TermsProviderProps.generated.ts +82 -0
  107. package/src/build-components/TermsProvider/pattern.json +35 -0
  108. package/src/build-components/Text/Text.tsx +5 -4
  109. package/src/build-components/Text/TextProps.generated.ts +1 -1
  110. package/src/build-components/Text/pattern.json +2 -1
  111. package/src/build-components/WebView/WebView.tsx +149 -0
  112. package/src/build-components/WebView/WebViewProps.generated.ts +76 -0
  113. package/src/build-components/WebView/pattern.json +71 -0
  114. package/src/build-components/index.ts +45 -0
  115. package/src/build-components/patterns.generated.ts +5712 -1559
  116. package/src/hooks/useSafeAreaViewStyle.ts +1 -11
  117. package/src/index.web.ts +3 -0
  118. package/src/mockOS/components/MockOSRouter.tsx +21 -0
  119. package/src/mockOS/context/MockOSContext.tsx +7 -0
  120. package/src/mockOS/context/MockOSContextBase.ts +4 -0
  121. package/src/styles/components/_checkbox.scss +19 -0
  122. package/src/styles/components/_global-provider.scss +131 -0
  123. package/src/styles/components/_webview.scss +52 -0
  124. package/src/styles/index.scss +4 -0
  125. package/src/types/PreviewConfig.ts +19 -0
  126. package/src/utils/analyseNodeByPatterns.ts +5 -2
  127. package/src/utils/extractViewStyle/extractViewStyle.ts +0 -1
  128. package/src/utils/projectColors.ts +4 -0
  129. package/src/utils/useMergedStyle.ts +1 -1
  130. package/src/.DS_Store +0 -0
  131. package/src/assets/.DS_Store +0 -0
@@ -0,0 +1,78 @@
1
+ /* AUTO-GENERATED FILE - DO NOT EDIT */
2
+
3
+ import type { NodeData } from '../../types/Node';
4
+
5
+ export type FlexDirectionOptionType = 'row' | 'column';
6
+ export type FlexWrapOptionType = 'nowrap' | 'wrap' | 'wrap-reverse';
7
+ export type AlignItemsOptionType =
8
+ | 'flex-start'
9
+ | 'center'
10
+ | 'flex-end'
11
+ | 'stretch'
12
+ | 'baseline';
13
+ export type JustifyContentOptionType =
14
+ | 'flex-start'
15
+ | 'center'
16
+ | 'flex-end'
17
+ | 'space-between'
18
+ | 'space-around'
19
+ | 'space-evenly';
20
+ export type PositionOptionType = 'relative' | 'absolute';
21
+
22
+ export interface SkipConditionEntryGenerated {
23
+ pageKey?: string;
24
+ conditionKey?: string;
25
+ }
26
+
27
+ export interface GlobalProviderStyleGenerated {
28
+ flexDirection?: FlexDirectionOptionType;
29
+ flexWrap?: FlexWrapOptionType;
30
+ alignItems?: AlignItemsOptionType;
31
+ justifyContent?: JustifyContentOptionType;
32
+ gap?: string;
33
+ padding?: string;
34
+ paddingHorizontal?: string;
35
+ paddingVertical?: string;
36
+ paddingTop?: string;
37
+ paddingBottom?: string;
38
+ paddingLeft?: string;
39
+ paddingRight?: string;
40
+ margin?: string;
41
+ marginHorizontal?: string;
42
+ marginVertical?: string;
43
+ marginTop?: string;
44
+ marginBottom?: string;
45
+ marginLeft?: string;
46
+ marginRight?: string;
47
+ backgroundColor?: string;
48
+ borderRadius?: string;
49
+ width?: string;
50
+ minWidth?: string;
51
+ maxWidth?: string;
52
+ height?: string;
53
+ minHeight?: string;
54
+ maxHeight?: string;
55
+ flex?: number;
56
+ position?: PositionOptionType;
57
+ top?: string;
58
+ bottom?: string;
59
+ left?: string;
60
+ right?: string;
61
+ zIndex?: number;
62
+ }
63
+
64
+ export interface GlobalProviderPropsGenerated {
65
+ child: string;
66
+ attributes: {
67
+ styles?: GlobalProviderStyleGenerated;
68
+ scrollable?: boolean;
69
+ testID?: string;
70
+ initialPage?: string;
71
+ persistProgress?: boolean;
72
+ skipConditions?: SkipConditionEntryGenerated[];
73
+ };
74
+ }
75
+
76
+ export interface GlobalProviderComponentProps {
77
+ node: NodeData<GlobalProviderPropsGenerated['attributes']>;
78
+ }
@@ -0,0 +1,163 @@
1
+ import type { NodeData } from '../../types/Node';
2
+ import type { GlobalPage } from './GlobalContext';
3
+
4
+ /** Maps node type to a canonical page key when no explicit pageKey attribute is provided. */
5
+ const TYPE_KEY_MAP: Record<string, string> = {
6
+ TermsProvider: 'terms',
7
+ OnboardProvider: 'onboard',
8
+ PaywallProvider: 'paywall',
9
+ FormProvider: 'form',
10
+ CarouselProvider: 'carousel',
11
+ };
12
+
13
+ /**
14
+ * Derives a stable page key for a child node.
15
+ * Priority: node.key (standard NodeData field) → TYPE_KEY_MAP → "${type}-{index}"
16
+ *
17
+ * Using node.key avoids adding unknown attributes to child components that
18
+ * would fail builder validation.
19
+ */
20
+ export function derivePageKey(node: NodeData, index: number): string {
21
+ if (typeof node.key === 'string' && node.key.trim()) {
22
+ return node.key.trim();
23
+ }
24
+ const mapped = TYPE_KEY_MAP[node.type];
25
+ if (mapped) {
26
+ return mapped;
27
+ }
28
+ const typeSlug = node.type?.toLowerCase?.() ?? 'page';
29
+ return `${typeSlug}-${index}`;
30
+ }
31
+
32
+ /** Runtime shape of a SkipConditionEntry (mirrors the types block in pattern.json). */
33
+ export interface SkipConditionEntry {
34
+ pageKey: string;
35
+ conditionKey: string;
36
+ }
37
+
38
+ /**
39
+ * Converts SkipConditionEntry[] (from pattern schema) to a lookup map for fast access.
40
+ * Array format is used in pattern.json because the schema system doesn't support
41
+ * plain Record/object attribute types.
42
+ */
43
+ export function normalizeSkipConditions(raw: unknown): Record<string, string> {
44
+ if (!Array.isArray(raw)) return {};
45
+ const result: Record<string, string> = {};
46
+ for (const entry of raw) {
47
+ if (
48
+ entry &&
49
+ typeof entry === 'object' &&
50
+ typeof (entry as SkipConditionEntry).pageKey === 'string' &&
51
+ typeof (entry as SkipConditionEntry).conditionKey === 'string'
52
+ ) {
53
+ result[(entry as SkipConditionEntry).pageKey] = (
54
+ entry as SkipConditionEntry
55
+ ).conditionKey;
56
+ }
57
+ }
58
+ return result;
59
+ }
60
+
61
+ /**
62
+ * Builds the page list for GlobalProvider.
63
+ *
64
+ * @param children - direct child nodes of GlobalProvider
65
+ * @param skipConditions - lookup map of pageKey → conditionKey, already normalized
66
+ * from SkipConditionEntry[] via normalizeSkipConditions().
67
+ */
68
+ export function buildPages(
69
+ children: NodeData[],
70
+ skipConditions: Record<string, string> = {},
71
+ ): GlobalPage[] {
72
+ return children.map((node, index) => {
73
+ const key = derivePageKey(node, index);
74
+ const skipIf = skipConditions[key] ?? undefined;
75
+ const animation =
76
+ typeof (node.attributes as Record<string, unknown>)?.animation ===
77
+ 'string'
78
+ ? (node.attributes as Record<string, string>).animation
79
+ : undefined;
80
+ return {
81
+ key,
82
+ node,
83
+ skipIf,
84
+ animation,
85
+ index,
86
+ };
87
+ });
88
+ }
89
+
90
+ /** Returns the first non-skipped page key, starting from the requested key. */
91
+ export function resolveEffectivePage(
92
+ targetKey: string,
93
+ pages: GlobalPage[],
94
+ conditions: Record<string, boolean>,
95
+ ): string {
96
+ const targetIdx = pages.findIndex((p) => p.key === targetKey);
97
+ if (targetIdx === -1) {
98
+ return pages[0]?.key ?? targetKey;
99
+ }
100
+
101
+ // Walk forward from target, skipping pages whose condition is met
102
+ for (let i = targetIdx; i < pages.length; i++) {
103
+ const page = pages[i];
104
+ if (!page) break;
105
+ if (page.skipIf && conditions[page.skipIf] === true) {
106
+ continue;
107
+ }
108
+ return page.key;
109
+ }
110
+
111
+ // All remaining pages are skipped — return last page key anyway
112
+ return pages[pages.length - 1]?.key ?? targetKey;
113
+ }
114
+
115
+ const STORAGE_KEY_PREFIX = 'global-provider-progress';
116
+
117
+ export function persistProgress(
118
+ storageKey: string,
119
+ currentPageKey: string,
120
+ conditions: Record<string, boolean>,
121
+ ): void {
122
+ try {
123
+ localStorage.setItem(
124
+ `${STORAGE_KEY_PREFIX}-${storageKey}`,
125
+ JSON.stringify({ currentPageKey, conditions }),
126
+ );
127
+ } catch {
128
+ // localStorage unavailable (SSR, private browsing etc.)
129
+ }
130
+ }
131
+
132
+ export function loadProgress(storageKey: string): {
133
+ currentPageKey: string;
134
+ conditions: Record<string, boolean>;
135
+ } | null {
136
+ try {
137
+ const raw = localStorage.getItem(`${STORAGE_KEY_PREFIX}-${storageKey}`);
138
+ if (!raw) return null;
139
+ const parsed = JSON.parse(raw) as unknown;
140
+ if (
141
+ parsed &&
142
+ typeof parsed === 'object' &&
143
+ !Array.isArray(parsed) &&
144
+ typeof (parsed as Record<string, unknown>).currentPageKey === 'string'
145
+ ) {
146
+ return parsed as {
147
+ currentPageKey: string;
148
+ conditions: Record<string, boolean>;
149
+ };
150
+ }
151
+ } catch {
152
+ // parse error
153
+ }
154
+ return null;
155
+ }
156
+
157
+ export function clearProgress(storageKey: string): void {
158
+ try {
159
+ localStorage.removeItem(`${STORAGE_KEY_PREFIX}-${storageKey}`);
160
+ } catch {
161
+ // localStorage unavailable
162
+ }
163
+ }
@@ -0,0 +1,55 @@
1
+ {
2
+ "schemaVersion": 2,
3
+ "types": {
4
+ "SkipConditionEntry": {
5
+ "pageKey": "string",
6
+ "conditionKey": "string"
7
+ }
8
+ },
9
+ "pattern": {
10
+ "type": "GlobalProvider",
11
+ "title": "title",
12
+ "description": "description",
13
+ "children": "node",
14
+ "extends": "View",
15
+ "attributes": {
16
+ "initialPage": "string",
17
+ "persistProgress": "boolean",
18
+ "skipConditions": "SkipConditionEntry[]"
19
+ }
20
+ },
21
+ "defaults": {
22
+ "styles": {
23
+ "flex": 1
24
+ }
25
+ },
26
+ "meta": {
27
+ "desiredParent": ["root"],
28
+ "label": "Global Provider",
29
+ "description": "Top-level provider that manages multi-page flow (Terms → Onboard → Paywall). Each direct child is treated as a page.",
30
+ "attributes": {
31
+ "initialPage": {
32
+ "label": "Initial Page Key",
33
+ "description": "The page key to show first. Defaults to the first child.",
34
+ "category": "other",
35
+ "specialCategory": null,
36
+ "sort": 1
37
+ },
38
+ "persistProgress": {
39
+ "label": "Persist Progress",
40
+ "description": "Save current page and conditions to localStorage so the user continues from where they left off.",
41
+ "category": "other",
42
+ "specialCategory": null,
43
+ "sort": 2
44
+ },
45
+ "skipConditions": {
46
+ "label": "Skip Conditions",
47
+ "description": "List of page skip rules. Each entry maps a pageKey to a conditionKey: when conditions[conditionKey] is true, that page is skipped on navigate.",
48
+ "category": "other",
49
+ "specialCategory": null,
50
+ "sort": 3
51
+ }
52
+ },
53
+ "styles": {}
54
+ }
55
+ }
@@ -0,0 +1,70 @@
1
+ import { useCallback } from 'react';
2
+ import { useGlobalContext } from './GlobalContext';
3
+ import { useMockOSContext } from '../../mockOS/context/MockOSContextBase';
4
+ import type { RouteType } from '../../mockOS/context/MockOSContextBase';
5
+
6
+ /**
7
+ * Maps route/placement aliases to their canonical GlobalProvider page keys.
8
+ *
9
+ * Add entries here when a new alias should resolve to an existing page key.
10
+ * Keys are the incoming target strings (from JSON events / usePlacementButtonEvents).
11
+ * Values are the canonical page key that GlobalContext.navigate() will receive.
12
+ *
13
+ * Exported so other modules (e.g. a navigation-flow visualiser) can inspect
14
+ * which aliases exist without duplicating this logic.
15
+ */
16
+ export const GLOBAL_ROUTE_ALIASES: Record<string, string> = {
17
+ subscription: 'paywall',
18
+ paywall: 'paywall',
19
+ onboard: 'onboard',
20
+ terms: 'terms',
21
+ home: 'home',
22
+ };
23
+
24
+ /**
25
+ * Returns a navigate function that first attempts to route within GlobalContext
26
+ * (when a GlobalProvider is active), then falls back to MockOSContext navigation.
27
+ *
28
+ * Used by SystemButton and OnboardButton so that events defined in JSON work
29
+ * transparently whether rendered inside a GlobalProvider or standalone.
30
+ */
31
+ export function useGlobalNavigation(): (target: string) => boolean {
32
+ const globalCtx = useGlobalContext();
33
+ const mockOS = useMockOSContext();
34
+
35
+ return useCallback(
36
+ (target: string): boolean => {
37
+ if (globalCtx) {
38
+ // Direct page key match
39
+ console.log('target', target);
40
+ console.log('globalCtx.pages', globalCtx.pages);
41
+ if (globalCtx.pages.some((p) => p.key === target)) {
42
+ globalCtx.navigate(target);
43
+ return true;
44
+ }
45
+
46
+ // Alias resolution: map incoming target to canonical page key
47
+ const canonicalKey = GLOBAL_ROUTE_ALIASES[target];
48
+ console.log('canonicalKey', canonicalKey);
49
+ if (
50
+ canonicalKey &&
51
+ globalCtx.pages.some((p) => p.key === canonicalKey)
52
+ ) {
53
+ console.log('navigate to canonicalKey', canonicalKey);
54
+ globalCtx.navigate(canonicalKey);
55
+ return true;
56
+ }
57
+ }
58
+
59
+ console.log('fallback to MockOSContext', target);
60
+ // Fallback: delegate to MockOSContext
61
+ if (mockOS) {
62
+ mockOS.navigation(target as RouteType);
63
+ return true;
64
+ }
65
+
66
+ return false;
67
+ },
68
+ [globalCtx, mockOS],
69
+ );
70
+ }
@@ -1,8 +1,5 @@
1
- import React, { useContext, useId, useRef } from 'react';
2
- import type {
3
- EventObjectGenerated,
4
- OnboardButtonComponentProps,
5
- } from './OnboardButtonProps.generated';
1
+ import React, { useContext, useId, useCallback } from 'react';
2
+ import type { OnboardButtonComponentProps } from './OnboardButtonProps.generated';
6
3
  import { onboardContext } from '../OnboardProvider/OnboardProvider';
7
4
  import useNode from '../useNode';
8
5
  import { useBuilderParams } from '../../components/BuilderProvider';
@@ -11,6 +8,11 @@ import { useExtractViewStyle } from '../../attribute-analyser/style/web/useExtra
11
8
  import { useMockOSContext, useMockPermission } from '../../mockOS';
12
9
  import { useLocalize } from '../../hooks/useLocalize';
13
10
  import { parseColor } from '../../utils/parseColor';
11
+ import {
12
+ usePlacementButtonEvents,
13
+ type PlacementEventObject,
14
+ } from '../SystemButton/usePlacementButtonEvents';
15
+ import { useGlobalNavigation } from '../GlobalProvider/useGlobalNavigation';
14
16
 
15
17
  export function OnboardButton({ node }: OnboardButtonComponentProps) {
16
18
  useLogRender('OnboardButton');
@@ -20,7 +22,7 @@ export function OnboardButton({ node }: OnboardButtonComponentProps) {
20
22
  const { selectedTheme: theme, projectColors } = useBuilderParams();
21
23
  const context = useMockOSContext();
22
24
  const mockPermissionManager = useMockPermission(context);
23
- const handledEventsRef = useRef<EventObjectGenerated[]>([]);
25
+ const globalNavigate = useGlobalNavigation();
24
26
  const generatedId = useId();
25
27
  const attributeKey = node.key ?? generatedId;
26
28
  const attrs = node.attributes;
@@ -30,40 +32,43 @@ export function OnboardButton({ node }: OnboardButtonComponentProps) {
30
32
  const rawTextColor = attrs?.styles?.color as string | undefined;
31
33
  const textColor = parseColor(rawTextColor, { projectColors, theme });
32
34
  const viewStyle = useExtractViewStyle(node);
33
- const handleClick = async () => {
34
- //TODO: any ??
35
- const events: EventObjectGenerated[] = attrs?.events ?? [];
36
35
 
37
- for (const e of events) {
38
- // Check if event is already handled
39
- if (handledEventsRef.current.includes(e)) {
40
- continue;
36
+ const onNavigateWithoutPlacement = useCallback(
37
+ (e: PlacementEventObject): boolean => {
38
+ const eventTargetIndex = e.targetIndex;
39
+ if (typeof eventTargetIndex === 'number') {
40
+ emblaApi?.scrollTo(eventTargetIndex);
41
+ return true;
41
42
  }
42
-
43
- if (e.type === 'Permission') {
44
- const permission = e.permission ?? 'camera';
45
- await mockPermissionManager.requestPermission(permission);
46
- handledEventsRef.current.push(e);
47
- } else if (e.type === 'Navigate') {
48
- const eventTargetIndex = e.targetIndex;
49
- if (typeof eventTargetIndex === 'number') {
50
- emblaApi?.scrollTo(eventTargetIndex);
51
- handledEventsRef.current.push(e);
52
- } else if (e.navigate_to) {
53
- const eventTarget = e.navigate_to;
54
- if (typeof eventTarget === 'string') {
55
- handledEventsRef.current.push(e);
56
- if (context) {
57
- context.navigation(eventTarget as any);
58
- } else {
59
- console.warn('Mock OS context not available for navigation.');
60
- }
61
- }
43
+ if (e.navigate_to && typeof e.navigate_to === 'string') {
44
+ if (globalNavigate(e.navigate_to)) return true;
45
+ if (context) {
46
+ context.navigation(
47
+ e.navigate_to as
48
+ | 'onboard'
49
+ | 'terms'
50
+ | 'subscription'
51
+ | 'app'
52
+ | 'home'
53
+ | 'launchscreen',
54
+ );
55
+ } else {
56
+ console.warn('Mock OS context not available for navigation.');
62
57
  }
58
+ return true;
63
59
  }
64
- }
65
- // Fallback: do nothing when there is no Navigate event
66
- };
60
+ return false;
61
+ },
62
+ [emblaApi, context, globalNavigate],
63
+ );
64
+
65
+ const handleClick = usePlacementButtonEvents(attrs?.events, {
66
+ context,
67
+ requestPermission: (permission) =>
68
+ mockPermissionManager.requestPermission(permission),
69
+ onNavigateWithoutPlacement,
70
+ globalNavigate,
71
+ });
67
72
 
68
73
  return (
69
74
  <button
@@ -2,8 +2,7 @@
2
2
 
3
3
  import type { NodeData } from '../../types/Node';
4
4
 
5
- export type TypeOptionType = 'Permission' | 'Navigate';
6
- export type PermissionOptionType = 'att' | 'notification' | 'rating' | 'GDPR';
5
+ export type TypeOptionType = 'Permission' | 'Navigate' | 'Placement';
7
6
  export type TestIDOptionType = 'onboardSkip' | 'onboardNext';
8
7
  export type AnimationOptionType =
9
8
  | 'simple-animation'
@@ -30,12 +29,21 @@ export type PositionOptionType = 'relative' | 'absolute';
30
29
 
31
30
  export interface EventObjectGenerated {
32
31
  type?: TypeOptionType;
33
- permission?: PermissionOptionType | null;
32
+ permission?: string;
34
33
  navigate_to?: string;
35
34
  targetIndex?: number;
35
+ placementKey?: string;
36
36
  }
37
37
 
38
38
  export interface OnboardButtonStyleGenerated {
39
+ color?: string;
40
+ backgroundColor?: string;
41
+ height?: string;
42
+ borderRadius?: string;
43
+ fontSize?: string;
44
+ fontWeight?: string;
45
+ fontFamily?: string;
46
+ textAlign?: string;
39
47
  flexDirection?: FlexDirectionOptionType;
40
48
  flexWrap?: FlexWrapOptionType;
41
49
  alignItems?: AlignItemsOptionType;
@@ -55,12 +63,9 @@ export interface OnboardButtonStyleGenerated {
55
63
  marginBottom?: string;
56
64
  marginLeft?: string;
57
65
  marginRight?: string;
58
- backgroundColor?: string;
59
- borderRadius?: string;
60
66
  width?: string;
61
67
  minWidth?: string;
62
68
  maxWidth?: string;
63
- height?: string;
64
69
  minHeight?: string;
65
70
  maxHeight?: string;
66
71
  flex?: number;
@@ -70,19 +75,21 @@ export interface OnboardButtonStyleGenerated {
70
75
  left?: string;
71
76
  right?: string;
72
77
  zIndex?: number;
73
- color?: string;
74
78
  }
75
79
 
76
80
  export interface OnboardButtonPropsGenerated {
77
81
  child: string;
78
82
  attributes: {
79
83
  styles?: OnboardButtonStyleGenerated;
80
- scrollable?: boolean;
81
- testID?: TestIDOptionType;
82
84
  labelKey?: string;
85
+ events?: EventObjectGenerated[];
86
+ testID?: TestIDOptionType;
87
+ adjustsFontSizeToFit?: boolean;
88
+ numberOfLines?: number;
89
+ translateCounter?: number;
90
+ scrollable?: boolean;
83
91
  animation?: AnimationOptionType;
84
92
  animation_color?: string;
85
- events?: EventObjectGenerated[];
86
93
  };
87
94
  }
88
95
 
@@ -5,7 +5,7 @@
5
5
  "title": "title",
6
6
  "description": "description",
7
7
  "children": "never",
8
- "extends": "View",
8
+ "extends": "SystemButton",
9
9
  "attributes": {
10
10
  "labelKey": "string",
11
11
  "animation": [
@@ -32,10 +32,11 @@
32
32
  },
33
33
  "types": {
34
34
  "EventObject": {
35
- "type": ["Permission", "Navigate"],
36
- "permission": ["att", "notification", "rating", "GDPR", "null"],
35
+ "type": ["Permission", "Navigate", "Placement"],
36
+ "permission": "string",
37
37
  "navigate_to": "string",
38
- "targetIndex": "number"
38
+ "targetIndex": "number",
39
+ "placementKey": "string"
39
40
  }
40
41
  },
41
42
  "meta": {
@@ -66,7 +66,7 @@ export interface OnboardFooterPropsGenerated {
66
66
  attributes: {
67
67
  styles?: OnboardFooterStyleGenerated;
68
68
  adjustsFontSizeToFit?: boolean;
69
- showEllipsis?: boolean;
69
+ numberOfLines?: number;
70
70
  translateCounter?: number;
71
71
  scrollable?: boolean;
72
72
  testID?: string;
@@ -3,6 +3,17 @@
3
3
  import type { NodeData } from '../../types/Node';
4
4
 
5
5
  export type ThemeOptionType = 'light' | 'dark' | 'all';
6
+ export type AnimationOptionType =
7
+ | 'default'
8
+ | 'fade'
9
+ | 'fade_from_bottom'
10
+ | 'fade_from_right'
11
+ | 'reveal_from_bottom'
12
+ | 'scale_from_center'
13
+ | 'slide_from_right'
14
+ | 'slide_from_left'
15
+ | 'slide_from_bottom'
16
+ | 'none';
6
17
  export type FlexDirectionOptionType = 'row' | 'column';
7
18
  export type FlexWrapOptionType = 'nowrap' | 'wrap' | 'wrap-reverse';
8
19
  export type AlignItemsOptionType =
@@ -65,6 +76,7 @@ export interface OnboardProviderPropsGenerated {
65
76
  testID?: string;
66
77
  theme?: ThemeOptionType;
67
78
  borderRadius?: never;
79
+ animation?: AnimationOptionType;
68
80
  };
69
81
  }
70
82
 
@@ -8,7 +8,8 @@
8
8
  "extends": "View",
9
9
  "attributes": {
10
10
  "theme": ["light", "dark", "all"],
11
- "borderRadius": "never"
11
+ "borderRadius": "never",
12
+ "animation": ["default", "fade", "fade_from_bottom", "fade_from_right", "reveal_from_bottom", "scale_from_center", "slide_from_right", "slide_from_left", "slide_from_bottom", "none"]
12
13
  }
13
14
  },
14
15
  "defaults": {
@@ -30,6 +31,13 @@
30
31
  "specialCategory": null,
31
32
  "sort": -10
32
33
  },
34
+ "animation": {
35
+ "label": "Page transition animation",
36
+ "description": "When this component is a GlobalProvider page: animation used when navigating to this screen.",
37
+ "category": "other",
38
+ "specialCategory": null,
39
+ "sort": 2
40
+ },
33
41
  "styles": {
34
42
  "paddingTop": {
35
43
  "label": "Padding Top",
@@ -66,7 +66,7 @@ export interface OnboardSubtitlePropsGenerated {
66
66
  attributes: {
67
67
  styles?: OnboardSubtitleStyleGenerated;
68
68
  adjustsFontSizeToFit?: boolean;
69
- showEllipsis?: boolean;
69
+ numberOfLines?: number;
70
70
  translateCounter?: number;
71
71
  scrollable?: boolean;
72
72
  testID?: string;
@@ -66,7 +66,7 @@ export interface OnboardTitlePropsGenerated {
66
66
  attributes: {
67
67
  styles?: OnboardTitleStyleGenerated;
68
68
  adjustsFontSizeToFit?: boolean;
69
- showEllipsis?: boolean;
69
+ numberOfLines?: number;
70
70
  translateCounter?: number;
71
71
  scrollable?: boolean;
72
72
  testID?: string;
@@ -69,7 +69,7 @@ export interface PaywallCloseButtonPropsGenerated {
69
69
  size?: number;
70
70
  strokeWidth?: number;
71
71
  adjustsFontSizeToFit?: boolean;
72
- showEllipsis?: boolean;
72
+ numberOfLines?: number;
73
73
  translateCounter?: number;
74
74
  scrollable?: boolean;
75
75
  testID?: string;
@@ -66,7 +66,7 @@ export interface PaywallFooterPropsGenerated {
66
66
  attributes: {
67
67
  styles?: PaywallFooterStyleGenerated;
68
68
  adjustsFontSizeToFit?: boolean;
69
- showEllipsis?: boolean;
69
+ numberOfLines?: number;
70
70
  translateCounter?: number;
71
71
  scrollable?: boolean;
72
72
  testID?: string;