@builder.io/sdk-react-native 0.0.14 → 0.0.17-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/README.md +4 -0
- package/package.json +1 -2
- package/src/blocks/columns/columns.js +65 -2
- package/src/blocks/section/section.js +12 -3
- package/src/blocks/symbol/symbol.js +11 -2
- package/src/components/render-block/render-block.js +10 -5
- package/src/components/render-content/render-content.js +20 -5
- package/src/functions/get-block-properties.js +25 -16
- package/src/functions/get-content/generate-content-url.js +55 -0
- package/src/functions/get-content/{fn.test.js → generate-content-url.test.js} +1 -1
- package/src/functions/get-content/index.js +4 -40
- package/src/functions/get-fetch.js +9 -29
- package/src/functions/get-global-this.js +1 -1
- package/src/functions/get-react-native-block-styles.js +3 -2
- package/src/functions/transform-block-properties.js +17 -0
- package/src/helpers/css.js +9 -3
package/README.md
CHANGED
|
@@ -17,3 +17,7 @@ npm install @builder.io/sdk-react-native@dev
|
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Take a look at [our example repo](/examples/react-native) for how to use this SDK.
|
|
20
|
+
|
|
21
|
+
## Fetch
|
|
22
|
+
|
|
23
|
+
This Package uses fetch. See [these docs](https://github.com/BuilderIO/this-package-uses-fetch/blob/main/README.md) for more information.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder.io/sdk-react-native",
|
|
3
3
|
"description": "Builder.io SDK for React Native",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.17-0",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"src"
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@react-native-async-storage/async-storage": "^1.17.10",
|
|
16
|
-
"node-fetch": "^2.6.1",
|
|
17
16
|
"react-native-render-html": "^6.3.4",
|
|
18
17
|
"react-native-storage": "^1.0.1",
|
|
19
18
|
"react-native-video": "^5.1.1"
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { View, StyleSheet } from "react-native";
|
|
3
3
|
import RenderBlocks from "../../components/render-blocks.js";
|
|
4
|
+
import { getSizesForBreakpoints } from "../../constants/device-sizes";
|
|
5
|
+
import RenderInlinedStyles from "../../components/render-inlined-styles.js";
|
|
6
|
+
import { TARGET } from "../../constants/target.js";
|
|
7
|
+
import { convertStyleMapToCSS } from "../../helpers/css";
|
|
4
8
|
function Columns(props) {
|
|
5
9
|
var _a;
|
|
6
10
|
function getGutterSize() {
|
|
@@ -41,9 +45,68 @@ function Columns(props) {
|
|
|
41
45
|
"--column-margin-left-tablet": maybeApplyForTablet(marginLeft)
|
|
42
46
|
};
|
|
43
47
|
}
|
|
48
|
+
function getWidthForBreakpointSize(size) {
|
|
49
|
+
const breakpointSizes = getSizesForBreakpoints(props.customBreakpoints || {});
|
|
50
|
+
return breakpointSizes[size].max;
|
|
51
|
+
}
|
|
52
|
+
function columnStyleObjects() {
|
|
53
|
+
return {
|
|
54
|
+
columns: {
|
|
55
|
+
small: {
|
|
56
|
+
flexDirection: "var(--flex-dir)",
|
|
57
|
+
alignItems: "stretch"
|
|
58
|
+
},
|
|
59
|
+
medium: {
|
|
60
|
+
flexDirection: "var(--flex-dir-tablet)",
|
|
61
|
+
alignItems: "stretch"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
column: {
|
|
65
|
+
small: {
|
|
66
|
+
width: "var(--column-width) !important",
|
|
67
|
+
marginLeft: "var(--column-margin-left) !important"
|
|
68
|
+
},
|
|
69
|
+
medium: {
|
|
70
|
+
width: "var(--column-width-tablet) !important",
|
|
71
|
+
marginLeft: "var(--column-margin-left-tablet) !important"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
function columnsStyles() {
|
|
77
|
+
return `
|
|
78
|
+
@media (max-width: ${getWidthForBreakpointSize("medium")}px) {
|
|
79
|
+
.${props.builderBlock.id}-breakpoints {
|
|
80
|
+
${convertStyleMapToCSS(columnStyleObjects().columns.medium)}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.${props.builderBlock.id}-breakpoints > .builder-column {
|
|
84
|
+
${convertStyleMapToCSS(columnStyleObjects().column.medium)}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@media (max-width: ${getWidthForBreakpointSize("small")}px) {
|
|
89
|
+
.${props.builderBlock.id}-breakpoints {
|
|
90
|
+
${convertStyleMapToCSS(columnStyleObjects().columns.small)}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.${props.builderBlock.id}-breakpoints > .builder-column {
|
|
94
|
+
${convertStyleMapToCSS(columnStyleObjects().column.small)}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
`;
|
|
98
|
+
}
|
|
99
|
+
function reactNativeColumnsStyles() {
|
|
100
|
+
return columnStyleObjects.columns.small;
|
|
101
|
+
}
|
|
102
|
+
function reactNativeColumnStyles() {
|
|
103
|
+
return columnStyleObjects.column.small;
|
|
104
|
+
}
|
|
44
105
|
return /* @__PURE__ */ React.createElement(View, {
|
|
45
106
|
style: styles.view1
|
|
46
|
-
},
|
|
107
|
+
}, TARGET !== "reactNative" ? /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(RenderInlinedStyles, {
|
|
108
|
+
styles: columnsStyles()
|
|
109
|
+
})) : null, (_a = props.columns) == null ? void 0 : _a.map((column, index) => /* @__PURE__ */ React.createElement(View, {
|
|
47
110
|
style: styles.view2,
|
|
48
111
|
key: index
|
|
49
112
|
}, /* @__PURE__ */ React.createElement(RenderBlocks, {
|
|
@@ -56,7 +119,7 @@ function Columns(props) {
|
|
|
56
119
|
}))));
|
|
57
120
|
}
|
|
58
121
|
const styles = StyleSheet.create({
|
|
59
|
-
view1: { display: "flex"
|
|
122
|
+
view1: { display: "flex" },
|
|
60
123
|
view2: { display: "flex", flexDirection: "column", alignItems: "stretch" }
|
|
61
124
|
});
|
|
62
125
|
export {
|
|
@@ -22,9 +22,18 @@ import * as React from "react";
|
|
|
22
22
|
import { View } from "react-native";
|
|
23
23
|
function SectionComponent(props) {
|
|
24
24
|
return /* @__PURE__ */ React.createElement(View, __spreadProps(__spreadValues({}, props.attributes), {
|
|
25
|
-
style:
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
style: {
|
|
26
|
+
width: "100%",
|
|
27
|
+
alignSelf: "stretch",
|
|
28
|
+
flexGrow: "1",
|
|
29
|
+
boxSizing: "border-box",
|
|
30
|
+
maxWidth: `${props.maxWidth && typeof props.maxWidth === "number" ? props.maxWidth : 1200}px`,
|
|
31
|
+
display: "flex",
|
|
32
|
+
flexDirection: "column",
|
|
33
|
+
alignItems: "stretch",
|
|
34
|
+
marginLeft: "auto",
|
|
35
|
+
marginRight: "auto"
|
|
36
|
+
}
|
|
28
37
|
}), /* @__PURE__ */ React.createElement(BaseText, null, props.children));
|
|
29
38
|
}
|
|
30
39
|
export {
|
|
@@ -23,9 +23,18 @@ import { useState, useContext, useEffect } from "react";
|
|
|
23
23
|
import RenderContent from "../../components/render-content/render-content.js";
|
|
24
24
|
import BuilderContext from "../../context/builder.context.js";
|
|
25
25
|
import { getContent } from "../../functions/get-content/index.js";
|
|
26
|
+
import { TARGET } from "../../constants/target";
|
|
26
27
|
function Symbol(props) {
|
|
27
28
|
var _a, _b, _c, _d, _e;
|
|
28
|
-
|
|
29
|
+
function className() {
|
|
30
|
+
var _a2, _b2;
|
|
31
|
+
return [
|
|
32
|
+
...TARGET === "vue2" || TARGET === "vue3" ? Object.keys(props.attributes.class) : [props.attributes.class],
|
|
33
|
+
"builder-symbol",
|
|
34
|
+
((_a2 = props.symbol) == null ? void 0 : _a2.inline) ? "builder-inline-symbol" : void 0,
|
|
35
|
+
((_b2 = props.symbol) == null ? void 0 : _b2.dynamic) || props.dynamic ? "builder-dynamic-symbol" : void 0
|
|
36
|
+
].filter(Boolean).join(" ");
|
|
37
|
+
}
|
|
29
38
|
const [fetchedContent, setFetchedContent] = useState(() => null);
|
|
30
39
|
function contentToUse() {
|
|
31
40
|
var _a2;
|
|
@@ -48,7 +57,7 @@ function Symbol(props) {
|
|
|
48
57
|
}, [props.symbol, fetchedContent]);
|
|
49
58
|
return /* @__PURE__ */ React.createElement(View, __spreadProps(__spreadValues({}, props.attributes), {
|
|
50
59
|
dataSet: {
|
|
51
|
-
class: className
|
|
60
|
+
class: className()
|
|
52
61
|
}
|
|
53
62
|
}), /* @__PURE__ */ React.createElement(RenderContent, {
|
|
54
63
|
apiKey: builderContext.apiKey,
|
|
@@ -88,10 +88,12 @@ function RenderBlock(props) {
|
|
|
88
88
|
});
|
|
89
89
|
}
|
|
90
90
|
function attributes() {
|
|
91
|
-
|
|
91
|
+
const blockProperties = getBlockProperties(useBlock());
|
|
92
|
+
return __spreadValues(__spreadValues({}, blockProperties), TARGET === "reactNative" ? {
|
|
92
93
|
style: getReactNativeBlockStyles({
|
|
93
94
|
block: useBlock(),
|
|
94
|
-
context: props.context
|
|
95
|
+
context: props.context,
|
|
96
|
+
blockStyles: blockProperties.style
|
|
95
97
|
})
|
|
96
98
|
} : {});
|
|
97
99
|
}
|
|
@@ -100,12 +102,14 @@ function RenderBlock(props) {
|
|
|
100
102
|
return !((_a2 = component == null ? void 0 : component()) == null ? void 0 : _a2.noWrap);
|
|
101
103
|
}
|
|
102
104
|
function renderComponentProps() {
|
|
103
|
-
var _a2;
|
|
105
|
+
var _a2, _b2, _c2, _d;
|
|
104
106
|
return {
|
|
105
107
|
blockChildren: useChildren(),
|
|
106
108
|
componentRef: (_a2 = component == null ? void 0 : component()) == null ? void 0 : _a2.component,
|
|
107
|
-
componentOptions: __spreadValues(__spreadValues({}, getBlockComponentOptions(useBlock())), shouldWrap() ? {} : {
|
|
109
|
+
componentOptions: __spreadProps(__spreadValues(__spreadValues({}, getBlockComponentOptions(useBlock())), shouldWrap() ? {} : {
|
|
108
110
|
attributes: __spreadValues(__spreadValues({}, attributes()), actions())
|
|
111
|
+
}), {
|
|
112
|
+
customBreakpoints: (_d = (_c2 = (_b2 = childrenContext == null ? void 0 : childrenContext()) == null ? void 0 : _b2.content) == null ? void 0 : _c2.meta) == null ? void 0 : _d.breakpoints
|
|
109
113
|
}),
|
|
110
114
|
context: childrenContext()
|
|
111
115
|
};
|
|
@@ -153,7 +157,8 @@ function RenderBlock(props) {
|
|
|
153
157
|
}
|
|
154
158
|
const styles = getReactNativeBlockStyles({
|
|
155
159
|
block: useBlock(),
|
|
156
|
-
context: props.context
|
|
160
|
+
context: props.context,
|
|
161
|
+
blockStyles: attributes().style
|
|
157
162
|
});
|
|
158
163
|
return extractTextStyles(styles);
|
|
159
164
|
}
|
|
@@ -24,7 +24,7 @@ import { getDefaultRegisteredComponents } from "../../constants/builder-register
|
|
|
24
24
|
import { TARGET } from "../../constants/target.js";
|
|
25
25
|
import { evaluate } from "../../functions/evaluate.js";
|
|
26
26
|
import { getContent } from "../../functions/get-content/index.js";
|
|
27
|
-
import {
|
|
27
|
+
import { fetch } from "../../functions/get-fetch.js";
|
|
28
28
|
import { isBrowser } from "../../functions/is-browser.js";
|
|
29
29
|
import { isEditing } from "../../functions/is-editing.js";
|
|
30
30
|
import { isPreviewing } from "../../functions/is-previewing.js";
|
|
@@ -44,18 +44,22 @@ function RenderContent(props) {
|
|
|
44
44
|
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k;
|
|
45
45
|
const elementRef = useRef(null);
|
|
46
46
|
const [forceReRenderCount, setForceReRenderCount] = useState(() => 0);
|
|
47
|
+
const [overrideContent, setOverrideContent] = useState(() => null);
|
|
47
48
|
function useContent() {
|
|
48
|
-
var _a2;
|
|
49
|
+
var _a2, _b2, _c2, _d2, _e2;
|
|
49
50
|
if (!props.content && !overrideContent) {
|
|
50
51
|
return void 0;
|
|
51
52
|
}
|
|
52
53
|
const mergedContent = __spreadProps(__spreadValues(__spreadValues({}, props.content), overrideContent), {
|
|
53
|
-
data: __spreadValues(__spreadValues(__spreadValues({}, (_a2 = props.content) == null ? void 0 : _a2.data), props.data), overrideContent == null ? void 0 : overrideContent.data)
|
|
54
|
+
data: __spreadValues(__spreadValues(__spreadValues({}, (_a2 = props.content) == null ? void 0 : _a2.data), props.data), overrideContent == null ? void 0 : overrideContent.data),
|
|
55
|
+
meta: __spreadProps(__spreadValues(__spreadValues({}, (_b2 = props.content) == null ? void 0 : _b2.meta), overrideContent == null ? void 0 : overrideContent.meta), {
|
|
56
|
+
breakpoints: useBreakpoints || ((_c2 = overrideContent == null ? void 0 : overrideContent.meta) == null ? void 0 : _c2.breakpoints) || ((_e2 = (_d2 = props.content) == null ? void 0 : _d2.meta) == null ? void 0 : _e2.breakpoints)
|
|
57
|
+
})
|
|
54
58
|
});
|
|
55
59
|
return mergedContent;
|
|
56
60
|
}
|
|
57
|
-
const [overrideContent, setOverrideContent] = useState(() => null);
|
|
58
61
|
const [update, setUpdate] = useState(() => 0);
|
|
62
|
+
const [useBreakpoints, setUseBreakpoints] = useState(() => null);
|
|
59
63
|
function canTrackToUse() {
|
|
60
64
|
return props.canTrack || true;
|
|
61
65
|
}
|
|
@@ -81,9 +85,20 @@ function RenderContent(props) {
|
|
|
81
85
|
return allComponents;
|
|
82
86
|
}
|
|
83
87
|
function processMessage(event) {
|
|
88
|
+
var _a2;
|
|
84
89
|
const { data } = event;
|
|
85
90
|
if (data) {
|
|
86
91
|
switch (data.type) {
|
|
92
|
+
case "builder.configureSdk": {
|
|
93
|
+
const messageContent = data.data;
|
|
94
|
+
const { breakpoints, contentId } = messageContent;
|
|
95
|
+
if (!contentId || contentId !== ((_a2 = useContent == null ? void 0 : useContent()) == null ? void 0 : _a2.id)) {
|
|
96
|
+
return;
|
|
97
|
+
}
|
|
98
|
+
setUseBreakpoints(breakpoints);
|
|
99
|
+
setForceReRenderCount(forceReRenderCount + 1);
|
|
100
|
+
break;
|
|
101
|
+
}
|
|
87
102
|
case "builder.contentUpdate": {
|
|
88
103
|
const messageContent = data.data;
|
|
89
104
|
const key = messageContent.key || messageContent.alias || messageContent.entry || messageContent.modelName;
|
|
@@ -136,7 +151,7 @@ function RenderContent(props) {
|
|
|
136
151
|
}));
|
|
137
152
|
}
|
|
138
153
|
function handleRequest({ url, key }) {
|
|
139
|
-
|
|
154
|
+
fetch(url).then((response) => response.json()).then((json) => {
|
|
140
155
|
const newOverrideState = __spreadProps(__spreadValues({}, overrideState), {
|
|
141
156
|
[key]: json
|
|
142
157
|
});
|
|
@@ -17,24 +17,33 @@ var __spreadValues = (a, b) => {
|
|
|
17
17
|
return a;
|
|
18
18
|
};
|
|
19
19
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
20
|
+
import { TARGET } from "../constants/target.js";
|
|
21
|
+
import { convertStyleMapToCSSArray } from "../helpers/css.js";
|
|
22
|
+
import { transformBlockProperties } from "./transform-block-properties.js";
|
|
22
23
|
function getBlockProperties(block) {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
el.setAttribute("builder-id", block.id);
|
|
29
|
-
el.classList.add(block.id);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
dataSet: {
|
|
34
|
-
"builder-id": block.id,
|
|
35
|
-
class: [block.id, "builder-block", block.class].filter(Boolean).join(" ")
|
|
36
|
-
}
|
|
24
|
+
var _a;
|
|
25
|
+
const properties = __spreadProps(__spreadValues({}, block.properties), {
|
|
26
|
+
"builder-id": block.id,
|
|
27
|
+
style: getStyleAttribute(block.style),
|
|
28
|
+
class: [block.id, "builder-block", block.class, (_a = block.properties) == null ? void 0 : _a.class].filter(Boolean).join(" ")
|
|
37
29
|
});
|
|
30
|
+
return transformBlockProperties(properties);
|
|
31
|
+
}
|
|
32
|
+
function getStyleAttribute(style) {
|
|
33
|
+
if (!style) {
|
|
34
|
+
return void 0;
|
|
35
|
+
}
|
|
36
|
+
switch (TARGET) {
|
|
37
|
+
case "svelte":
|
|
38
|
+
case "vue2":
|
|
39
|
+
case "vue3":
|
|
40
|
+
case "solid":
|
|
41
|
+
return convertStyleMapToCSSArray(style).join(" ");
|
|
42
|
+
case "qwik":
|
|
43
|
+
case "reactNative":
|
|
44
|
+
case "react":
|
|
45
|
+
return style;
|
|
46
|
+
}
|
|
38
47
|
}
|
|
39
48
|
export {
|
|
40
49
|
getBlockProperties
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
3
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
4
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
5
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
6
|
+
var __spreadValues = (a, b) => {
|
|
7
|
+
for (var prop in b || (b = {}))
|
|
8
|
+
if (__hasOwnProp.call(b, prop))
|
|
9
|
+
__defNormalProp(a, prop, b[prop]);
|
|
10
|
+
if (__getOwnPropSymbols)
|
|
11
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
12
|
+
if (__propIsEnum.call(b, prop))
|
|
13
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14
|
+
}
|
|
15
|
+
return a;
|
|
16
|
+
};
|
|
17
|
+
import { flatten } from "../../helpers/flatten.js";
|
|
18
|
+
import {
|
|
19
|
+
getBuilderSearchParamsFromWindow,
|
|
20
|
+
normalizeSearchParams
|
|
21
|
+
} from "../get-builder-search-params/index.js";
|
|
22
|
+
const generateContentUrl = (options) => {
|
|
23
|
+
const {
|
|
24
|
+
limit = 30,
|
|
25
|
+
userAttributes,
|
|
26
|
+
query,
|
|
27
|
+
noTraverse = false,
|
|
28
|
+
model,
|
|
29
|
+
apiKey,
|
|
30
|
+
includeRefs = true,
|
|
31
|
+
locale
|
|
32
|
+
} = options;
|
|
33
|
+
if (!apiKey) {
|
|
34
|
+
throw new Error("Missing API key");
|
|
35
|
+
}
|
|
36
|
+
const url = new URL(`https://cdn.builder.io/api/v2/content/${model}?apiKey=${apiKey}&limit=${limit}&noTraverse=${noTraverse}&includeRefs=${includeRefs}${locale ? `&locale=${locale}` : ""}`);
|
|
37
|
+
const queryOptions = __spreadValues(__spreadValues({}, getBuilderSearchParamsFromWindow()), normalizeSearchParams(options.options || {}));
|
|
38
|
+
const flattened = flatten(queryOptions);
|
|
39
|
+
for (const key in flattened) {
|
|
40
|
+
url.searchParams.set(key, String(flattened[key]));
|
|
41
|
+
}
|
|
42
|
+
if (userAttributes) {
|
|
43
|
+
url.searchParams.set("userAttributes", JSON.stringify(userAttributes));
|
|
44
|
+
}
|
|
45
|
+
if (query) {
|
|
46
|
+
const flattened2 = flatten({ query });
|
|
47
|
+
for (const key in flattened2) {
|
|
48
|
+
url.searchParams.set(key, JSON.stringify(flattened2[key]));
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return url;
|
|
52
|
+
};
|
|
53
|
+
export {
|
|
54
|
+
generateContentUrl
|
|
55
|
+
};
|
|
@@ -37,54 +37,19 @@ var __async = (__this, __arguments, generator) => {
|
|
|
37
37
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
38
38
|
});
|
|
39
39
|
};
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
getBuilderSearchParamsFromWindow,
|
|
43
|
-
normalizeSearchParams
|
|
44
|
-
} from "../get-builder-search-params/index.js";
|
|
45
|
-
import { getFetch } from "../get-fetch.js";
|
|
40
|
+
import { fetch } from "../get-fetch.js";
|
|
46
41
|
import { handleABTesting } from "./ab-testing.js";
|
|
42
|
+
import { generateContentUrl } from "./generate-content-url.js";
|
|
47
43
|
function getContent(options) {
|
|
48
44
|
return __async(this, null, function* () {
|
|
49
45
|
return (yield getAllContent(__spreadProps(__spreadValues({}, options), { limit: 1 }))).results[0] || null;
|
|
50
46
|
});
|
|
51
47
|
}
|
|
52
|
-
const generateContentUrl = (options) => {
|
|
53
|
-
const {
|
|
54
|
-
limit = 30,
|
|
55
|
-
userAttributes,
|
|
56
|
-
query,
|
|
57
|
-
noTraverse = false,
|
|
58
|
-
model,
|
|
59
|
-
apiKey,
|
|
60
|
-
includeRefs = true,
|
|
61
|
-
locale
|
|
62
|
-
} = options;
|
|
63
|
-
if (!apiKey) {
|
|
64
|
-
throw new Error("Missing API key");
|
|
65
|
-
}
|
|
66
|
-
const url = new URL(`https://cdn.builder.io/api/v2/content/${model}?apiKey=${apiKey}&limit=${limit}&noTraverse=${noTraverse}&includeRefs=${includeRefs}${locale ? `&locale=${locale}` : ""}`);
|
|
67
|
-
const queryOptions = __spreadValues(__spreadValues({}, getBuilderSearchParamsFromWindow()), normalizeSearchParams(options.options || {}));
|
|
68
|
-
const flattened = flatten(queryOptions);
|
|
69
|
-
for (const key in flattened) {
|
|
70
|
-
url.searchParams.set(key, String(flattened[key]));
|
|
71
|
-
}
|
|
72
|
-
if (userAttributes) {
|
|
73
|
-
url.searchParams.set("userAttributes", JSON.stringify(userAttributes));
|
|
74
|
-
}
|
|
75
|
-
if (query) {
|
|
76
|
-
const flattened2 = flatten({ query });
|
|
77
|
-
for (const key in flattened2) {
|
|
78
|
-
url.searchParams.set(key, JSON.stringify(flattened2[key]));
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
return url;
|
|
82
|
-
};
|
|
83
48
|
function getAllContent(options) {
|
|
84
49
|
return __async(this, null, function* () {
|
|
85
50
|
const url = generateContentUrl(options);
|
|
86
|
-
const
|
|
87
|
-
const content = yield
|
|
51
|
+
const res = yield fetch(url.href);
|
|
52
|
+
const content = yield res.json();
|
|
88
53
|
const canTrack = options.canTrack !== false;
|
|
89
54
|
if (canTrack && Array.isArray(content.results)) {
|
|
90
55
|
for (const item of content.results) {
|
|
@@ -95,7 +60,6 @@ function getAllContent(options) {
|
|
|
95
60
|
});
|
|
96
61
|
}
|
|
97
62
|
export {
|
|
98
|
-
generateContentUrl,
|
|
99
63
|
getAllContent,
|
|
100
64
|
getContent
|
|
101
65
|
};
|
|
@@ -1,34 +1,14 @@
|
|
|
1
|
-
var __async = (__this, __arguments, generator) => {
|
|
2
|
-
return new Promise((resolve, reject) => {
|
|
3
|
-
var fulfilled = (value) => {
|
|
4
|
-
try {
|
|
5
|
-
step(generator.next(value));
|
|
6
|
-
} catch (e) {
|
|
7
|
-
reject(e);
|
|
8
|
-
}
|
|
9
|
-
};
|
|
10
|
-
var rejected = (value) => {
|
|
11
|
-
try {
|
|
12
|
-
step(generator.throw(value));
|
|
13
|
-
} catch (e) {
|
|
14
|
-
reject(e);
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
18
|
-
step((generator = generator.apply(__this, __arguments)).next());
|
|
19
|
-
});
|
|
20
|
-
};
|
|
21
1
|
import { getGlobalThis } from "./get-global-this.js";
|
|
22
2
|
function getFetch() {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
});
|
|
3
|
+
const globalFetch = getGlobalThis().fetch;
|
|
4
|
+
if (typeof globalFetch === "undefined") {
|
|
5
|
+
console.warn(`Builder SDK could not find a global fetch function. Make sure you have a polyfill for fetch in your project.
|
|
6
|
+
For more information, read https://github.com/BuilderIO/this-package-uses-fetch`);
|
|
7
|
+
throw new Error("Builder SDK could not find a global `fetch` function");
|
|
8
|
+
}
|
|
9
|
+
return globalFetch;
|
|
31
10
|
}
|
|
11
|
+
const fetch = getFetch();
|
|
32
12
|
export {
|
|
33
|
-
|
|
13
|
+
fetch
|
|
34
14
|
};
|
|
@@ -17,13 +17,14 @@ var __spreadValues = (a, b) => {
|
|
|
17
17
|
import { sanitizeReactNativeBlockStyles } from "./sanitize-react-native-block-styles.js";
|
|
18
18
|
function getReactNativeBlockStyles({
|
|
19
19
|
block,
|
|
20
|
-
context
|
|
20
|
+
context,
|
|
21
|
+
blockStyles
|
|
21
22
|
}) {
|
|
22
23
|
const responsiveStyles = block.responsiveStyles;
|
|
23
24
|
if (!responsiveStyles) {
|
|
24
25
|
return {};
|
|
25
26
|
}
|
|
26
|
-
const styles = __spreadValues(__spreadValues(__spreadValues(__spreadValues({}, context.inheritedStyles), responsiveStyles.large || {}), responsiveStyles.medium || {}), responsiveStyles.small || {});
|
|
27
|
+
const styles = __spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues({}, context.inheritedStyles), responsiveStyles.large || {}), responsiveStyles.medium || {}), responsiveStyles.small || {}), blockStyles);
|
|
27
28
|
const newStyles = sanitizeReactNativeBlockStyles(styles);
|
|
28
29
|
return newStyles;
|
|
29
30
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { isEditing } from "./is-editing.js";
|
|
2
|
+
import { findDOMNode } from "react-dom";
|
|
3
|
+
function transformBlockProperties(block) {
|
|
4
|
+
block.ref = (ref) => {
|
|
5
|
+
if (isEditing()) {
|
|
6
|
+
const el = findDOMNode(ref);
|
|
7
|
+
if (el) {
|
|
8
|
+
el.setAttribute("builder-id", block.id);
|
|
9
|
+
el.classList.add(block.id);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
return block;
|
|
14
|
+
}
|
|
15
|
+
export {
|
|
16
|
+
transformBlockProperties
|
|
17
|
+
};
|
package/src/helpers/css.js
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
import { camelToKebabCase } from "../functions/camel-to-kebab-case.js";
|
|
2
|
-
|
|
2
|
+
import { checkIsDefined } from "./nullable.js";
|
|
3
|
+
const convertStyleMapToCSSArray = (style) => {
|
|
3
4
|
const cssProps = Object.entries(style).map(([key, value]) => {
|
|
4
5
|
if (typeof value === "string") {
|
|
5
6
|
return `${camelToKebabCase(key)}: ${value};`;
|
|
7
|
+
} else {
|
|
8
|
+
return void 0;
|
|
6
9
|
}
|
|
7
10
|
});
|
|
8
|
-
return cssProps.
|
|
11
|
+
return cssProps.filter(checkIsDefined);
|
|
9
12
|
};
|
|
13
|
+
const convertStyleMapToCSS = (style) => convertStyleMapToCSSArray(style).join("\n");
|
|
10
14
|
const createCssClass = ({
|
|
11
15
|
mediaQuery,
|
|
12
16
|
className,
|
|
13
17
|
styles
|
|
14
18
|
}) => {
|
|
15
19
|
const cssClass = `.${className} {
|
|
16
|
-
${
|
|
20
|
+
${convertStyleMapToCSS(styles)}
|
|
17
21
|
}`;
|
|
18
22
|
if (mediaQuery) {
|
|
19
23
|
return `${mediaQuery} {
|
|
@@ -24,5 +28,7 @@ const createCssClass = ({
|
|
|
24
28
|
}
|
|
25
29
|
};
|
|
26
30
|
export {
|
|
31
|
+
convertStyleMapToCSS,
|
|
32
|
+
convertStyleMapToCSSArray,
|
|
27
33
|
createCssClass
|
|
28
34
|
};
|