@gem-sdk/core 1.51.0 → 1.53.0-dev.10
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/ComponentToolbarPreview.js +115 -104
- package/dist/cjs/components/ComponentWrapperPreview.js +16 -2
- package/dist/cjs/components/InteractionSuffix.js +115 -0
- package/dist/cjs/components/Render.liquid.js +21 -7
- package/dist/cjs/contexts/PageContext.js +29 -1
- package/dist/cjs/graphql/fragments/published-theme-page.generated.js +8 -0
- package/dist/cjs/graphql-app-api/queries/ShopLibraryPage.generated.js +17 -0
- package/dist/cjs/helpers/animations.js +6 -6
- package/dist/cjs/helpers/background.js +1 -1
- package/dist/cjs/helpers/compose-advance-style.js +6 -3
- package/dist/cjs/helpers/interaction/index.js +66 -0
- package/dist/cjs/helpers/shadow.js +15 -3
- package/dist/cjs/helpers/third-party/appConfig.js +14 -0
- package/dist/cjs/helpers/third-party/appSetting.js +19 -1
- package/dist/cjs/helpers/third-party/constant.js +3 -1
- package/dist/cjs/helpers/typography.js +4 -3
- package/dist/cjs/hooks/animation/useApplyAnimation.js +2 -0
- package/dist/cjs/hooks/useInteraction.js +19 -0
- package/dist/cjs/index.js +14 -0
- package/dist/cjs/types/animations.js +2 -0
- package/dist/cjs/types/custom.js +51 -0
- package/dist/esm/components/ComponentToolbarPreview.js +115 -104
- package/dist/esm/components/ComponentWrapperPreview.js +16 -2
- package/dist/esm/components/InteractionSuffix.js +113 -0
- package/dist/esm/components/Render.liquid.js +21 -7
- package/dist/esm/contexts/PageContext.js +29 -1
- package/dist/esm/graphql/fragments/published-theme-page.generated.js +8 -0
- package/dist/esm/graphql-app-api/queries/ShopLibraryPage.generated.js +15 -0
- package/dist/esm/helpers/animations.js +6 -6
- package/dist/esm/helpers/background.js +1 -1
- package/dist/esm/helpers/compose-advance-style.js +7 -4
- package/dist/esm/helpers/interaction/index.js +64 -0
- package/dist/esm/helpers/shadow.js +15 -4
- package/dist/esm/helpers/third-party/appConfig.js +13 -1
- package/dist/esm/helpers/third-party/appSetting.js +19 -1
- package/dist/esm/helpers/third-party/constant.js +4 -2
- package/dist/esm/helpers/typography.js +4 -3
- package/dist/esm/hooks/animation/useApplyAnimation.js +2 -0
- package/dist/esm/hooks/useInteraction.js +17 -0
- package/dist/esm/index.js +4 -1
- package/dist/esm/types/animations.js +2 -0
- package/dist/esm/types/custom.js +51 -0
- package/dist/types/index.d.ts +4866 -891
- package/package.json +3 -3
|
@@ -7,6 +7,7 @@ var react = require('react');
|
|
|
7
7
|
require('zustand');
|
|
8
8
|
var BuilderPreviewContext = require('../contexts/BuilderPreviewContext.js');
|
|
9
9
|
var ShopContext = require('../contexts/ShopContext.js');
|
|
10
|
+
var PageContext = require('../contexts/PageContext.js');
|
|
10
11
|
require('@gem-sdk/adapter-shopify');
|
|
11
12
|
require('swr');
|
|
12
13
|
require('swr/mutation');
|
|
@@ -21,6 +22,7 @@ var useToolbarPostPurchase = require('../hooks/useToolbarPostPurchase.js');
|
|
|
21
22
|
var constant = require('./constant.js');
|
|
22
23
|
var AIContentGenerator = require('./ai-generator/AIContentGenerator.js');
|
|
23
24
|
var AIGenContentLoading = require('./ai-generator/AIGenContentLoading.js');
|
|
25
|
+
var InteractionSuffix = require('./InteractionSuffix.js');
|
|
24
26
|
require('../helpers/convert.js');
|
|
25
27
|
|
|
26
28
|
const SECTION_LIMIT = 25;
|
|
@@ -37,6 +39,7 @@ const ComponentToolbarPreview = (props)=>{
|
|
|
37
39
|
const isShopifySection = props.isShopifySection;
|
|
38
40
|
const storefrontUrl = ShopContext.useShopStore((s)=>s.storefrontUrl);
|
|
39
41
|
const editingPageType = ShopContext.useShopStore((s)=>s.pageType);
|
|
42
|
+
const interactionData = PageContext.usePageStore((s)=>s.interactionData);
|
|
40
43
|
const getParents = BuilderPreviewContext.useBuilderPreviewStore((s)=>s.getParents);
|
|
41
44
|
const root = BuilderPreviewContext.useBuilderPreviewStore((s)=>s.getItem('ROOT'));
|
|
42
45
|
const isThemeSectionEditor = BuilderPreviewContext.useBuilderPreviewStore((s)=>s.isThemeSectionEditor);
|
|
@@ -56,6 +59,9 @@ const ComponentToolbarPreview = (props)=>{
|
|
|
56
59
|
const isSaleFunnelPage = react.useMemo(()=>editingPageType === 'POST_PURCHASE', [
|
|
57
60
|
editingPageType
|
|
58
61
|
]);
|
|
62
|
+
const isSelectOnPage = react.useMemo(()=>interactionData?.isSelectOnPage, [
|
|
63
|
+
interactionData
|
|
64
|
+
]);
|
|
59
65
|
const { checkDisableDelete, getTooltipText, checkDisableDuplicate } = useToolbarPostPurchase.usePostPurchase(props.uid, props.tag || '');
|
|
60
66
|
const editProductElementList = [
|
|
61
67
|
'Product Title',
|
|
@@ -72,10 +78,6 @@ const ComponentToolbarPreview = (props)=>{
|
|
|
72
78
|
'Article Excerpt',
|
|
73
79
|
'Article Tags'
|
|
74
80
|
];
|
|
75
|
-
const editAbleElementList = [
|
|
76
|
-
...editProductElementList,
|
|
77
|
-
...editArticleElementList
|
|
78
|
-
];
|
|
79
81
|
const isOverToolbarPosition = (el, parent)=>{
|
|
80
82
|
const parentLength = parents.length;
|
|
81
83
|
const rect = el.getBoundingClientRect();
|
|
@@ -448,6 +450,7 @@ const ComponentToolbarPreview = (props)=>{
|
|
|
448
450
|
}
|
|
449
451
|
return /*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
450
452
|
"data-toolbar-parent": true,
|
|
453
|
+
"data-component-tag": parent.tag,
|
|
451
454
|
"data-parent-uid": parent.uid,
|
|
452
455
|
"data-toolbar-theme-section": isThemeSectionEditor,
|
|
453
456
|
"data-toolbar-parent-revert": isShowParentRevert,
|
|
@@ -498,109 +501,117 @@ const ComponentToolbarPreview = (props)=>{
|
|
|
498
501
|
]
|
|
499
502
|
}, parent.uid);
|
|
500
503
|
}),
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
504
|
+
!isSelectOnPage && /*#__PURE__*/ jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
505
|
+
children: [
|
|
506
|
+
props.tag === 'Section' && !props.isThemeSection && isEnableCreateThemeSection() && !props.isShopifySection && getIndexSection() < SECTION_LIMIT && /*#__PURE__*/ jsxRuntime.jsx(CreateThemeSection.CreateThemeSection, {
|
|
507
|
+
...props
|
|
508
|
+
}),
|
|
509
|
+
isEnableAIContent() && /*#__PURE__*/ jsxRuntime.jsx(AIContentGenerator.AIContentGenerator, {
|
|
510
|
+
...props
|
|
511
|
+
}),
|
|
512
|
+
props.tag == 'Sticky' && /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
513
|
+
"data-toolbar-zoom-out": true,
|
|
514
|
+
onClick: (e)=>onZoomOut(e),
|
|
515
|
+
"aria-hidden": "true",
|
|
516
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("svg", {
|
|
517
|
+
width: "16",
|
|
518
|
+
height: "16",
|
|
519
|
+
viewBox: "0 0 16 16",
|
|
520
|
+
fill: "none",
|
|
521
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
522
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
523
|
+
fillRule: "evenodd",
|
|
524
|
+
clipRule: "evenodd",
|
|
525
|
+
d: "M14.5 7C14.7761 7 15 6.77614 15 6.5C15 6.22386 14.7761 6 14.5 6L10.7072 6L14.8536 1.85355C15.0489 1.65829 15.0489 1.34171 14.8536 1.14645C14.6584 0.951186 14.3418 0.951185 14.1465 1.14645L10 5.29297L10 1.5C10 1.22386 9.77614 1 9.5 1C9.22386 1 9 1.22386 9 1.5L9 6.5C9 6.77614 9.22386 7 9.5 7L14.5 7ZM6 10.7073L6 14.5C6 14.7761 6.22386 15 6.5 15C6.77614 15 7 14.7761 7 14.5L7 9.5C7 9.22386 6.77614 9 6.5 9H1.5C1.22386 9 1 9.22386 1 9.5C1 9.77614 1.22386 10 1.5 10H5.29306L1.14662 14.1464C0.951353 14.3417 0.951353 14.6583 1.14662 14.8536C1.34188 15.0488 1.65846 15.0488 1.85372 14.8536L6 10.7073Z",
|
|
526
|
+
fill: "currentColor"
|
|
527
|
+
})
|
|
528
|
+
})
|
|
529
|
+
}),
|
|
530
|
+
editProductElementList.includes(toolbarName() ?? '') && /*#__PURE__*/ jsxRuntime.jsx(Tooltip.default, {
|
|
531
|
+
"data-toolbar-title": true,
|
|
532
|
+
enable: true,
|
|
533
|
+
"data-toolbar-disable": false,
|
|
534
|
+
text: "Edit content in Shopify",
|
|
535
|
+
position: "top",
|
|
536
|
+
onClick: goToShopifyEditLink,
|
|
537
|
+
"aria-hidden": "true",
|
|
538
|
+
children: /*#__PURE__*/ jsxRuntime.jsxs("svg", {
|
|
539
|
+
width: "16",
|
|
540
|
+
height: "16",
|
|
541
|
+
viewBox: "0 0 16 16",
|
|
542
|
+
fill: "none",
|
|
543
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
544
|
+
children: [
|
|
545
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
546
|
+
fillRule: "evenodd",
|
|
547
|
+
clipRule: "evenodd",
|
|
548
|
+
d: "M8.61129 2.47348C8.61129 2.47348 8.47099 2.51557 8.23248 2.59274C8.19039 2.46647 8.13427 2.30512 8.05009 2.15079C7.78352 1.6387 7.39068 1.37212 6.91366 1.36511C6.87858 1.36511 6.85052 1.36511 6.81545 1.37212C6.80843 1.36511 6.80142 1.35634 6.7944 1.34757C6.78739 1.3388 6.78037 1.33003 6.77336 1.32302C6.56992 1.09854 6.30335 0.993314 5.98768 1.00033C5.37737 1.02137 4.76706 1.46332 4.269 2.249C3.91825 2.80319 3.65869 3.49767 3.58153 4.03082C3.38823 4.09074 3.21092 4.14586 3.05516 4.19429C2.64595 4.32151 2.3851 4.40261 2.37494 4.40261C2.01718 4.51485 2.01016 4.52888 1.96106 4.85859C1.92598 5.11113 1 12.2945 1 12.2945L7.14764 13.3583C7.18955 13.118 7.30454 12.8953 7.47848 12.7214L8.70249 11.4974V2.45945C8.66741 2.45945 8.63234 2.46647 8.61129 2.47348ZM6.82948 3.02767L6.62554 3.09101C6.27515 3.19989 5.90094 3.31617 5.5317 3.42752C5.65797 2.94349 5.89648 2.46647 6.19111 2.15079C6.30335 2.03154 6.45067 1.90527 6.63306 1.8281C6.80142 2.18587 6.83649 2.68393 6.82948 3.02767ZM5.99469 1.4072C6.13499 1.4072 6.26126 1.43526 6.36649 1.50541C6.19813 1.58959 6.0438 1.71586 5.88947 1.87721C5.50364 2.29109 5.202 2.94349 5.08274 3.56783C4.74459 3.66991 4.41804 3.77199 4.10838 3.8688L4.01646 3.89753C4.22691 2.90841 5.05468 1.43526 5.99469 1.4072ZM4.80214 7.0122C4.81874 7.26957 5.09737 7.44833 5.43473 7.66478C5.95252 7.99699 6.60867 8.41798 6.66813 9.3482C6.7453 10.5548 6.02977 11.3826 4.99154 11.4457C3.7569 11.5229 3.06943 10.7933 3.06943 10.7933L3.32899 9.67791C3.32899 9.67791 4.01646 10.197 4.56363 10.1619C4.92139 10.1409 5.04767 9.84627 5.04065 9.64283C5.01607 9.26796 4.73308 9.06671 4.41569 8.84101C4.00848 8.55142 3.54465 8.22157 3.49735 7.4331C3.42018 6.24756 4.19885 5.05501 5.91051 4.94277C6.57694 4.90068 6.91366 5.06904 6.91366 5.06904L6.52082 6.53518C6.52082 6.53518 6.08589 6.33876 5.56678 6.36682C4.80915 6.41592 4.79512 6.89294 4.80214 7.0122ZM7.23635 2.9014C7.22934 2.59274 7.19426 2.15781 7.04695 1.78601C7.50994 1.87721 7.74143 2.39632 7.83964 2.71199C7.70008 2.75665 7.54275 2.80575 7.37118 2.8593L7.23635 2.9014Z",
|
|
549
|
+
fill: "currentColor"
|
|
550
|
+
}),
|
|
551
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
552
|
+
d: "M10.7719 3.44156C10.7757 3.47543 11.1733 6.16931 11.541 8.65883L8.95503 11.2448V2.57871C9.16548 2.78214 9.71265 3.31528 9.71265 3.31528C9.71265 3.31528 10.6106 3.32931 10.6597 3.33633C10.7088 3.34334 10.7649 3.37842 10.7719 3.44156Z",
|
|
553
|
+
fill: "currentColor"
|
|
554
|
+
}),
|
|
555
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
556
|
+
d: "M14.8056 8.644L14.0424 7.88088C13.7832 7.62163 13.3629 7.62163 13.1036 7.88088L12.1519 8.83258L13.8539 10.5345L14.8056 9.58282C15.0648 9.32357 15.0648 8.90325 14.8056 8.644Z",
|
|
557
|
+
fill: "currentColor"
|
|
558
|
+
}),
|
|
559
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
560
|
+
d: "M7.85018 13.0942L11.6419 9.30246L13.3438 11.0044L9.55212 14.7961C9.43782 14.9104 9.28573 14.9791 9.1244 14.9892L7.93427 15.0641C7.73484 15.0767 7.56961 14.9114 7.58216 14.712L7.65706 13.5219C7.66721 13.3606 7.73588 13.2085 7.85018 13.0942Z",
|
|
561
|
+
fill: "currentColor"
|
|
562
|
+
})
|
|
563
|
+
]
|
|
564
|
+
})
|
|
565
|
+
}),
|
|
566
|
+
/*#__PURE__*/ jsxRuntime.jsx(Tooltip.default, {
|
|
567
|
+
enable: props.tag == 'Section' && getSectionNumber() >= SECTION_LIMIT,
|
|
568
|
+
text: "Page has reached Shopify’s 25 section-limit",
|
|
569
|
+
position: "bottom",
|
|
570
|
+
"data-toolbar-duplicate": true,
|
|
571
|
+
"data-toolbar-disable": props.tag == 'Section' && getSectionNumber() >= SECTION_LIMIT || isDisableDuplicate,
|
|
572
|
+
onClick: isDisableDuplicate ? undefined : (e)=>onDuplicate(e),
|
|
573
|
+
"aria-hidden": "true",
|
|
574
|
+
className: isDisableDuplicate ? '!gp-cursor-not-allowed' : '',
|
|
575
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("svg", {
|
|
576
|
+
width: "16",
|
|
577
|
+
height: "16",
|
|
578
|
+
viewBox: "0 0 16 16",
|
|
579
|
+
fill: "none",
|
|
580
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
581
|
+
fillRule: "evenodd",
|
|
582
|
+
clipRule: "evenodd",
|
|
583
|
+
d: "M6.08423 1.21289C5.53194 1.21289 5.08423 1.66061 5.08423 2.21289V3.78711H4.26172C3.43329 3.78711 2.76172 4.45868 2.76172 5.28711V13.2871C2.76172 14.1155 3.43329 14.7871 4.26172 14.7871H10.2617C11.0901 14.7871 11.7617 14.1155 11.7617 13.2871V12.4629H13.0842C13.6365 12.4629 14.0842 12.0152 14.0842 11.4629V2.21289C14.0842 1.66061 13.6365 1.21289 13.0842 1.21289H6.08423ZM10.7617 12.4629H6.08423C5.53194 12.4629 5.08423 12.0152 5.08423 11.4629V4.78711H4.26172C3.98558 4.78711 3.76172 5.01097 3.76172 5.28711V13.2871C3.76172 13.5633 3.98558 13.7871 4.26172 13.7871H10.2617C10.5379 13.7871 10.7617 13.5633 10.7617 13.2871V12.4629Z",
|
|
584
|
+
fill: "currentColor"
|
|
585
|
+
})
|
|
586
|
+
})
|
|
587
|
+
}),
|
|
588
|
+
/*#__PURE__*/ jsxRuntime.jsx(Tooltip.default, {
|
|
589
|
+
"data-toolbar-delete": true,
|
|
590
|
+
onClick: (e)=>isDisableDelete ? null : onDelete(e),
|
|
591
|
+
enable: isDisableDelete,
|
|
592
|
+
"data-toolbar-disable": isDisableDelete,
|
|
593
|
+
width: tooltipText.width,
|
|
594
|
+
text: tooltipText.text,
|
|
595
|
+
position: deleteTooltipPosition,
|
|
596
|
+
"aria-hidden": "true",
|
|
597
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("svg", {
|
|
598
|
+
width: "16",
|
|
599
|
+
height: "16",
|
|
600
|
+
viewBox: "0 0 16 16",
|
|
601
|
+
fill: "none",
|
|
602
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
603
|
+
fillRule: "evenodd",
|
|
604
|
+
clipRule: "evenodd",
|
|
605
|
+
d: "M11 2.88965V2.38965C11 1.56122 10.3284 0.889648 9.5 0.889648H6.5C5.67157 0.889648 5 1.56122 5 2.38965V2.88965H2C1.72386 2.88965 1.5 3.11351 1.5 3.38965C1.5 3.66579 1.72386 3.88965 2 3.88965H3.21997V13.1099C3.21997 14.2144 4.1154 15.1099 5.21997 15.1099H11.22C12.3245 15.1099 13.22 14.2144 13.22 13.1099V3.88965H14C14.2761 3.88965 14.5 3.66579 14.5 3.38965C14.5 3.11351 14.2761 2.88965 14 2.88965H11ZM6 2.88965H10V2.38965C10 2.11351 9.77614 1.88965 9.5 1.88965H6.5C6.22386 1.88965 6 2.11351 6 2.38965V2.88965ZM6.24976 6.13965C6.66397 6.13965 6.99976 6.47543 6.99976 6.88965V11.3896C6.99976 11.8039 6.66397 12.1396 6.24976 12.1396C5.83554 12.1396 5.49976 11.8039 5.49976 11.3896V6.88965C5.49976 6.47543 5.83554 6.13965 6.24976 6.13965ZM10.4998 6.88965C10.4998 6.47543 10.164 6.13965 9.74976 6.13965C9.33554 6.13965 8.99976 6.47543 8.99976 6.88965V11.3896C8.99976 11.8039 9.33554 12.1396 9.74976 12.1396C10.164 12.1396 10.4998 11.8039 10.4998 11.3896V6.88965Z",
|
|
606
|
+
fill: "currentColor"
|
|
607
|
+
})
|
|
557
608
|
})
|
|
558
|
-
]
|
|
559
|
-
})
|
|
560
|
-
}),
|
|
561
|
-
/*#__PURE__*/ jsxRuntime.jsx(Tooltip.default, {
|
|
562
|
-
enable: props.tag == 'Section' && getSectionNumber() >= SECTION_LIMIT,
|
|
563
|
-
text: "Page has reached Shopify’s 25 section-limit",
|
|
564
|
-
position: "bottom",
|
|
565
|
-
"data-toolbar-duplicate": true,
|
|
566
|
-
"data-toolbar-disable": props.tag == 'Section' && getSectionNumber() >= SECTION_LIMIT || isDisableDuplicate,
|
|
567
|
-
onClick: isDisableDuplicate ? undefined : (e)=>onDuplicate(e),
|
|
568
|
-
"aria-hidden": "true",
|
|
569
|
-
className: isDisableDuplicate ? '!gp-cursor-not-allowed' : '',
|
|
570
|
-
children: /*#__PURE__*/ jsxRuntime.jsx("svg", {
|
|
571
|
-
width: "16",
|
|
572
|
-
height: "16",
|
|
573
|
-
viewBox: "0 0 16 16",
|
|
574
|
-
fill: "none",
|
|
575
|
-
children: /*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
576
|
-
fillRule: "evenodd",
|
|
577
|
-
clipRule: "evenodd",
|
|
578
|
-
d: "M6.08423 1.21289C5.53194 1.21289 5.08423 1.66061 5.08423 2.21289V3.78711H4.26172C3.43329 3.78711 2.76172 4.45868 2.76172 5.28711V13.2871C2.76172 14.1155 3.43329 14.7871 4.26172 14.7871H10.2617C11.0901 14.7871 11.7617 14.1155 11.7617 13.2871V12.4629H13.0842C13.6365 12.4629 14.0842 12.0152 14.0842 11.4629V2.21289C14.0842 1.66061 13.6365 1.21289 13.0842 1.21289H6.08423ZM10.7617 12.4629H6.08423C5.53194 12.4629 5.08423 12.0152 5.08423 11.4629V4.78711H4.26172C3.98558 4.78711 3.76172 5.01097 3.76172 5.28711V13.2871C3.76172 13.5633 3.98558 13.7871 4.26172 13.7871H10.2617C10.5379 13.7871 10.7617 13.5633 10.7617 13.2871V12.4629Z",
|
|
579
|
-
fill: "currentColor"
|
|
580
609
|
})
|
|
581
|
-
|
|
610
|
+
]
|
|
582
611
|
}),
|
|
583
|
-
/*#__PURE__*/ jsxRuntime.jsx(
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
enable: isDisableDelete,
|
|
587
|
-
"data-toolbar-disable": isDisableDelete,
|
|
588
|
-
width: tooltipText.width,
|
|
589
|
-
text: tooltipText.text,
|
|
590
|
-
position: deleteTooltipPosition,
|
|
591
|
-
"aria-hidden": "true",
|
|
592
|
-
children: /*#__PURE__*/ jsxRuntime.jsx("svg", {
|
|
593
|
-
width: "16",
|
|
594
|
-
height: "16",
|
|
595
|
-
viewBox: "0 0 16 16",
|
|
596
|
-
fill: "none",
|
|
597
|
-
children: /*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
598
|
-
fillRule: "evenodd",
|
|
599
|
-
clipRule: "evenodd",
|
|
600
|
-
d: "M11 2.88965V2.38965C11 1.56122 10.3284 0.889648 9.5 0.889648H6.5C5.67157 0.889648 5 1.56122 5 2.38965V2.88965H2C1.72386 2.88965 1.5 3.11351 1.5 3.38965C1.5 3.66579 1.72386 3.88965 2 3.88965H3.21997V13.1099C3.21997 14.2144 4.1154 15.1099 5.21997 15.1099H11.22C12.3245 15.1099 13.22 14.2144 13.22 13.1099V3.88965H14C14.2761 3.88965 14.5 3.66579 14.5 3.38965C14.5 3.11351 14.2761 2.88965 14 2.88965H11ZM6 2.88965H10V2.38965C10 2.11351 9.77614 1.88965 9.5 1.88965H6.5C6.22386 1.88965 6 2.11351 6 2.38965V2.88965ZM6.24976 6.13965C6.66397 6.13965 6.99976 6.47543 6.99976 6.88965V11.3896C6.99976 11.8039 6.66397 12.1396 6.24976 12.1396C5.83554 12.1396 5.49976 11.8039 5.49976 11.3896V6.88965C5.49976 6.47543 5.83554 6.13965 6.24976 6.13965ZM10.4998 6.88965C10.4998 6.47543 10.164 6.13965 9.74976 6.13965C9.33554 6.13965 8.99976 6.47543 8.99976 6.88965V11.3896C8.99976 11.8039 9.33554 12.1396 9.74976 12.1396C10.164 12.1396 10.4998 11.8039 10.4998 11.3896V6.88965Z",
|
|
601
|
-
fill: "currentColor"
|
|
602
|
-
})
|
|
603
|
-
})
|
|
612
|
+
/*#__PURE__*/ jsxRuntime.jsx(InteractionSuffix.InteractionSuffix, {
|
|
613
|
+
tag: props.tag,
|
|
614
|
+
uid: props.uid
|
|
604
615
|
})
|
|
605
616
|
]
|
|
606
617
|
}, props.uid),
|
|
@@ -5,6 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var jsxRuntime = require('react/jsx-runtime');
|
|
6
6
|
var react = require('react');
|
|
7
7
|
var composeAdvanceStyle = require('../helpers/compose-advance-style.js');
|
|
8
|
+
var useInteraction = require('../hooks/useInteraction.js');
|
|
8
9
|
var constant = require('./constant.js');
|
|
9
10
|
var RenderCustomCode = require('./RenderCustomCode.js');
|
|
10
11
|
var ComponentToolbarPreview = require('./ComponentToolbarPreview.js');
|
|
@@ -32,6 +33,19 @@ const ComponentWrapperPreview = ({ children, ...props })=>{
|
|
|
32
33
|
}, [
|
|
33
34
|
props.uid
|
|
34
35
|
]);
|
|
36
|
+
const currentProps = props;
|
|
37
|
+
const { getAnimationByUid } = useInteraction.useInteraction();
|
|
38
|
+
const animationByInteraction = getAnimationByUid(props.uid);
|
|
39
|
+
if (animationByInteraction) {
|
|
40
|
+
currentProps.advanced = {
|
|
41
|
+
...currentProps.advanced,
|
|
42
|
+
animation: {
|
|
43
|
+
desktop: animationByInteraction,
|
|
44
|
+
tablet: animationByInteraction,
|
|
45
|
+
mobile: animationByInteraction
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
}
|
|
35
49
|
const pageType = shop.usePageType();
|
|
36
50
|
if (props.type === 'section') {
|
|
37
51
|
return null;
|
|
@@ -136,7 +150,7 @@ const ComponentWrapperPreview = ({ children, ...props })=>{
|
|
|
136
150
|
return /*#__PURE__*/ jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
137
151
|
children: [
|
|
138
152
|
/*#__PURE__*/ jsxRuntime.jsx(ComponentAnimation.default, {
|
|
139
|
-
...
|
|
153
|
+
...currentProps
|
|
140
154
|
}),
|
|
141
155
|
/*#__PURE__*/ jsxRuntime.jsx(RenderCustomCode.default, {
|
|
142
156
|
uid: props.uid,
|
|
@@ -165,7 +179,7 @@ const ComponentWrapperPreview = ({ children, ...props })=>{
|
|
|
165
179
|
return /*#__PURE__*/ jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
166
180
|
children: [
|
|
167
181
|
/*#__PURE__*/ jsxRuntime.jsx(ComponentAnimation.default, {
|
|
168
|
-
...
|
|
182
|
+
...currentProps
|
|
169
183
|
}),
|
|
170
184
|
/*#__PURE__*/ jsxRuntime.jsx(RenderCustomCode.default, {
|
|
171
185
|
uid: props.uid,
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
4
|
+
var react = require('react');
|
|
5
|
+
require('zustand');
|
|
6
|
+
require('swr');
|
|
7
|
+
var PageContext = require('../contexts/PageContext.js');
|
|
8
|
+
require('@gem-sdk/adapter-shopify');
|
|
9
|
+
require('swr/mutation');
|
|
10
|
+
require('swr/infinite');
|
|
11
|
+
require('vanilla-lazyload');
|
|
12
|
+
require('../hooks/useCartUI.js');
|
|
13
|
+
require('react-transition-group');
|
|
14
|
+
require('@gem-sdk/core');
|
|
15
|
+
require('classnames');
|
|
16
|
+
require('dayjs');
|
|
17
|
+
var index = require('../helpers/interaction/index.js');
|
|
18
|
+
require('../helpers/convert.js');
|
|
19
|
+
|
|
20
|
+
const InteractionSuffix = ({ tag, uid })=>{
|
|
21
|
+
const { closeSelectOnPage } = index.useInteraction();
|
|
22
|
+
const currentInteraction = PageContext.usePageStore((s)=>s.interactionData?.item);
|
|
23
|
+
const isSelectOnPage = PageContext.usePageStore((s)=>s.interactionData?.isSelectOnPage);
|
|
24
|
+
const isCurrentInteractionTarget = react.useMemo(()=>{
|
|
25
|
+
return currentInteraction?.targets?.find((t)=>t.uid === uid && !t.isEntirePage);
|
|
26
|
+
}, [
|
|
27
|
+
currentInteraction,
|
|
28
|
+
uid
|
|
29
|
+
]);
|
|
30
|
+
const isCurrentInteractionTrigger = react.useMemo(()=>{
|
|
31
|
+
return currentInteraction?.self?.uid === uid && !currentInteraction?.self?.isEntirePage;
|
|
32
|
+
}, [
|
|
33
|
+
currentInteraction,
|
|
34
|
+
uid
|
|
35
|
+
]);
|
|
36
|
+
const isDisplay = react.useMemo(()=>{
|
|
37
|
+
return isCurrentInteractionTarget || isCurrentInteractionTrigger;
|
|
38
|
+
}, [
|
|
39
|
+
isCurrentInteractionTarget,
|
|
40
|
+
isCurrentInteractionTrigger
|
|
41
|
+
]);
|
|
42
|
+
const positionOffset = react.useMemo(()=>{
|
|
43
|
+
if (isCurrentInteractionTrigger && isCurrentInteractionTarget) {
|
|
44
|
+
return 80;
|
|
45
|
+
}
|
|
46
|
+
return 40;
|
|
47
|
+
}, [
|
|
48
|
+
isCurrentInteractionTrigger,
|
|
49
|
+
isCurrentInteractionTarget
|
|
50
|
+
]);
|
|
51
|
+
if (!isDisplay) {
|
|
52
|
+
return /*#__PURE__*/ jsxRuntime.jsx(jsxRuntime.Fragment, {});
|
|
53
|
+
}
|
|
54
|
+
return /*#__PURE__*/ jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
55
|
+
children: [
|
|
56
|
+
isSelectOnPage && /*#__PURE__*/ jsxRuntime.jsx("button", {
|
|
57
|
+
className: "gp-bg-[#F4F4F4] gp-px-2 gp-py-0.5 gp-rounded-lg gp-text-[#212121] gp-text-sm gp-font-medium gp-hidden interaction-use-element-btn",
|
|
58
|
+
onClick: closeSelectOnPage,
|
|
59
|
+
children: "Use element"
|
|
60
|
+
}),
|
|
61
|
+
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
62
|
+
className: "hidden gp-left-[-40px] gp-left-[-80px] gp-right-[-40px] gp-right-[-80px]"
|
|
63
|
+
}),
|
|
64
|
+
/*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
65
|
+
className: `gp-hidden gp-absolute interaction-suffix gp-gap-[8px] ${tag == 'Section' ? `gp-left-[-${positionOffset}px]` : `gp-right-[-${positionOffset}px]`}`,
|
|
66
|
+
children: [
|
|
67
|
+
isCurrentInteractionTrigger && /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
68
|
+
className: `gp-h-8 gp-rounded-[8px] gp-w-8 gp-bg-[#212121] gp-flex gp-justify-center gp-items-center `,
|
|
69
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("svg", {
|
|
70
|
+
width: "16",
|
|
71
|
+
height: "16",
|
|
72
|
+
viewBox: "0 0 16 16",
|
|
73
|
+
fill: "none",
|
|
74
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
75
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
76
|
+
fillRule: "evenodd",
|
|
77
|
+
clipRule: "evenodd",
|
|
78
|
+
d: "M12.9196 5.80449C13.0989 5.80449 13.1876 6.02216 13.0595 6.14749L4.83569 14.1892C4.69517 14.3267 4.46149 14.2002 4.49967 14.0074L5.50422 8.93537C5.53483 8.7808 5.41656 8.6368 5.25898 8.6368H3.08019C2.92551 8.6368 2.82938 8.46874 2.90779 8.33541L6.72099 1.85154C6.75692 1.79045 6.8225 1.75293 6.89338 1.75293H12.5729C12.7386 1.75293 12.8324 1.94273 12.7319 2.07435L10.1891 5.40272C10.0634 5.56724 10.1807 5.80449 10.3877 5.80449H12.9196Z",
|
|
79
|
+
fill: "#F9F9F9"
|
|
80
|
+
})
|
|
81
|
+
})
|
|
82
|
+
}),
|
|
83
|
+
isCurrentInteractionTarget && /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
84
|
+
className: `gp-h-8 min-w-8 gp-rounded-[8px] gp-w-8 gp-bg-[#212121] gp-flex gp-justify-center gp-items-center`,
|
|
85
|
+
children: /*#__PURE__*/ jsxRuntime.jsxs("svg", {
|
|
86
|
+
width: "16",
|
|
87
|
+
height: "16",
|
|
88
|
+
viewBox: "0 0 16 16",
|
|
89
|
+
fill: "none",
|
|
90
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
91
|
+
children: [
|
|
92
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
93
|
+
d: "M8.58987 2.11238C8.62815 2.66333 8.21254 3.141 7.66158 3.17928C6.73192 3.24386 5.84034 3.57396 5.09276 4.13034C4.34519 4.68673 3.77304 5.44602 3.44429 6.31801C3.11554 7.19 3.04401 8.13803 3.23821 9.04947C3.4324 9.96092 3.88415 10.7975 4.53978 11.4597C5.19541 12.122 6.02737 12.5821 6.93682 12.7854C7.84626 12.9888 8.79496 12.9268 9.67021 12.6068C10.5455 12.2869 11.3105 11.7224 11.8743 10.9804C12.4382 10.2385 12.7772 9.35025 12.8512 8.42129C12.895 7.87074 13.3768 7.45996 13.9273 7.50377C14.4779 7.54758 14.8887 8.0294 14.8449 8.57994C14.7406 9.8906 14.2622 11.1438 13.4667 12.1906C12.6711 13.2374 11.5918 14.0338 10.3569 14.4852C9.12204 14.9367 7.78353 15.0241 6.50041 14.7373C5.2173 14.4504 4.0435 13.8012 3.11848 12.8668C2.19345 11.9324 1.55609 10.7522 1.28211 9.46624C1.00813 8.1803 1.10905 6.84274 1.57287 5.61247C2.03669 4.3822 2.84393 3.31093 3.89867 2.52593C4.95342 1.74093 6.21133 1.27521 7.52297 1.18409C8.07393 1.14581 8.5516 1.56142 8.58987 2.11238Z",
|
|
94
|
+
fill: "#F9F9F9"
|
|
95
|
+
}),
|
|
96
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
97
|
+
fillRule: "evenodd",
|
|
98
|
+
clipRule: "evenodd",
|
|
99
|
+
d: "M11.9757 1.25658C12.184 1.31428 12.3452 1.47958 12.3976 1.68929L12.7872 3.24774L14.3457 3.63736C14.5554 3.68978 14.7207 3.85096 14.7784 4.05928C14.8361 4.2676 14.7773 4.49085 14.6244 4.64371L12.7167 6.55141C12.5677 6.70044 12.3514 6.76035 12.1469 6.70924L10.5688 6.3147L8.42436 8.45912C8.19005 8.69344 7.81015 8.69344 7.57583 8.45912C7.34152 8.22481 7.34152 7.84491 7.57583 7.61059L9.72025 5.46617L9.32572 3.88804C9.2746 3.68357 9.33451 3.46728 9.48354 3.31825L11.3912 1.41054C11.5441 1.25769 11.7674 1.19888 11.9757 1.25658ZM10.8795 5.15545L12.1084 5.46267L13.0266 4.54451L12.1469 4.3246C11.9319 4.27086 11.7641 4.10301 11.7104 3.88804L11.4904 3.0084L10.5723 3.92656L10.8795 5.15545Z",
|
|
100
|
+
fill: "#F9F9F9"
|
|
101
|
+
}),
|
|
102
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
103
|
+
d: "M7.35783 6.45343C7.87208 6.25201 8.12568 5.67185 7.92426 5.15761C7.72284 4.64336 7.14268 4.38976 6.62844 4.59118C6.05705 4.81498 5.55049 5.17772 5.15453 5.64655C4.75858 6.11538 4.4857 6.67552 4.36055 7.27631C4.23539 7.87709 4.26189 8.49961 4.43764 9.08758C4.6134 9.67555 4.93289 10.2105 5.36727 10.6439C5.80165 11.0774 6.33722 11.3958 6.92556 11.5702C7.51391 11.7445 8.13643 11.7695 8.73683 11.6427C9.33723 11.5158 9.89652 11.2413 10.3641 10.8439C10.8318 10.4465 11.1929 9.93885 11.4151 9.36679C11.615 8.85196 11.3597 8.27254 10.8449 8.07262C10.3301 7.87269 9.75066 8.12797 9.55073 8.6428C9.44887 8.9051 9.28329 9.1378 9.06901 9.3199C8.85474 9.50199 8.59851 9.62774 8.32352 9.68582C8.04853 9.7439 7.76341 9.73249 7.49394 9.65262C7.22445 9.57274 6.97907 9.42691 6.78001 9.22825C6.58093 9.0296 6.43446 8.78439 6.35386 8.51478C6.27327 8.24517 6.26112 7.9597 6.31851 7.6842C6.37591 7.4087 6.50102 7.1519 6.68251 6.93702C6.86399 6.72214 7.0961 6.55595 7.35783 6.45343Z",
|
|
104
|
+
fill: "#F9F9F9"
|
|
105
|
+
})
|
|
106
|
+
]
|
|
107
|
+
})
|
|
108
|
+
})
|
|
109
|
+
]
|
|
110
|
+
})
|
|
111
|
+
]
|
|
112
|
+
});
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
exports.InteractionSuffix = InteractionSuffix;
|
|
@@ -39,7 +39,6 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
39
39
|
const item = builder[uid];
|
|
40
40
|
const Component = components[item?.tag];
|
|
41
41
|
if (!Component) {
|
|
42
|
-
console.log('Miss component: ', item);
|
|
43
42
|
return {
|
|
44
43
|
liquid: '',
|
|
45
44
|
extraFiles
|
|
@@ -76,6 +75,9 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
76
75
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
77
76
|
pageContext,
|
|
78
77
|
...passProps,
|
|
78
|
+
builderAttrs: {
|
|
79
|
+
...passProps.builderAttrs
|
|
80
|
+
},
|
|
79
81
|
rawChildren: item.childrens.map((id)=>{
|
|
80
82
|
return {
|
|
81
83
|
...builder[id],
|
|
@@ -111,11 +113,14 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
111
113
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
112
114
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
113
115
|
pageContext,
|
|
114
|
-
...passProps
|
|
116
|
+
...passProps,
|
|
117
|
+
builderAttrs: {
|
|
118
|
+
...passProps.builderAttrs
|
|
119
|
+
}
|
|
115
120
|
});
|
|
116
121
|
});
|
|
117
122
|
} else {
|
|
118
|
-
liquid = render.template`<div style="${!componentIconList.includes(item.tag) ? style : ''}" class="${item.uid} ${!item?.childrens?.length && item.tag === 'IconListItemHoz' ? 'hidden' : ''}">
|
|
123
|
+
liquid = render.template`<div gp-el-wrapper style="${!componentIconList.includes(item.tag) ? style : ''}" class="${item.uid} ${!item?.childrens?.length && item.tag === 'IconListItemHoz' ? 'hidden' : ''}">
|
|
119
124
|
${render.RenderIf(item?.childrens?.length, ()=>{
|
|
120
125
|
return Component({
|
|
121
126
|
builderProps: {
|
|
@@ -130,6 +135,9 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
130
135
|
},
|
|
131
136
|
pageContext,
|
|
132
137
|
...passProps,
|
|
138
|
+
builderAttrs: {
|
|
139
|
+
...passProps.builderAttrs
|
|
140
|
+
},
|
|
133
141
|
rawChildren: item.childrens.map((id)=>{
|
|
134
142
|
return {
|
|
135
143
|
...builder[id],
|
|
@@ -166,7 +174,10 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
166
174
|
pageContext,
|
|
167
175
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
168
176
|
style: componentIconList.includes(item.tag) ? style : null,
|
|
169
|
-
...passProps
|
|
177
|
+
...passProps,
|
|
178
|
+
builderAttrs: {
|
|
179
|
+
...passProps.builderAttrs
|
|
180
|
+
}
|
|
170
181
|
});
|
|
171
182
|
})}
|
|
172
183
|
</div>`;
|
|
@@ -204,7 +215,7 @@ const RenderCustomCode = (item)=>{
|
|
|
204
215
|
};
|
|
205
216
|
const appendAnimation = (props, liquid)=>{
|
|
206
217
|
const { advanced, tag } = props;
|
|
207
|
-
const { animation, op: opacity } = advanced ?? {};
|
|
218
|
+
const { animation, op: opacity, hasAnimationInteraction, displayInitInteraction = true } = advanced ?? {};
|
|
208
219
|
const getAnimationType = (settings, type)=>{
|
|
209
220
|
return settings?.triggerConfig?.[type]?.animation ?? 'none';
|
|
210
221
|
};
|
|
@@ -218,7 +229,8 @@ const appendAnimation = (props, liquid)=>{
|
|
|
218
229
|
const hoverDesktop = getAnimationType(getSettingsByDevice('desktop'), 'hover');
|
|
219
230
|
const appearTablet = getAnimationType(getSettingsByDevice('tablet'), 'appear');
|
|
220
231
|
const appearMobile = getAnimationType(getSettingsByDevice('mobile'), 'appear');
|
|
221
|
-
const enableAnimation = animation?.desktop?.enabled && (appearDesktop !== 'none' || hoverDesktop !== 'none') || animation?.tablet?.enabled && appearTablet !== 'none' || animation?.mobile?.enabled && appearMobile !== 'none';
|
|
232
|
+
const enableAnimation = animation?.desktop?.enabled && (appearDesktop !== 'none' || hoverDesktop !== 'none') || animation?.tablet?.enabled && appearTablet !== 'none' || animation?.mobile?.enabled && appearMobile !== 'none' || !!hasAnimationInteraction;
|
|
233
|
+
const enableAnimationWhenInit = animation?.desktop?.enabled && (appearDesktop !== 'none' || hoverDesktop !== 'none') || animation?.tablet?.enabled && appearTablet !== 'none' || animation?.mobile?.enabled && appearMobile !== 'none';
|
|
222
234
|
if (!enableAnimation) return liquid;
|
|
223
235
|
const getInitVisibility = (device)=>getSettingsByDevice(device)?.enabled && ![
|
|
224
236
|
'shake',
|
|
@@ -231,10 +243,12 @@ const appendAnimation = (props, liquid)=>{
|
|
|
231
243
|
};
|
|
232
244
|
return render.template`
|
|
233
245
|
<gp-animation
|
|
246
|
+
display-init="${!displayInitInteraction ? 'hide' : 'show'}"
|
|
234
247
|
gp-data='${JSON.stringify({
|
|
235
248
|
config: animation,
|
|
236
249
|
tag,
|
|
237
|
-
opacity
|
|
250
|
+
opacity,
|
|
251
|
+
notEnableAnimationWhenInit: !enableAnimationWhenInit
|
|
238
252
|
})}'
|
|
239
253
|
style="${{
|
|
240
254
|
display: 'contents'
|
|
@@ -31,6 +31,31 @@ const createPageStoreProvider = (data)=>zustand.createStore((set)=>({
|
|
|
31
31
|
set({
|
|
32
32
|
publicStoreFrontData: publicStoreFrontData
|
|
33
33
|
});
|
|
34
|
+
},
|
|
35
|
+
setInteractionIsSelectOnPage: (value)=>{
|
|
36
|
+
set((state)=>({
|
|
37
|
+
interactionData: {
|
|
38
|
+
...state.interactionData,
|
|
39
|
+
isSelectOnPage: value
|
|
40
|
+
}
|
|
41
|
+
}));
|
|
42
|
+
},
|
|
43
|
+
setInteractionItem: (item)=>{
|
|
44
|
+
set((state)=>({
|
|
45
|
+
interactionData: {
|
|
46
|
+
...state.interactionData,
|
|
47
|
+
item,
|
|
48
|
+
isSelectOnPage: state.interactionData?.isSelectOnPage || false
|
|
49
|
+
}
|
|
50
|
+
}));
|
|
51
|
+
},
|
|
52
|
+
setInteractionSelectType: (selectType)=>{
|
|
53
|
+
set((state)=>({
|
|
54
|
+
interactionData: {
|
|
55
|
+
...state.interactionData,
|
|
56
|
+
selectType
|
|
57
|
+
}
|
|
58
|
+
}));
|
|
34
59
|
}
|
|
35
60
|
}));
|
|
36
61
|
const PageProvider = ({ children, dynamicProduct, dynamicCollection, productOffers, publicStoreFrontData, ...passProps })=>{
|
|
@@ -38,7 +63,10 @@ const PageProvider = ({ children, dynamicProduct, dynamicCollection, productOffe
|
|
|
38
63
|
dynamicProduct,
|
|
39
64
|
dynamicCollection,
|
|
40
65
|
productOffers,
|
|
41
|
-
publicStoreFrontData
|
|
66
|
+
publicStoreFrontData,
|
|
67
|
+
interactionData: {
|
|
68
|
+
selectType: 'element'
|
|
69
|
+
}
|
|
42
70
|
}), [
|
|
43
71
|
dynamicProduct,
|
|
44
72
|
dynamicCollection,
|
|
@@ -28,6 +28,10 @@
|
|
|
28
28
|
themePageCustomFonts {
|
|
29
29
|
...CustomFontSelect
|
|
30
30
|
}
|
|
31
|
+
interaction {
|
|
32
|
+
id
|
|
33
|
+
value
|
|
34
|
+
}
|
|
31
35
|
}
|
|
32
36
|
`;
|
|
33
37
|
const PreviewThemePageSelect = `
|
|
@@ -55,6 +59,10 @@ const PreviewThemePageSelect = `
|
|
|
55
59
|
themePageCustomCode {
|
|
56
60
|
...CustomCodeSelect
|
|
57
61
|
}
|
|
62
|
+
interaction {
|
|
63
|
+
id
|
|
64
|
+
value
|
|
65
|
+
}
|
|
58
66
|
}
|
|
59
67
|
`;
|
|
60
68
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/* eslint-disable */ const ShopLibraryPageDocument = `
|
|
4
|
+
query ShopLibraryPage($shopLibraryPageId: ID!) {
|
|
5
|
+
shopLibraryPage(id: $shopLibraryPageId) {
|
|
6
|
+
id
|
|
7
|
+
name
|
|
8
|
+
sectionPosition
|
|
9
|
+
shopLibrarySections {
|
|
10
|
+
id
|
|
11
|
+
component
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
`;
|
|
16
|
+
|
|
17
|
+
exports.ShopLibraryPageDocument = ShopLibraryPageDocument;
|