@gem-sdk/pages 1.48.0-dev.1 → 1.48.0-dev.102
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/cjs/components/builder/InteractionSelectOnPageHeader.js +27 -23
- package/dist/cjs/components/builder/SwitchView.js +1 -0
- package/dist/cjs/components/builder/Toolbar.js +3 -1
- package/dist/cjs/components/builder/Toolbox.js +6 -2
- package/dist/cjs/libs/api/get-post-purchase-props-preview.js +111 -10
- package/dist/cjs/libs/api/get-static-page-props-preview.js +2 -1
- package/dist/cjs/libs/api/get-static-page-props-v2.js +2 -1
- package/dist/cjs/libs/helpers/normalize.js +6 -0
- package/dist/cjs/pages/static-v2.js +18 -5
- package/dist/esm/components/builder/InteractionSelectOnPageHeader.js +28 -24
- package/dist/esm/components/builder/SwitchView.js +1 -0
- package/dist/esm/components/builder/Toolbar.js +3 -1
- package/dist/esm/components/builder/Toolbox.js +6 -2
- package/dist/esm/libs/api/get-post-purchase-props-preview.js +111 -13
- package/dist/esm/libs/api/get-static-page-props-preview.js +2 -1
- package/dist/esm/libs/api/get-static-page-props-v2.js +2 -1
- package/dist/esm/libs/helpers/normalize.js +6 -1
- package/dist/esm/pages/static-v2.js +18 -5
- package/dist/types/index.d.ts +7 -1
- package/package.json +5 -5
|
@@ -8,57 +8,61 @@ var core = require('@gem-sdk/core');
|
|
|
8
8
|
const InteractionSelectOnPageHeader = ()=>{
|
|
9
9
|
const selectType = core.usePageStore((s)=>s.interactionData?.selectType);
|
|
10
10
|
const setInteractionSelectType = core.usePageStore((s)=>s.setInteractionSelectType);
|
|
11
|
-
const
|
|
12
|
-
const closeSelectOnPage = ()=>{
|
|
13
|
-
setInteractionIsSelectOnPage(false);
|
|
14
|
-
const event = new CustomEvent('editor:interaction:change-select-on-page', {
|
|
15
|
-
bubbles: true,
|
|
16
|
-
detail: false
|
|
17
|
-
});
|
|
18
|
-
window.dispatchEvent(event);
|
|
19
|
-
};
|
|
11
|
+
const { closeSelectOnPage } = core.useInteraction();
|
|
20
12
|
return /*#__PURE__*/ jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
21
13
|
children: [
|
|
22
14
|
/*#__PURE__*/ jsxRuntime.jsxs("header", {
|
|
23
|
-
className: "gp-flex gp-justify-between gp-h-10 gp-fixed gp-top-0 gp-left-0 gp-w-full gp-z-100",
|
|
15
|
+
className: "gp-flex gp-justify-between gp-items-center gp-h-10 gp-fixed gp-top-0 gp-left-0 gp-w-full gp-z-100 gp-bg-black gp-text-white",
|
|
24
16
|
children: [
|
|
25
17
|
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
26
|
-
className: "gp-
|
|
18
|
+
className: "gp-ml-4 gp-text-xs gp-mt-1",
|
|
19
|
+
children: "Select mode enabled"
|
|
27
20
|
}),
|
|
28
21
|
/*#__PURE__*/ jsxRuntime.jsxs("section", {
|
|
29
|
-
className: "gp-flex gp-bg-[#3C67FF]/[0.15] gp-items-center gp-h-full gp-rounded-b-lg gp-
|
|
22
|
+
className: "gp-flex gp-bg-[#3C67FF]/[0.15] gp-items-center gp-h-full gp-rounded-b-lg gp-pt-1 gp-gap-1",
|
|
30
23
|
children: [
|
|
31
24
|
/*#__PURE__*/ jsxRuntime.jsx("button", {
|
|
25
|
+
"data-interaction-mode": "element",
|
|
32
26
|
onClick: ()=>setInteractionSelectType('element'),
|
|
33
|
-
className: `gp-h-
|
|
34
|
-
|
|
27
|
+
className: `gp-h-full gp-w-[444px] gp-items-center gp-justify-center gp-bg-[#333333] gp-text-[12px] gp-leading-5 gp-font-medium gp-flex gp-rounded-t-[8px] ${selectType === 'element' ? 'gp-bg-[#3C67FF] gp-text-[#F9F9F9]' : 'gp-text-[#AAAAAA]'}`,
|
|
28
|
+
style: {
|
|
29
|
+
cursor: "url('https://cdn.shopify.com/s/files/1/0858/3168/0279/files/gempages_502328832959710176-45eb24ff-a9ee-48ac-af8b-eac35e11918d.png?v=1724038301'), auto"
|
|
30
|
+
},
|
|
31
|
+
children: "Choose an element on page"
|
|
35
32
|
}),
|
|
36
33
|
/*#__PURE__*/ jsxRuntime.jsx("button", {
|
|
34
|
+
"data-interaction-mode": "page",
|
|
37
35
|
onClick: ()=>setInteractionSelectType('page'),
|
|
38
|
-
className: `gp-h-
|
|
39
|
-
|
|
36
|
+
className: `gp-h-full gp-w-[444px] gp-items-center gp-justify-center gp-bg-[#333333] gp-text-[12px] gp-leading-5 gp-font-medium gp-flex gp-rounded-t-[8px] ${selectType === 'page' ? 'gp-bg-[#3C67FF] gp-text-[#F9F9F9]' : 'gp-text-[#AAAAAA]'}`,
|
|
37
|
+
style: {
|
|
38
|
+
cursor: "url('https://cdn.shopify.com/s/files/1/0858/3168/0279/files/gempages_502328832959710176-45eb24ff-a9ee-48ac-af8b-eac35e11918d.png?v=1724038301'), auto"
|
|
39
|
+
},
|
|
40
|
+
children: "Use entire page"
|
|
40
41
|
})
|
|
41
42
|
]
|
|
42
43
|
}),
|
|
43
44
|
/*#__PURE__*/ jsxRuntime.jsx("button", {
|
|
44
45
|
onClick: closeSelectOnPage,
|
|
45
|
-
className: "gp-h-10 gp-w-10 gp-
|
|
46
|
+
className: "gp-h-10 gp-w-10 gp-flex gp-items-center gp-justify-center gp-rounded-bl-lg",
|
|
46
47
|
children: /*#__PURE__*/ jsxRuntime.jsx("svg", {
|
|
47
|
-
width: "
|
|
48
|
-
height: "
|
|
49
|
-
viewBox: "0 0
|
|
48
|
+
width: "12",
|
|
49
|
+
height: "12",
|
|
50
|
+
viewBox: "0 0 12 12",
|
|
50
51
|
fill: "none",
|
|
51
52
|
xmlns: "http://www.w3.org/2000/svg",
|
|
52
53
|
children: /*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
53
|
-
d: "
|
|
54
|
-
fill: "#
|
|
54
|
+
d: "M9.96967 11.0303C10.2626 11.3232 10.7374 11.3232 11.0303 11.0303C11.3232 10.7374 11.3232 10.2626 11.0303 9.96967L7.06066 6L11.0303 2.03033C11.3232 1.73744 11.3232 1.26256 11.0303 0.96967C10.7374 0.676777 10.2626 0.676777 9.96967 0.96967L6 4.93934L2.03033 0.96967C1.73744 0.676777 1.26256 0.676777 0.96967 0.96967C0.676777 1.26256 0.676777 1.73744 0.96967 2.03033L4.93934 6L0.96967 9.96967C0.676777 10.2626 0.676777 10.7374 0.96967 11.0303C1.26256 11.3232 1.73744 11.3232 2.03033 11.0303L6 7.06066L9.96967 11.0303Z",
|
|
55
|
+
fill: "#F9F9F9"
|
|
55
56
|
})
|
|
56
57
|
})
|
|
57
58
|
})
|
|
58
59
|
]
|
|
59
60
|
}),
|
|
60
61
|
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
61
|
-
className:
|
|
62
|
+
className: `gp-w-full gp-fixed gp-top-0 gp-left-0 gp-border-[#3C67FF] gp-border-[4px] gp-mt-[40px] ${selectType === 'page' ? 'gp-z-90 gp-bg-[#3c67ff]/[0.25]' : ''}`,
|
|
63
|
+
style: {
|
|
64
|
+
height: 'calc(100% - 40px)'
|
|
65
|
+
}
|
|
62
66
|
})
|
|
63
67
|
]
|
|
64
68
|
});
|
|
@@ -579,12 +579,14 @@ const Toolbar = ()=>{
|
|
|
579
579
|
if (await isElementInsideArticle()) {
|
|
580
580
|
articleId = currentComponentActive.current?.articleId || '';
|
|
581
581
|
}
|
|
582
|
+
console.log('$parent$parent', $parent);
|
|
582
583
|
const event = new CustomEvent('editor:toolbar:force-active-component', {
|
|
583
584
|
bubbles: true,
|
|
584
585
|
detail: {
|
|
585
586
|
componentUid: uid,
|
|
586
587
|
productId,
|
|
587
|
-
articleId
|
|
588
|
+
articleId,
|
|
589
|
+
elementTag: $parent.getAttribute('data-component-tag') || ''
|
|
588
590
|
}
|
|
589
591
|
});
|
|
590
592
|
outHover($parent);
|
|
@@ -38,6 +38,7 @@ const Toolbox = ()=>{
|
|
|
38
38
|
const clearModal = core.useModalStore((s)=>s.clearModal);
|
|
39
39
|
const setInteractionIsSelectOnPage = core.usePageStore((s)=>s.setInteractionIsSelectOnPage);
|
|
40
40
|
const setInteractionItem = core.usePageStore((s)=>s.setInteractionItem);
|
|
41
|
+
const setInteractionSelectType = core.usePageStore((s)=>s.setInteractionSelectType);
|
|
41
42
|
const fonts = react.useMemo(()=>genFonts.getFontsFromDataBuilder(state), [
|
|
42
43
|
state
|
|
43
44
|
]);
|
|
@@ -332,10 +333,13 @@ const Toolbox = ()=>{
|
|
|
332
333
|
setSalePageProductId
|
|
333
334
|
]);
|
|
334
335
|
const onUpdateInteractionIsSelectOnPage = react.useCallback((e)=>{
|
|
335
|
-
const isSelectOnPage = e.detail;
|
|
336
|
+
const isSelectOnPage = e.detail.value;
|
|
337
|
+
const mode = e.detail.mode;
|
|
336
338
|
setInteractionIsSelectOnPage(isSelectOnPage);
|
|
339
|
+
setInteractionSelectType(mode);
|
|
337
340
|
}, [
|
|
338
|
-
setInteractionIsSelectOnPage
|
|
341
|
+
setInteractionIsSelectOnPage,
|
|
342
|
+
setInteractionSelectType
|
|
339
343
|
]);
|
|
340
344
|
const onUpdateInteractionItem = react.useCallback((e)=>{
|
|
341
345
|
const interactionItem = e.detail;
|
|
@@ -119,22 +119,120 @@ const fetchThemePageDataByTemplateID = async (data, fetcher)=>{
|
|
|
119
119
|
productOffers: productOffers
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
-
const
|
|
122
|
+
const fetchShopLibraryPageDataByID = async (data, fetcher)=>{
|
|
123
|
+
const variables = {
|
|
124
|
+
shopLibraryPageId: data.shopLibraryPageId
|
|
125
|
+
};
|
|
126
|
+
const [theme, storeProperty, saleFunnelDiscounts] = await Promise.allSettled([
|
|
127
|
+
fetcher([
|
|
128
|
+
core.ShopLibraryPageDocument,
|
|
129
|
+
variables
|
|
130
|
+
]),
|
|
131
|
+
fetcher([
|
|
132
|
+
core.StorePropertyDocument
|
|
133
|
+
]),
|
|
134
|
+
fetcher([
|
|
135
|
+
core.SaleFunnelDiscountsDocument,
|
|
136
|
+
{
|
|
137
|
+
where: {
|
|
138
|
+
saleFunnelOfferID: data.currentOfferID
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
])
|
|
142
|
+
]);
|
|
143
|
+
if (theme.status === 'rejected') {
|
|
144
|
+
throw new Error(theme.reason?.[0]);
|
|
145
|
+
}
|
|
146
|
+
if (saleFunnelDiscounts.status === 'rejected') {
|
|
147
|
+
throw new Error(saleFunnelDiscounts.reason?.[0]);
|
|
148
|
+
}
|
|
149
|
+
return {
|
|
150
|
+
dataBuilder: theme.value.shopLibraryPage,
|
|
151
|
+
pageStyle: undefined,
|
|
152
|
+
storeProperty,
|
|
153
|
+
productOffers: saleFunnelDiscounts.value.saleFunnelDiscounts?.edges?.filter((item)=>item?.node?.objectType === 'PRODUCT' && item?.node?.type === 'ORDER_VALUE') || []
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
const fetchLibraryTemplateDataByID = async (data, fetcher)=>{
|
|
157
|
+
const variables = {
|
|
158
|
+
libraryTemplateId: data.libraryTemplateId
|
|
159
|
+
};
|
|
160
|
+
const [theme, storeProperty, saleFunnelDiscounts] = await Promise.allSettled([
|
|
161
|
+
fetcher([
|
|
162
|
+
core.LibraryTemplateDocument,
|
|
163
|
+
variables
|
|
164
|
+
]),
|
|
165
|
+
fetcher([
|
|
166
|
+
core.StorePropertyDocument
|
|
167
|
+
]),
|
|
168
|
+
fetcher([
|
|
169
|
+
core.SaleFunnelDiscountsDocument,
|
|
170
|
+
{
|
|
171
|
+
where: {
|
|
172
|
+
saleFunnelOfferID: data.currentOfferID
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
])
|
|
176
|
+
]);
|
|
177
|
+
if (theme.status === 'rejected') {
|
|
178
|
+
throw new Error(theme.reason?.[0]);
|
|
179
|
+
}
|
|
180
|
+
if (saleFunnelDiscounts.status === 'rejected') {
|
|
181
|
+
throw new Error(saleFunnelDiscounts.reason?.[0]);
|
|
182
|
+
}
|
|
183
|
+
return {
|
|
184
|
+
dataBuilder: theme.value.libraryTemplate,
|
|
185
|
+
pageStyle: undefined,
|
|
186
|
+
storeProperty,
|
|
187
|
+
productOffers: saleFunnelDiscounts.value.saleFunnelDiscounts?.edges?.filter((item)=>item?.node?.objectType === 'PRODUCT' && item?.node?.type === 'ORDER_VALUE') || []
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
const getRelevantPageData = async (data)=>{
|
|
191
|
+
const { id, currentOfferID, fetcher, isLibraryTemplate, librarySaleFunnelID, isShopLibraryPage } = data;
|
|
192
|
+
if (librarySaleFunnelID) {
|
|
193
|
+
return await fetchThemePageDataByTemplateID({
|
|
194
|
+
libraryTemplateId: id,
|
|
195
|
+
currentOfferID,
|
|
196
|
+
librarySaleFunnelID
|
|
197
|
+
}, fetcher);
|
|
198
|
+
}
|
|
199
|
+
if (isShopLibraryPage && currentOfferID) {
|
|
200
|
+
return await fetchShopLibraryPageDataByID({
|
|
201
|
+
shopLibraryPageId: id,
|
|
202
|
+
currentOfferID
|
|
203
|
+
}, fetcher);
|
|
204
|
+
}
|
|
205
|
+
if (isLibraryTemplate && currentOfferID) {
|
|
206
|
+
return await fetchLibraryTemplateDataByID({
|
|
207
|
+
libraryTemplateId: id,
|
|
208
|
+
currentOfferID
|
|
209
|
+
}, fetcher);
|
|
210
|
+
}
|
|
211
|
+
if (currentOfferID) {
|
|
212
|
+
return await fetchPostPurchasePageDataByID({
|
|
213
|
+
themePageId: id,
|
|
214
|
+
currentOfferID
|
|
215
|
+
}, fetcher);
|
|
216
|
+
}
|
|
217
|
+
return await fetchSalePageDataByID({
|
|
218
|
+
themePageId: id
|
|
219
|
+
}, fetcher);
|
|
220
|
+
};
|
|
221
|
+
const getPostPurchasePropsPreview = (fetcher, librarySaleFunnelID, storeFrontFetcher)=>async (data)=>{
|
|
123
222
|
try {
|
|
124
|
-
const {
|
|
125
|
-
|
|
223
|
+
const { id, currentOfferID, isLibraryTemplate, isShopLibraryPage } = data;
|
|
224
|
+
const { dataBuilder, storeProperty, productOffers, pageStyle } = await getRelevantPageData({
|
|
225
|
+
id,
|
|
126
226
|
currentOfferID,
|
|
227
|
+
fetcher,
|
|
228
|
+
isLibraryTemplate,
|
|
229
|
+
isShopLibraryPage,
|
|
127
230
|
librarySaleFunnelID
|
|
128
|
-
}
|
|
129
|
-
themePageId: id,
|
|
130
|
-
currentOfferID
|
|
131
|
-
}, fetcher) : await fetchSalePageDataByID({
|
|
132
|
-
themePageId: id
|
|
133
|
-
}, fetcher);
|
|
231
|
+
});
|
|
134
232
|
if (!dataBuilder) {
|
|
135
233
|
throw new Error(`No data builder found for slug: /preview/${id}`);
|
|
136
234
|
}
|
|
137
|
-
const pageTemplate = librarySaleFunnelID ? normalize.parseBuilderLibraryTemplate(dataBuilder) : normalize.parseBuilderTemplateV2(dataBuilder);
|
|
235
|
+
const pageTemplate = librarySaleFunnelID || isLibraryTemplate && currentOfferID ? normalize.parseBuilderLibraryTemplate(dataBuilder) : isShopLibraryPage ? normalize.parseShopLibraryPageTemplate(dataBuilder) : normalize.parseBuilderTemplateV2(dataBuilder);
|
|
138
236
|
const gemPagesStoreFrontFetcher = storeFrontFetcher || fetcher;
|
|
139
237
|
const [elementFontStyle, fontStyle, fallback] = await Promise.all([
|
|
140
238
|
googleFonts.getFontStyleFromPageTemplate(pageTemplate),
|
|
@@ -160,7 +258,10 @@ const getPostPurchasePropsPreview = (fetcher, librarySaleFunnelID, storeFrontFet
|
|
|
160
258
|
}
|
|
161
259
|
};
|
|
162
260
|
|
|
261
|
+
exports.fetchLibraryTemplateDataByID = fetchLibraryTemplateDataByID;
|
|
163
262
|
exports.fetchPostPurchasePageDataByID = fetchPostPurchasePageDataByID;
|
|
164
263
|
exports.fetchSalePageDataByID = fetchSalePageDataByID;
|
|
264
|
+
exports.fetchShopLibraryPageDataByID = fetchShopLibraryPageDataByID;
|
|
165
265
|
exports.fetchThemePageDataByTemplateID = fetchThemePageDataByTemplateID;
|
|
166
266
|
exports.getPostPurchasePropsPreview = getPostPurchasePropsPreview;
|
|
267
|
+
exports.getRelevantPageData = getRelevantPageData;
|
|
@@ -139,7 +139,8 @@ const getStaticPagePropsPreview = (fetcher, shopifyFetcher)=>async (slug)=>{
|
|
|
139
139
|
facebookPixelId: dataBuilder.themePageAnalytic?.fbPixelID ?? null,
|
|
140
140
|
tiktokPixelId: dataBuilder.themePageAnalytic?.tiktokPixelID ?? null,
|
|
141
141
|
customCodeHeader: dataBuilder.themePageCustomCode?.header ?? null,
|
|
142
|
-
customCodeBody: dataBuilder.themePageCustomCode?.body ?? null
|
|
142
|
+
customCodeBody: dataBuilder.themePageCustomCode?.body ?? null,
|
|
143
|
+
interaction: dataBuilder?.interaction
|
|
143
144
|
});
|
|
144
145
|
} catch (err) {
|
|
145
146
|
nextjs.captureException(err);
|
|
@@ -141,7 +141,8 @@ const getStaticPagePropsV2 = (fetcher, shopifyFetcher)=>async (slug)=>{
|
|
|
141
141
|
customCodeHeader: dataBuilder.themePageCustomCode?.header ?? null,
|
|
142
142
|
customCodeBody: dataBuilder.themePageCustomCode?.body ?? null,
|
|
143
143
|
pageHandle: dataBuilder.handle ?? null,
|
|
144
|
-
customFonts: customFonts$1
|
|
144
|
+
customFonts: customFonts$1,
|
|
145
|
+
interaction: dataBuilder?.interaction
|
|
145
146
|
});
|
|
146
147
|
} catch (err) {
|
|
147
148
|
nextjs.captureException(err);
|
|
@@ -88,9 +88,15 @@ const parseBuilderLibraryTemplate = (data)=>{
|
|
|
88
88
|
...data?.sections ?? []
|
|
89
89
|
], data?.sectionPosition);
|
|
90
90
|
};
|
|
91
|
+
const parseShopLibraryPageTemplate = (data)=>{
|
|
92
|
+
return normalizePageSectionResponseV2([
|
|
93
|
+
...data?.shopLibrarySections ?? []
|
|
94
|
+
], data?.sectionPosition);
|
|
95
|
+
};
|
|
91
96
|
|
|
92
97
|
exports.normalizeBuilderData = normalizeBuilderData;
|
|
93
98
|
exports.normalizePageSectionResponseV2 = normalizePageSectionResponseV2;
|
|
94
99
|
exports.parseBuilderLibraryTemplate = parseBuilderLibraryTemplate;
|
|
95
100
|
exports.parseBuilderTemplate = parseBuilderTemplate;
|
|
96
101
|
exports.parseBuilderTemplateV2 = parseBuilderTemplateV2;
|
|
102
|
+
exports.parseShopLibraryPageTemplate = parseShopLibraryPageTemplate;
|
|
@@ -9,9 +9,11 @@ var useTrackingView = require('../libs/hooks/use-tracking-view.js');
|
|
|
9
9
|
var parseHtml = require('../libs/parse-html.js');
|
|
10
10
|
var Header = require('../components/builder/Header.js');
|
|
11
11
|
var FooterForPostPurchase = require('../components/FooterForPostPurchase.js');
|
|
12
|
+
var Script = require('next/script');
|
|
12
13
|
|
|
13
|
-
const StaticPageV2 = ({ components, builderData, sectionData, seo, themeStyle, fontStyle, elementFontStyle, customCodeHeader, shopToken, pageHandle, customFonts, isPostPurchase, shopName, productOffers, publicStoreFrontData, isPreview })=>{
|
|
14
|
+
const StaticPageV2 = ({ components, builderData, sectionData, seo, themeStyle, fontStyle, elementFontStyle, customCodeHeader, shopToken, pageHandle, customFonts, isPostPurchase, shopName, productOffers, publicStoreFrontData, isPreview, interaction })=>{
|
|
14
15
|
const router$1 = router.useRouter();
|
|
16
|
+
const baseAssetURL = process.env.GP_BASE_ASSET_URL || 'https://d3kbi0je7pp4lw.cloudfront.net';
|
|
15
17
|
useTrackingView.useTrackingView(shopToken, pageHandle, router$1.isFallback);
|
|
16
18
|
if (router$1.isFallback) {
|
|
17
19
|
return /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
@@ -79,17 +81,28 @@ const StaticPageV2 = ({ components, builderData, sectionData, seo, themeStyle, f
|
|
|
79
81
|
isPostPurchase && /*#__PURE__*/ jsxRuntime.jsx(Header.default, {
|
|
80
82
|
pageType: "POST_PURCHASE"
|
|
81
83
|
}),
|
|
84
|
+
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
85
|
+
dangerouslySetInnerHTML: {
|
|
86
|
+
__html: `<div id="gp-interaction" style="display: none;">${JSON.stringify(interaction?.value || [])}</div>`
|
|
87
|
+
}
|
|
88
|
+
}),
|
|
82
89
|
/*#__PURE__*/ jsxRuntime.jsx(core.SectionProvider, {
|
|
83
90
|
data: sectionData,
|
|
84
|
-
children: builderData?.map((builder)=>/*#__PURE__*/ jsxRuntime.
|
|
91
|
+
children: builderData?.map((builder)=>/*#__PURE__*/ jsxRuntime.jsxs(core.BuilderProvider, {
|
|
85
92
|
state: builder.data,
|
|
86
93
|
lazy: builder.lazy,
|
|
87
94
|
priority: builder.priority,
|
|
88
95
|
isPostPurchase: isPostPurchase,
|
|
89
96
|
isPreview: isPreview,
|
|
90
|
-
children:
|
|
91
|
-
|
|
92
|
-
|
|
97
|
+
children: [
|
|
98
|
+
/*#__PURE__*/ jsxRuntime.jsx(core.Render, {
|
|
99
|
+
uid: builder.uid
|
|
100
|
+
}),
|
|
101
|
+
/*#__PURE__*/ jsxRuntime.jsx(Script, {
|
|
102
|
+
defer: true,
|
|
103
|
+
src: `${baseAssetURL}/assets-v2/gp-flow-action-lip.js`
|
|
104
|
+
})
|
|
105
|
+
]
|
|
93
106
|
}, builder.uid))
|
|
94
107
|
}),
|
|
95
108
|
isPostPurchase && /*#__PURE__*/ jsxRuntime.jsx(FooterForPostPurchase.default, {
|
|
@@ -1,60 +1,64 @@
|
|
|
1
1
|
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
2
|
-
import { usePageStore } from '@gem-sdk/core';
|
|
2
|
+
import { usePageStore, useInteraction } from '@gem-sdk/core';
|
|
3
3
|
|
|
4
4
|
const InteractionSelectOnPageHeader = ()=>{
|
|
5
5
|
const selectType = usePageStore((s)=>s.interactionData?.selectType);
|
|
6
6
|
const setInteractionSelectType = usePageStore((s)=>s.setInteractionSelectType);
|
|
7
|
-
const
|
|
8
|
-
const closeSelectOnPage = ()=>{
|
|
9
|
-
setInteractionIsSelectOnPage(false);
|
|
10
|
-
const event = new CustomEvent('editor:interaction:change-select-on-page', {
|
|
11
|
-
bubbles: true,
|
|
12
|
-
detail: false
|
|
13
|
-
});
|
|
14
|
-
window.dispatchEvent(event);
|
|
15
|
-
};
|
|
7
|
+
const { closeSelectOnPage } = useInteraction();
|
|
16
8
|
return /*#__PURE__*/ jsxs(Fragment, {
|
|
17
9
|
children: [
|
|
18
10
|
/*#__PURE__*/ jsxs("header", {
|
|
19
|
-
className: "gp-flex gp-justify-between gp-h-10 gp-fixed gp-top-0 gp-left-0 gp-w-full gp-z-100",
|
|
11
|
+
className: "gp-flex gp-justify-between gp-items-center gp-h-10 gp-fixed gp-top-0 gp-left-0 gp-w-full gp-z-100 gp-bg-black gp-text-white",
|
|
20
12
|
children: [
|
|
21
13
|
/*#__PURE__*/ jsx("div", {
|
|
22
|
-
className: "gp-
|
|
14
|
+
className: "gp-ml-4 gp-text-xs gp-mt-1",
|
|
15
|
+
children: "Select mode enabled"
|
|
23
16
|
}),
|
|
24
17
|
/*#__PURE__*/ jsxs("section", {
|
|
25
|
-
className: "gp-flex gp-bg-[#3C67FF]/[0.15] gp-items-center gp-h-full gp-rounded-b-lg gp-
|
|
18
|
+
className: "gp-flex gp-bg-[#3C67FF]/[0.15] gp-items-center gp-h-full gp-rounded-b-lg gp-pt-1 gp-gap-1",
|
|
26
19
|
children: [
|
|
27
20
|
/*#__PURE__*/ jsx("button", {
|
|
21
|
+
"data-interaction-mode": "element",
|
|
28
22
|
onClick: ()=>setInteractionSelectType('element'),
|
|
29
|
-
className: `gp-h-
|
|
30
|
-
|
|
23
|
+
className: `gp-h-full gp-w-[444px] gp-items-center gp-justify-center gp-bg-[#333333] gp-text-[12px] gp-leading-5 gp-font-medium gp-flex gp-rounded-t-[8px] ${selectType === 'element' ? 'gp-bg-[#3C67FF] gp-text-[#F9F9F9]' : 'gp-text-[#AAAAAA]'}`,
|
|
24
|
+
style: {
|
|
25
|
+
cursor: "url('https://cdn.shopify.com/s/files/1/0858/3168/0279/files/gempages_502328832959710176-45eb24ff-a9ee-48ac-af8b-eac35e11918d.png?v=1724038301'), auto"
|
|
26
|
+
},
|
|
27
|
+
children: "Choose an element on page"
|
|
31
28
|
}),
|
|
32
29
|
/*#__PURE__*/ jsx("button", {
|
|
30
|
+
"data-interaction-mode": "page",
|
|
33
31
|
onClick: ()=>setInteractionSelectType('page'),
|
|
34
|
-
className: `gp-h-
|
|
35
|
-
|
|
32
|
+
className: `gp-h-full gp-w-[444px] gp-items-center gp-justify-center gp-bg-[#333333] gp-text-[12px] gp-leading-5 gp-font-medium gp-flex gp-rounded-t-[8px] ${selectType === 'page' ? 'gp-bg-[#3C67FF] gp-text-[#F9F9F9]' : 'gp-text-[#AAAAAA]'}`,
|
|
33
|
+
style: {
|
|
34
|
+
cursor: "url('https://cdn.shopify.com/s/files/1/0858/3168/0279/files/gempages_502328832959710176-45eb24ff-a9ee-48ac-af8b-eac35e11918d.png?v=1724038301'), auto"
|
|
35
|
+
},
|
|
36
|
+
children: "Use entire page"
|
|
36
37
|
})
|
|
37
38
|
]
|
|
38
39
|
}),
|
|
39
40
|
/*#__PURE__*/ jsx("button", {
|
|
40
41
|
onClick: closeSelectOnPage,
|
|
41
|
-
className: "gp-h-10 gp-w-10 gp-
|
|
42
|
+
className: "gp-h-10 gp-w-10 gp-flex gp-items-center gp-justify-center gp-rounded-bl-lg",
|
|
42
43
|
children: /*#__PURE__*/ jsx("svg", {
|
|
43
|
-
width: "
|
|
44
|
-
height: "
|
|
45
|
-
viewBox: "0 0
|
|
44
|
+
width: "12",
|
|
45
|
+
height: "12",
|
|
46
|
+
viewBox: "0 0 12 12",
|
|
46
47
|
fill: "none",
|
|
47
48
|
xmlns: "http://www.w3.org/2000/svg",
|
|
48
49
|
children: /*#__PURE__*/ jsx("path", {
|
|
49
|
-
d: "
|
|
50
|
-
fill: "#
|
|
50
|
+
d: "M9.96967 11.0303C10.2626 11.3232 10.7374 11.3232 11.0303 11.0303C11.3232 10.7374 11.3232 10.2626 11.0303 9.96967L7.06066 6L11.0303 2.03033C11.3232 1.73744 11.3232 1.26256 11.0303 0.96967C10.7374 0.676777 10.2626 0.676777 9.96967 0.96967L6 4.93934L2.03033 0.96967C1.73744 0.676777 1.26256 0.676777 0.96967 0.96967C0.676777 1.26256 0.676777 1.73744 0.96967 2.03033L4.93934 6L0.96967 9.96967C0.676777 10.2626 0.676777 10.7374 0.96967 11.0303C1.26256 11.3232 1.73744 11.3232 2.03033 11.0303L6 7.06066L9.96967 11.0303Z",
|
|
51
|
+
fill: "#F9F9F9"
|
|
51
52
|
})
|
|
52
53
|
})
|
|
53
54
|
})
|
|
54
55
|
]
|
|
55
56
|
}),
|
|
56
57
|
/*#__PURE__*/ jsx("div", {
|
|
57
|
-
className:
|
|
58
|
+
className: `gp-w-full gp-fixed gp-top-0 gp-left-0 gp-border-[#3C67FF] gp-border-[4px] gp-mt-[40px] ${selectType === 'page' ? 'gp-z-90 gp-bg-[#3c67ff]/[0.25]' : ''}`,
|
|
59
|
+
style: {
|
|
60
|
+
height: 'calc(100% - 40px)'
|
|
61
|
+
}
|
|
58
62
|
})
|
|
59
63
|
]
|
|
60
64
|
});
|
|
@@ -575,12 +575,14 @@ const Toolbar = ()=>{
|
|
|
575
575
|
if (await isElementInsideArticle()) {
|
|
576
576
|
articleId = currentComponentActive.current?.articleId || '';
|
|
577
577
|
}
|
|
578
|
+
console.log('$parent$parent', $parent);
|
|
578
579
|
const event = new CustomEvent('editor:toolbar:force-active-component', {
|
|
579
580
|
bubbles: true,
|
|
580
581
|
detail: {
|
|
581
582
|
componentUid: uid,
|
|
582
583
|
productId,
|
|
583
|
-
articleId
|
|
584
|
+
articleId,
|
|
585
|
+
elementTag: $parent.getAttribute('data-component-tag') || ''
|
|
584
586
|
}
|
|
585
587
|
});
|
|
586
588
|
outHover($parent);
|
|
@@ -34,6 +34,7 @@ const Toolbox = ()=>{
|
|
|
34
34
|
const clearModal = useModalStore((s)=>s.clearModal);
|
|
35
35
|
const setInteractionIsSelectOnPage = usePageStore((s)=>s.setInteractionIsSelectOnPage);
|
|
36
36
|
const setInteractionItem = usePageStore((s)=>s.setInteractionItem);
|
|
37
|
+
const setInteractionSelectType = usePageStore((s)=>s.setInteractionSelectType);
|
|
37
38
|
const fonts = useMemo(()=>getFontsFromDataBuilder(state), [
|
|
38
39
|
state
|
|
39
40
|
]);
|
|
@@ -328,10 +329,13 @@ const Toolbox = ()=>{
|
|
|
328
329
|
setSalePageProductId
|
|
329
330
|
]);
|
|
330
331
|
const onUpdateInteractionIsSelectOnPage = useCallback((e)=>{
|
|
331
|
-
const isSelectOnPage = e.detail;
|
|
332
|
+
const isSelectOnPage = e.detail.value;
|
|
333
|
+
const mode = e.detail.mode;
|
|
332
334
|
setInteractionIsSelectOnPage(isSelectOnPage);
|
|
335
|
+
setInteractionSelectType(mode);
|
|
333
336
|
}, [
|
|
334
|
-
setInteractionIsSelectOnPage
|
|
337
|
+
setInteractionIsSelectOnPage,
|
|
338
|
+
setInteractionSelectType
|
|
335
339
|
]);
|
|
336
340
|
const onUpdateInteractionItem = useCallback((e)=>{
|
|
337
341
|
const interactionItem = e.detail;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ThemePageDocument, StorePropertyDocument, SaleFunnelDiscountsDocument, LibraryTemplateDocument, LibrarySaleFunnelDocument } from '@gem-sdk/core';
|
|
1
|
+
import { ThemePageDocument, StorePropertyDocument, SaleFunnelDiscountsDocument, LibraryTemplateDocument, LibrarySaleFunnelDocument, ShopLibraryPageDocument } from '@gem-sdk/core';
|
|
2
2
|
import { captureException } from '@sentry/nextjs';
|
|
3
3
|
import { getFontStyleFromPageTemplate, getFontFromGlobalStyle } from '../google-fonts.js';
|
|
4
4
|
import { getFallbackV2 } from '../helpers/get-fallback.js';
|
|
5
|
-
import { parseBuilderLibraryTemplate, parseBuilderTemplateV2 } from '../helpers/normalize.js';
|
|
5
|
+
import { parseBuilderLibraryTemplate, parseShopLibraryPageTemplate, parseBuilderTemplateV2 } from '../helpers/normalize.js';
|
|
6
6
|
import { usePagePreview } from '../hooks/usePagePreview.js';
|
|
7
7
|
import { serializableJson } from '../helpers/parse-json.js';
|
|
8
8
|
import { genCSS } from '../helpers/gen-css.js';
|
|
@@ -117,22 +117,120 @@ const fetchThemePageDataByTemplateID = async (data, fetcher)=>{
|
|
|
117
117
|
productOffers: productOffers
|
|
118
118
|
};
|
|
119
119
|
};
|
|
120
|
-
const
|
|
120
|
+
const fetchShopLibraryPageDataByID = async (data, fetcher)=>{
|
|
121
|
+
const variables = {
|
|
122
|
+
shopLibraryPageId: data.shopLibraryPageId
|
|
123
|
+
};
|
|
124
|
+
const [theme, storeProperty, saleFunnelDiscounts] = await Promise.allSettled([
|
|
125
|
+
fetcher([
|
|
126
|
+
ShopLibraryPageDocument,
|
|
127
|
+
variables
|
|
128
|
+
]),
|
|
129
|
+
fetcher([
|
|
130
|
+
StorePropertyDocument
|
|
131
|
+
]),
|
|
132
|
+
fetcher([
|
|
133
|
+
SaleFunnelDiscountsDocument,
|
|
134
|
+
{
|
|
135
|
+
where: {
|
|
136
|
+
saleFunnelOfferID: data.currentOfferID
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
])
|
|
140
|
+
]);
|
|
141
|
+
if (theme.status === 'rejected') {
|
|
142
|
+
throw new Error(theme.reason?.[0]);
|
|
143
|
+
}
|
|
144
|
+
if (saleFunnelDiscounts.status === 'rejected') {
|
|
145
|
+
throw new Error(saleFunnelDiscounts.reason?.[0]);
|
|
146
|
+
}
|
|
147
|
+
return {
|
|
148
|
+
dataBuilder: theme.value.shopLibraryPage,
|
|
149
|
+
pageStyle: undefined,
|
|
150
|
+
storeProperty,
|
|
151
|
+
productOffers: saleFunnelDiscounts.value.saleFunnelDiscounts?.edges?.filter((item)=>item?.node?.objectType === 'PRODUCT' && item?.node?.type === 'ORDER_VALUE') || []
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
const fetchLibraryTemplateDataByID = async (data, fetcher)=>{
|
|
155
|
+
const variables = {
|
|
156
|
+
libraryTemplateId: data.libraryTemplateId
|
|
157
|
+
};
|
|
158
|
+
const [theme, storeProperty, saleFunnelDiscounts] = await Promise.allSettled([
|
|
159
|
+
fetcher([
|
|
160
|
+
LibraryTemplateDocument,
|
|
161
|
+
variables
|
|
162
|
+
]),
|
|
163
|
+
fetcher([
|
|
164
|
+
StorePropertyDocument
|
|
165
|
+
]),
|
|
166
|
+
fetcher([
|
|
167
|
+
SaleFunnelDiscountsDocument,
|
|
168
|
+
{
|
|
169
|
+
where: {
|
|
170
|
+
saleFunnelOfferID: data.currentOfferID
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
])
|
|
174
|
+
]);
|
|
175
|
+
if (theme.status === 'rejected') {
|
|
176
|
+
throw new Error(theme.reason?.[0]);
|
|
177
|
+
}
|
|
178
|
+
if (saleFunnelDiscounts.status === 'rejected') {
|
|
179
|
+
throw new Error(saleFunnelDiscounts.reason?.[0]);
|
|
180
|
+
}
|
|
181
|
+
return {
|
|
182
|
+
dataBuilder: theme.value.libraryTemplate,
|
|
183
|
+
pageStyle: undefined,
|
|
184
|
+
storeProperty,
|
|
185
|
+
productOffers: saleFunnelDiscounts.value.saleFunnelDiscounts?.edges?.filter((item)=>item?.node?.objectType === 'PRODUCT' && item?.node?.type === 'ORDER_VALUE') || []
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
const getRelevantPageData = async (data)=>{
|
|
189
|
+
const { id, currentOfferID, fetcher, isLibraryTemplate, librarySaleFunnelID, isShopLibraryPage } = data;
|
|
190
|
+
if (librarySaleFunnelID) {
|
|
191
|
+
return await fetchThemePageDataByTemplateID({
|
|
192
|
+
libraryTemplateId: id,
|
|
193
|
+
currentOfferID,
|
|
194
|
+
librarySaleFunnelID
|
|
195
|
+
}, fetcher);
|
|
196
|
+
}
|
|
197
|
+
if (isShopLibraryPage && currentOfferID) {
|
|
198
|
+
return await fetchShopLibraryPageDataByID({
|
|
199
|
+
shopLibraryPageId: id,
|
|
200
|
+
currentOfferID
|
|
201
|
+
}, fetcher);
|
|
202
|
+
}
|
|
203
|
+
if (isLibraryTemplate && currentOfferID) {
|
|
204
|
+
return await fetchLibraryTemplateDataByID({
|
|
205
|
+
libraryTemplateId: id,
|
|
206
|
+
currentOfferID
|
|
207
|
+
}, fetcher);
|
|
208
|
+
}
|
|
209
|
+
if (currentOfferID) {
|
|
210
|
+
return await fetchPostPurchasePageDataByID({
|
|
211
|
+
themePageId: id,
|
|
212
|
+
currentOfferID
|
|
213
|
+
}, fetcher);
|
|
214
|
+
}
|
|
215
|
+
return await fetchSalePageDataByID({
|
|
216
|
+
themePageId: id
|
|
217
|
+
}, fetcher);
|
|
218
|
+
};
|
|
219
|
+
const getPostPurchasePropsPreview = (fetcher, librarySaleFunnelID, storeFrontFetcher)=>async (data)=>{
|
|
121
220
|
try {
|
|
122
|
-
const {
|
|
123
|
-
|
|
221
|
+
const { id, currentOfferID, isLibraryTemplate, isShopLibraryPage } = data;
|
|
222
|
+
const { dataBuilder, storeProperty, productOffers, pageStyle } = await getRelevantPageData({
|
|
223
|
+
id,
|
|
124
224
|
currentOfferID,
|
|
225
|
+
fetcher,
|
|
226
|
+
isLibraryTemplate,
|
|
227
|
+
isShopLibraryPage,
|
|
125
228
|
librarySaleFunnelID
|
|
126
|
-
}
|
|
127
|
-
themePageId: id,
|
|
128
|
-
currentOfferID
|
|
129
|
-
}, fetcher) : await fetchSalePageDataByID({
|
|
130
|
-
themePageId: id
|
|
131
|
-
}, fetcher);
|
|
229
|
+
});
|
|
132
230
|
if (!dataBuilder) {
|
|
133
231
|
throw new Error(`No data builder found for slug: /preview/${id}`);
|
|
134
232
|
}
|
|
135
|
-
const pageTemplate = librarySaleFunnelID ? parseBuilderLibraryTemplate(dataBuilder) : parseBuilderTemplateV2(dataBuilder);
|
|
233
|
+
const pageTemplate = librarySaleFunnelID || isLibraryTemplate && currentOfferID ? parseBuilderLibraryTemplate(dataBuilder) : isShopLibraryPage ? parseShopLibraryPageTemplate(dataBuilder) : parseBuilderTemplateV2(dataBuilder);
|
|
136
234
|
const gemPagesStoreFrontFetcher = storeFrontFetcher || fetcher;
|
|
137
235
|
const [elementFontStyle, fontStyle, fallback] = await Promise.all([
|
|
138
236
|
getFontStyleFromPageTemplate(pageTemplate),
|
|
@@ -158,4 +256,4 @@ const getPostPurchasePropsPreview = (fetcher, librarySaleFunnelID, storeFrontFet
|
|
|
158
256
|
}
|
|
159
257
|
};
|
|
160
258
|
|
|
161
|
-
export { fetchPostPurchasePageDataByID, fetchSalePageDataByID, fetchThemePageDataByTemplateID, getPostPurchasePropsPreview };
|
|
259
|
+
export { fetchLibraryTemplateDataByID, fetchPostPurchasePageDataByID, fetchSalePageDataByID, fetchShopLibraryPageDataByID, fetchThemePageDataByTemplateID, getPostPurchasePropsPreview, getRelevantPageData };
|
|
@@ -137,7 +137,8 @@ const getStaticPagePropsPreview = (fetcher, shopifyFetcher)=>async (slug)=>{
|
|
|
137
137
|
facebookPixelId: dataBuilder.themePageAnalytic?.fbPixelID ?? null,
|
|
138
138
|
tiktokPixelId: dataBuilder.themePageAnalytic?.tiktokPixelID ?? null,
|
|
139
139
|
customCodeHeader: dataBuilder.themePageCustomCode?.header ?? null,
|
|
140
|
-
customCodeBody: dataBuilder.themePageCustomCode?.body ?? null
|
|
140
|
+
customCodeBody: dataBuilder.themePageCustomCode?.body ?? null,
|
|
141
|
+
interaction: dataBuilder?.interaction
|
|
141
142
|
});
|
|
142
143
|
} catch (err) {
|
|
143
144
|
captureException(err);
|
|
@@ -139,7 +139,8 @@ const getStaticPagePropsV2 = (fetcher, shopifyFetcher)=>async (slug)=>{
|
|
|
139
139
|
customCodeHeader: dataBuilder.themePageCustomCode?.header ?? null,
|
|
140
140
|
customCodeBody: dataBuilder.themePageCustomCode?.body ?? null,
|
|
141
141
|
pageHandle: dataBuilder.handle ?? null,
|
|
142
|
-
customFonts
|
|
142
|
+
customFonts,
|
|
143
|
+
interaction: dataBuilder?.interaction
|
|
143
144
|
});
|
|
144
145
|
} catch (err) {
|
|
145
146
|
captureException(err);
|
|
@@ -86,5 +86,10 @@ const parseBuilderLibraryTemplate = (data)=>{
|
|
|
86
86
|
...data?.sections ?? []
|
|
87
87
|
], data?.sectionPosition);
|
|
88
88
|
};
|
|
89
|
+
const parseShopLibraryPageTemplate = (data)=>{
|
|
90
|
+
return normalizePageSectionResponseV2([
|
|
91
|
+
...data?.shopLibrarySections ?? []
|
|
92
|
+
], data?.sectionPosition);
|
|
93
|
+
};
|
|
89
94
|
|
|
90
|
-
export { normalizeBuilderData, normalizePageSectionResponseV2, parseBuilderLibraryTemplate, parseBuilderTemplate, parseBuilderTemplateV2 };
|
|
95
|
+
export { normalizeBuilderData, normalizePageSectionResponseV2, parseBuilderLibraryTemplate, parseBuilderTemplate, parseBuilderTemplateV2, parseShopLibraryPageTemplate };
|
|
@@ -7,9 +7,11 @@ import { useTrackingView } from '../libs/hooks/use-tracking-view.js';
|
|
|
7
7
|
import { parseHtml } from '../libs/parse-html.js';
|
|
8
8
|
import Header from '../components/builder/Header.js';
|
|
9
9
|
import FooterForPostPurchase from '../components/FooterForPostPurchase.js';
|
|
10
|
+
import Script from 'next/script';
|
|
10
11
|
|
|
11
|
-
const StaticPageV2 = ({ components, builderData, sectionData, seo, themeStyle, fontStyle, elementFontStyle, customCodeHeader, shopToken, pageHandle, customFonts, isPostPurchase, shopName, productOffers, publicStoreFrontData, isPreview })=>{
|
|
12
|
+
const StaticPageV2 = ({ components, builderData, sectionData, seo, themeStyle, fontStyle, elementFontStyle, customCodeHeader, shopToken, pageHandle, customFonts, isPostPurchase, shopName, productOffers, publicStoreFrontData, isPreview, interaction })=>{
|
|
12
13
|
const router = useRouter();
|
|
14
|
+
const baseAssetURL = process.env.GP_BASE_ASSET_URL || 'https://d3kbi0je7pp4lw.cloudfront.net';
|
|
13
15
|
useTrackingView(shopToken, pageHandle, router.isFallback);
|
|
14
16
|
if (router.isFallback) {
|
|
15
17
|
return /*#__PURE__*/ jsx("div", {
|
|
@@ -77,17 +79,28 @@ const StaticPageV2 = ({ components, builderData, sectionData, seo, themeStyle, f
|
|
|
77
79
|
isPostPurchase && /*#__PURE__*/ jsx(Header, {
|
|
78
80
|
pageType: "POST_PURCHASE"
|
|
79
81
|
}),
|
|
82
|
+
/*#__PURE__*/ jsx("div", {
|
|
83
|
+
dangerouslySetInnerHTML: {
|
|
84
|
+
__html: `<div id="gp-interaction" style="display: none;">${JSON.stringify(interaction?.value || [])}</div>`
|
|
85
|
+
}
|
|
86
|
+
}),
|
|
80
87
|
/*#__PURE__*/ jsx(SectionProvider, {
|
|
81
88
|
data: sectionData,
|
|
82
|
-
children: builderData?.map((builder)=>/*#__PURE__*/
|
|
89
|
+
children: builderData?.map((builder)=>/*#__PURE__*/ jsxs(BuilderProvider, {
|
|
83
90
|
state: builder.data,
|
|
84
91
|
lazy: builder.lazy,
|
|
85
92
|
priority: builder.priority,
|
|
86
93
|
isPostPurchase: isPostPurchase,
|
|
87
94
|
isPreview: isPreview,
|
|
88
|
-
children:
|
|
89
|
-
|
|
90
|
-
|
|
95
|
+
children: [
|
|
96
|
+
/*#__PURE__*/ jsx(Render, {
|
|
97
|
+
uid: builder.uid
|
|
98
|
+
}),
|
|
99
|
+
/*#__PURE__*/ jsx(Script, {
|
|
100
|
+
defer: true,
|
|
101
|
+
src: `${baseAssetURL}/assets-v2/gp-flow-action-lip.js`
|
|
102
|
+
})
|
|
103
|
+
]
|
|
91
104
|
}, builder.uid))
|
|
92
105
|
}),
|
|
93
106
|
isPostPurchase && /*#__PURE__*/ jsx(FooterForPostPurchase, {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ type PageBuilderProps = {
|
|
|
40
40
|
customCodeBody?: string | null;
|
|
41
41
|
isStorefront?: boolean;
|
|
42
42
|
customFonts?: string | null;
|
|
43
|
+
interaction?: ShopType.Maybe<Pick<ShopType.PublishedPageInteraction, "id" | "value">>;
|
|
43
44
|
};
|
|
44
45
|
type PageBuilderPropsV2 = {
|
|
45
46
|
builderData?: {
|
|
@@ -93,7 +94,12 @@ type StaticPagePropsV2 = PageBuilderPropsV2 & {
|
|
|
93
94
|
};
|
|
94
95
|
declare const StaticPageV2: React.FC<StaticPagePropsV2 & AdditionalPageBuilderProps>;
|
|
95
96
|
|
|
96
|
-
declare const getPostPurchasePropsPreview: (fetcher: FetchFunc, librarySaleFunnelID?: string, storeFrontFetcher?: FetchFunc) => (
|
|
97
|
+
declare const getPostPurchasePropsPreview: (fetcher: FetchFunc, librarySaleFunnelID?: string, storeFrontFetcher?: FetchFunc) => (data: {
|
|
98
|
+
id: string;
|
|
99
|
+
currentOfferID: string;
|
|
100
|
+
isLibraryTemplate?: boolean;
|
|
101
|
+
isShopLibraryPage?: boolean;
|
|
102
|
+
}) => Promise<Omit<StaticPagePropsV2, 'publicStoreFrontData'>>;
|
|
97
103
|
|
|
98
104
|
declare const getStaticPagePropsPreview: (fetcher: FetchFunc, shopifyFetcher: FetchFunc) => (slug: string) => Promise<PageBuilderPropsV2>;
|
|
99
105
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/pages",
|
|
3
|
-
"version": "1.48.0-dev.
|
|
3
|
+
"version": "1.48.0-dev.102",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"next": "latest"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@gem-sdk/core": "1.48.0-dev.
|
|
30
|
-
"@gem-sdk/plugin-cookie-bar": "1.48.0-dev.
|
|
31
|
-
"@gem-sdk/plugin-quick-view": "1.48.0-dev.
|
|
32
|
-
"@gem-sdk/plugin-sticky-add-to-cart": "1.48.0-dev.
|
|
29
|
+
"@gem-sdk/core": "1.48.0-dev.102",
|
|
30
|
+
"@gem-sdk/plugin-cookie-bar": "1.48.0-dev.3",
|
|
31
|
+
"@gem-sdk/plugin-quick-view": "1.48.0-dev.3",
|
|
32
|
+
"@gem-sdk/plugin-sticky-add-to-cart": "1.48.0-dev.3"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"next": ">=13"
|