@builder.io/sdk-react 0.3.1 → 0.4.0
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.
- package/dist/sdk/blocks/BaseText.js +1 -1
- package/dist/sdk/blocks/button/button.js +1 -1
- package/dist/sdk/blocks/columns/columns.js +1 -1
- package/dist/sdk/blocks/custom-code/custom-code.js +1 -1
- package/dist/sdk/blocks/embed/embed.js +1 -1
- package/dist/sdk/blocks/fragment/fragment.js +1 -1
- package/dist/sdk/blocks/image/image.js +1 -1
- package/dist/sdk/blocks/img/img.js +1 -1
- package/dist/sdk/blocks/input/input.js +1 -1
- package/dist/sdk/blocks/raw-text/raw-text.js +1 -1
- package/dist/sdk/blocks/section/section.js +1 -1
- package/dist/sdk/blocks/select/select.js +1 -1
- package/dist/sdk/blocks/submit-button/submit-button.js +1 -1
- package/dist/sdk/blocks/symbol/symbol.js +1 -1
- package/dist/sdk/blocks/text/text.js +1 -1
- package/dist/sdk/blocks/textarea/textarea.js +1 -1
- package/dist/sdk/blocks/video/video.js +1 -1
- package/dist/sdk/components/render-block/block-styles.js +1 -1
- package/dist/sdk/components/render-block/render-block.js +7 -8
- package/dist/sdk/components/render-block/render-component.js +2 -3
- package/dist/sdk/components/render-block/render-repeated-block.js +1 -1
- package/dist/sdk/components/render-blocks.js +1 -1
- package/dist/sdk/components/render-content/builder-editing.js +1 -1
- package/dist/sdk/components/render-content/components/render-styles.js +2 -2
- package/dist/sdk/components/render-content/render-content.js +33 -4
- package/dist/sdk/components/render-content/render-content.types.d.ts +11 -2
- package/dist/sdk/components/render-content/wrap-component-ref.d.ts +6 -0
- package/dist/sdk/components/render-content/wrap-component-ref.js +6 -0
- package/dist/sdk/components/render-content-variants/helpers.d.ts +5 -0
- package/dist/sdk/components/render-content-variants/helpers.js +149 -121
- package/dist/sdk/components/render-content-variants/render-content-variants.js +22 -14
- package/dist/sdk/components/render-inlined-styles.d.ts +1 -0
- package/dist/sdk/components/render-inlined-styles.js +2 -13
- package/dist/sdk/constants/sdk-version.d.ts +1 -1
- package/dist/sdk/constants/sdk-version.js +1 -1
- package/dist/sdk/functions/get-content/generate-content-url.js +2 -2
- package/dist/sdk/functions/get-content/generate-content-url.test.js +15 -0
- package/dist/sdk/functions/get-content/index.d.ts +7 -2
- package/dist/sdk/functions/get-content/index.js +43 -20
- package/dist/sdk/functions/get-content/types.d.ts +6 -0
- package/dist/sdk/helpers/ab-tests.d.ts +8 -7
- package/dist/sdk/helpers/ab-tests.js +103 -4
- package/dist/sdk/helpers/cookie.d.ts +7 -3
- package/dist/sdk/helpers/cookie.js +9 -6
- package/dist/sdk/helpers/logger.d.ts +1 -0
- package/dist/sdk/helpers/logger.js +1 -0
- package/dist/sdk/index-helpers/blocks-exports.d.ts +1 -1
- package/dist/sdk/index-helpers/blocks-exports.js +1 -1
- package/dist/sdk/index.d.ts +8 -7
- package/dist/sdk/index.js +6 -7
- package/dist/sdk/scripts/init-editing.d.ts +1 -0
- package/dist/sdk/types/builder-content.d.ts +1 -3
- package/package.json +1 -1
|
@@ -1,5 +1,104 @@
|
|
|
1
|
-
import { getCookie, setCookie } from './cookie.js';
|
|
2
|
-
|
|
1
|
+
import { getCookie, getCookieSync, setCookie } from './cookie.js';
|
|
2
|
+
import { checkIsDefined } from '../helpers/nullable.js';
|
|
3
|
+
import { logger } from './logger.js';
|
|
4
|
+
const BUILDER_STORE_PREFIX = 'builder.tests';
|
|
3
5
|
const getContentTestKey = (id) => `${BUILDER_STORE_PREFIX}.${id}`;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
+
const getContentVariationCookie = ({ contentId }) => getCookie({ name: getContentTestKey(contentId), canTrack: true });
|
|
7
|
+
const getContentVariationCookieSync = ({ contentId }) => getCookieSync({ name: getContentTestKey(contentId), canTrack: true });
|
|
8
|
+
const setContentVariationCookie = ({ contentId, value, }) => setCookie({ name: getContentTestKey(contentId), value, canTrack: true });
|
|
9
|
+
const checkIsBuilderContentWithVariations = (item) => checkIsDefined(item.id) &&
|
|
10
|
+
checkIsDefined(item.variations) &&
|
|
11
|
+
Object.keys(item.variations).length > 0;
|
|
12
|
+
/**
|
|
13
|
+
* Randomly assign a variation to a user
|
|
14
|
+
*/
|
|
15
|
+
const getRandomVariationId = ({ id, variations, }) => {
|
|
16
|
+
let n = 0;
|
|
17
|
+
const random = Math.random();
|
|
18
|
+
// loop over variations test ratios, incrementing a counter,
|
|
19
|
+
// until we find the variation that this user should be assigned to
|
|
20
|
+
for (const id in variations) {
|
|
21
|
+
const testRatio = variations[id]?.testRatio;
|
|
22
|
+
n += testRatio;
|
|
23
|
+
if (random < n) {
|
|
24
|
+
return id;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
// the variations array does not include the default variation.
|
|
28
|
+
// if we arrive here, then it means that the random number fits in the default variation bucket.
|
|
29
|
+
return id;
|
|
30
|
+
};
|
|
31
|
+
const getAndSetVariantId = (args) => {
|
|
32
|
+
// if variation not found in storage, assign a random variation to this user
|
|
33
|
+
const randomVariationId = getRandomVariationId(args);
|
|
34
|
+
// store variation in cookies/storage
|
|
35
|
+
setContentVariationCookie({
|
|
36
|
+
contentId: args.id,
|
|
37
|
+
value: randomVariationId,
|
|
38
|
+
}).catch((err) => {
|
|
39
|
+
logger.error('could not store A/B test variation: ', err);
|
|
40
|
+
});
|
|
41
|
+
return randomVariationId;
|
|
42
|
+
};
|
|
43
|
+
const getTestFields = ({ item, testGroupId, }) => {
|
|
44
|
+
const variationValue = item.variations[testGroupId];
|
|
45
|
+
if (testGroupId === item.id ||
|
|
46
|
+
// handle edge-case where `testGroupId` points to non-existing variation
|
|
47
|
+
!variationValue) {
|
|
48
|
+
return {
|
|
49
|
+
testVariationId: item.id,
|
|
50
|
+
testVariationName: 'Default',
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
return {
|
|
55
|
+
data: variationValue.data,
|
|
56
|
+
testVariationId: variationValue.id,
|
|
57
|
+
testVariationName: variationValue.name || (variationValue.id === item.id ? 'Default' : ''),
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
export const handleABTestingSync = ({ item, canTrack, }) => {
|
|
62
|
+
if (!canTrack) {
|
|
63
|
+
return item;
|
|
64
|
+
}
|
|
65
|
+
if (!item) {
|
|
66
|
+
return undefined;
|
|
67
|
+
}
|
|
68
|
+
if (!checkIsBuilderContentWithVariations(item)) {
|
|
69
|
+
return item;
|
|
70
|
+
}
|
|
71
|
+
const testGroupId = getContentVariationCookieSync({
|
|
72
|
+
contentId: item.id,
|
|
73
|
+
}) ||
|
|
74
|
+
getAndSetVariantId({
|
|
75
|
+
variations: item.variations,
|
|
76
|
+
id: item.id,
|
|
77
|
+
});
|
|
78
|
+
const variationValue = getTestFields({ item, testGroupId });
|
|
79
|
+
return {
|
|
80
|
+
...item,
|
|
81
|
+
...variationValue,
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
export const handleABTesting = async ({ item, canTrack, }) => {
|
|
85
|
+
if (!canTrack) {
|
|
86
|
+
return item;
|
|
87
|
+
}
|
|
88
|
+
if (!checkIsBuilderContentWithVariations(item)) {
|
|
89
|
+
return item;
|
|
90
|
+
}
|
|
91
|
+
const cookieValue = await getContentVariationCookie({
|
|
92
|
+
contentId: item.id,
|
|
93
|
+
});
|
|
94
|
+
const testGroupId = cookieValue ||
|
|
95
|
+
getAndSetVariantId({
|
|
96
|
+
variations: item.variations,
|
|
97
|
+
id: item.id,
|
|
98
|
+
});
|
|
99
|
+
const variationValue = getTestFields({ item, testGroupId });
|
|
100
|
+
return {
|
|
101
|
+
...item,
|
|
102
|
+
...variationValue,
|
|
103
|
+
};
|
|
104
|
+
};
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import type { CanTrack } from '../types/can-track.js';
|
|
2
|
+
type GetCookieArgs = {
|
|
3
|
+
name: string;
|
|
4
|
+
} & CanTrack;
|
|
5
|
+
export declare const getCookieSync: ({ name, canTrack, }: GetCookieArgs) => string | undefined;
|
|
2
6
|
/**
|
|
3
7
|
* NOTE: This function is `async` because its react-native override is async. Do not remove the `async` keyword!
|
|
8
|
+
* The sync version is only safe to use in code blocks that `react-native` is guaranteed not to not run.
|
|
4
9
|
*/
|
|
5
|
-
export declare const getCookie: (
|
|
6
|
-
name: string;
|
|
7
|
-
} & CanTrack) => Promise<string | undefined>;
|
|
10
|
+
export declare const getCookie: (args: GetCookieArgs) => Promise<string>;
|
|
8
11
|
/**
|
|
9
12
|
* NOTE: This function is `async` because its react-native override is async. Do not remove the `async` keyword!
|
|
10
13
|
*/
|
|
@@ -13,3 +16,4 @@ export declare const setCookie: ({ name, value, expires, canTrack, }: {
|
|
|
13
16
|
value: string;
|
|
14
17
|
expires?: Date;
|
|
15
18
|
} & CanTrack) => Promise<void>;
|
|
19
|
+
export {};
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { isBrowser } from '../functions/is-browser.js';
|
|
2
|
+
import { logger } from './logger.js';
|
|
2
3
|
import { checkIsDefined } from './nullable.js';
|
|
3
4
|
import { getTopLevelDomain } from './url.js';
|
|
4
|
-
|
|
5
|
-
* NOTE: This function is `async` because its react-native override is async. Do not remove the `async` keyword!
|
|
6
|
-
*/
|
|
7
|
-
export const getCookie = async ({ name, canTrack, }) => {
|
|
5
|
+
export const getCookieSync = ({ name, canTrack, }) => {
|
|
8
6
|
try {
|
|
9
7
|
if (!canTrack) {
|
|
10
8
|
return undefined;
|
|
@@ -19,10 +17,15 @@ export const getCookie = async ({ name, canTrack, }) => {
|
|
|
19
17
|
?.split('=')[1];
|
|
20
18
|
}
|
|
21
19
|
catch (err) {
|
|
22
|
-
|
|
20
|
+
logger.warn('[COOKIE] GET error: ', err?.message || err);
|
|
23
21
|
return undefined;
|
|
24
22
|
}
|
|
25
23
|
};
|
|
24
|
+
/**
|
|
25
|
+
* NOTE: This function is `async` because its react-native override is async. Do not remove the `async` keyword!
|
|
26
|
+
* The sync version is only safe to use in code blocks that `react-native` is guaranteed not to not run.
|
|
27
|
+
*/
|
|
28
|
+
export const getCookie = async (args) => getCookieSync(args);
|
|
26
29
|
const stringifyCookie = (cookie) => cookie
|
|
27
30
|
.map(([key, value]) => (value ? `${key}=${value}` : key))
|
|
28
31
|
.filter(checkIsDefined)
|
|
@@ -60,6 +63,6 @@ export const setCookie = async ({ name, value, expires, canTrack, }) => {
|
|
|
60
63
|
document.cookie = cookie;
|
|
61
64
|
}
|
|
62
65
|
catch (err) {
|
|
63
|
-
|
|
66
|
+
logger.warn('[COOKIE] SET error: ', err?.message || err);
|
|
64
67
|
}
|
|
65
68
|
};
|
|
@@ -3,4 +3,5 @@ export const logger = {
|
|
|
3
3
|
log: (...message) => console.log(MSG_PREFIX, ...message),
|
|
4
4
|
error: (...message) => console.error(MSG_PREFIX, ...message),
|
|
5
5
|
warn: (...message) => console.warn(MSG_PREFIX, ...message),
|
|
6
|
+
debug: (...message) => console.debug(MSG_PREFIX, ...message),
|
|
6
7
|
};
|
|
@@ -3,8 +3,8 @@ export { default as Columns } from '../blocks/columns/columns';
|
|
|
3
3
|
export { default as Fragment } from '../blocks/fragment/fragment';
|
|
4
4
|
export { default as Image } from '../blocks/image/image';
|
|
5
5
|
export { default as RenderBlocks } from '../components/render-blocks';
|
|
6
|
-
export { default as RenderContent } from '../components/render-content/render-content';
|
|
7
6
|
export { default as Section } from '../blocks/section/section';
|
|
8
7
|
export { default as Symbol } from '../blocks/symbol/symbol';
|
|
9
8
|
export { default as Text } from '../blocks/text/text';
|
|
10
9
|
export { default as Video } from '../blocks/video/video';
|
|
10
|
+
export { default as RenderContent } from '../components/render-content-variants/render-content-variants';
|
|
@@ -3,8 +3,8 @@ export { default as Columns } from '../blocks/columns/columns';
|
|
|
3
3
|
export { default as Fragment } from '../blocks/fragment/fragment';
|
|
4
4
|
export { default as Image } from '../blocks/image/image';
|
|
5
5
|
export { default as RenderBlocks } from '../components/render-blocks';
|
|
6
|
-
export { default as RenderContent } from '../components/render-content/render-content';
|
|
7
6
|
export { default as Section } from '../blocks/section/section';
|
|
8
7
|
export { default as Symbol } from '../blocks/symbol/symbol';
|
|
9
8
|
export { default as Text } from '../blocks/text/text';
|
|
10
9
|
export { default as Video } from '../blocks/video/video';
|
|
10
|
+
export { default as RenderContent } from '../components/render-content-variants/render-content-variants';
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
export * from './index-helpers/top-of-file.js';
|
|
2
2
|
export * from './index-helpers/blocks-exports.js';
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
3
|
+
export { isEditing } from './functions/is-editing.js';
|
|
4
|
+
export { isPreviewing } from './functions/is-previewing.js';
|
|
5
|
+
export { createRegisterComponentMessage } from './functions/register-component.js';
|
|
6
|
+
export { register } from './functions/register.js';
|
|
7
|
+
export type { InsertMenuConfig, InsertMenuItem } from './functions/register.js';
|
|
8
|
+
export { setEditorSettings } from './functions/set-editor-settings.js';
|
|
9
|
+
export type { Settings } from './functions/set-editor-settings.js';
|
|
10
|
+
export { getAllContent, getContent, processContentResult, } from './functions/get-content/index.js';
|
|
10
11
|
export { track } from './functions/track/index.js';
|
|
11
12
|
export type { RegisteredComponent } from './context/types';
|
|
12
13
|
export type { ComponentInfo } from './types/components';
|
package/dist/sdk/index.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
export * from './index-helpers/top-of-file.js';
|
|
2
2
|
export * from './index-helpers/blocks-exports.js';
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export * from './functions/get-builder-search-params/index.js';
|
|
3
|
+
export { isEditing } from './functions/is-editing.js';
|
|
4
|
+
export { isPreviewing } from './functions/is-previewing.js';
|
|
5
|
+
export { createRegisterComponentMessage } from './functions/register-component.js';
|
|
6
|
+
export { register } from './functions/register.js';
|
|
7
|
+
export { setEditorSettings } from './functions/set-editor-settings.js';
|
|
8
|
+
export { getAllContent, getContent, processContentResult, } from './functions/get-content/index.js';
|
|
10
9
|
export { track } from './functions/track/index.js';
|
|
@@ -30,8 +30,6 @@ export interface BuilderContentVariation {
|
|
|
30
30
|
}
|
|
31
31
|
export interface BuilderContent extends BuilderContentVariation {
|
|
32
32
|
'@version'?: number;
|
|
33
|
-
id?: string;
|
|
34
|
-
name?: string;
|
|
35
33
|
published?: 'published' | 'draft' | 'archived';
|
|
36
34
|
modelId?: string;
|
|
37
35
|
priority?: number;
|
|
@@ -39,7 +37,7 @@ export interface BuilderContent extends BuilderContentVariation {
|
|
|
39
37
|
startDate?: number;
|
|
40
38
|
endDate?: number;
|
|
41
39
|
variations?: {
|
|
42
|
-
[id: string]: BuilderContentVariation
|
|
40
|
+
[id: string]: BuilderContentVariation;
|
|
43
41
|
};
|
|
44
42
|
testVariationId?: string;
|
|
45
43
|
testVariationName?: string;
|