@gem-sdk/pages 1.41.0-dev.21 → 1.41.0-dev.22
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/Footer.js +153 -0
- package/dist/cjs/components/{Header.js → builder/Header.js} +46 -37
- package/dist/cjs/components/builder/SwitchView.js +181 -0
- package/dist/cjs/components/builder/const.js +56 -0
- package/dist/cjs/pages/builder.js +2 -2
- package/dist/cjs/pages/static-v2.js +1 -1
- package/dist/esm/components/builder/Footer.js +149 -0
- package/dist/esm/components/{Header.js → builder/Header.js} +46 -37
- package/dist/esm/components/builder/SwitchView.js +177 -0
- package/dist/esm/components/builder/const.js +54 -0
- package/dist/esm/pages/builder.js +2 -2
- package/dist/esm/pages/static-v2.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/components/Footer.js +0 -150
- package/dist/esm/components/Footer.js +0 -146
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import { useShopStore, cls, makeStyleResponsive } from '@gem-sdk/core';
|
|
3
|
+
import { useState, useEffect } from 'react';
|
|
4
|
+
|
|
5
|
+
const defaultMargin = {
|
|
6
|
+
desktop: '16px',
|
|
7
|
+
tablet: '16px',
|
|
8
|
+
mobile: '16px'
|
|
9
|
+
};
|
|
10
|
+
const FOOTER_ON_COLOR = '#E2E2E2';
|
|
11
|
+
const FOOTER_OFF_COLOR = '#F4F4F4';
|
|
12
|
+
const Footer = (props)=>{
|
|
13
|
+
const { pageType, isOriginTemplate } = props;
|
|
14
|
+
const urlParams = new URLSearchParams(window.location.search);
|
|
15
|
+
const shopName = urlParams.get('storefrontHandle');
|
|
16
|
+
const layoutSetting = useShopStore((s)=>s.layoutSettings);
|
|
17
|
+
const activeFooter = layoutSetting?.showFooter || isOriginTemplate;
|
|
18
|
+
const footerColor = activeFooter ? FOOTER_ON_COLOR : FOOTER_OFF_COLOR;
|
|
19
|
+
const [shouldFixed, setShouldFixed] = useState(false);
|
|
20
|
+
useEffect(()=>{
|
|
21
|
+
const $iframe = parent.document.querySelector('.iframe');
|
|
22
|
+
if (!$iframe) return;
|
|
23
|
+
const $storefront = document.querySelector('#storefront');
|
|
24
|
+
if (!$storefront) return;
|
|
25
|
+
const headerHeight = 40;
|
|
26
|
+
const footerHeight = 48;
|
|
27
|
+
const iframeHeight = $iframe.clientHeight;
|
|
28
|
+
const comparedHeight = layoutSetting?.showHeader ? iframeHeight - headerHeight - footerHeight : iframeHeight - footerHeight;
|
|
29
|
+
const observer = new ResizeObserver((entries)=>{
|
|
30
|
+
// Handle set fixed footer
|
|
31
|
+
const currentEditingFrameHeight = entries[0]?.target.clientHeight;
|
|
32
|
+
if (currentEditingFrameHeight && comparedHeight) setShouldFixed(currentEditingFrameHeight < comparedHeight);
|
|
33
|
+
});
|
|
34
|
+
observer.observe($storefront);
|
|
35
|
+
return ()=>{
|
|
36
|
+
observer.unobserve($storefront);
|
|
37
|
+
};
|
|
38
|
+
}, [
|
|
39
|
+
layoutSetting
|
|
40
|
+
]);
|
|
41
|
+
return /*#__PURE__*/ jsx(Fragment, {
|
|
42
|
+
children: pageType === 'POST_PURCHASE' ? /*#__PURE__*/ jsx("div", {
|
|
43
|
+
className: cls('gp-footer-container gp-border-1 gp-group gp-flex gp-justify-center gp-border-y gp-border-[#EEEEEE] gp-bg-white gp-font-sans'),
|
|
44
|
+
children: /*#__PURE__*/ jsx("div", {
|
|
45
|
+
className: "gp-flex gp-flex-1 gp-items-center gp-justify-between gp-py-6",
|
|
46
|
+
style: {
|
|
47
|
+
maxWidth: `var(--g-ct-w, 1200px)`,
|
|
48
|
+
...makeStyleResponsive('ml', defaultMargin),
|
|
49
|
+
...makeStyleResponsive('mr', defaultMargin)
|
|
50
|
+
},
|
|
51
|
+
children: /*#__PURE__*/ jsxs("p", {
|
|
52
|
+
className: "gp-text-lg",
|
|
53
|
+
children: [
|
|
54
|
+
"All rights reserved ",
|
|
55
|
+
shopName
|
|
56
|
+
]
|
|
57
|
+
})
|
|
58
|
+
})
|
|
59
|
+
}) : /*#__PURE__*/ jsx("div", {
|
|
60
|
+
className: cls('gp-footer-container gp-border-1 gp-group gp-flex gp-justify-center gp-border-y gp-border-[#EEEEEE] gp-bg-white gp-font-sans', {
|
|
61
|
+
'gp-fixed gp-bottom-0 gp-w-full': shouldFixed
|
|
62
|
+
}),
|
|
63
|
+
children: /*#__PURE__*/ jsxs("div", {
|
|
64
|
+
className: "gp-flex gp-h-[40px] gp-flex-1 gp-items-center gp-justify-between",
|
|
65
|
+
style: {
|
|
66
|
+
maxWidth: `var(--g-ct-w)`,
|
|
67
|
+
...makeStyleResponsive('ml', defaultMargin),
|
|
68
|
+
...makeStyleResponsive('mr', defaultMargin)
|
|
69
|
+
},
|
|
70
|
+
children: [
|
|
71
|
+
/*#__PURE__*/ jsxs("svg", {
|
|
72
|
+
width: "68",
|
|
73
|
+
height: "8",
|
|
74
|
+
viewBox: "0 0 68 8",
|
|
75
|
+
fill: "none",
|
|
76
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
77
|
+
children: [
|
|
78
|
+
/*#__PURE__*/ jsx("path", {
|
|
79
|
+
d: "M0 4C0 1.79086 1.79086 0 4 0H28C30.2091 0 32 1.79086 32 4C32 6.20914 30.2091 8 28 8H4C1.79086 8 0 6.20914 0 4Z",
|
|
80
|
+
fill: footerColor
|
|
81
|
+
}),
|
|
82
|
+
/*#__PURE__*/ jsx("path", {
|
|
83
|
+
d: "M36 4C36 1.79086 37.7909 0 40 0H64C66.2091 0 68 1.79086 68 4C68 6.20914 66.2091 8 64 8H40C37.7909 8 36 6.20914 36 4Z",
|
|
84
|
+
fill: footerColor
|
|
85
|
+
})
|
|
86
|
+
]
|
|
87
|
+
}),
|
|
88
|
+
!isOriginTemplate && /*#__PURE__*/ jsx("div", {
|
|
89
|
+
className: "gp-footer gp-invisible gp-absolute gp-left-[8px] gp-flex gp-h-[24px]gp-cursor-pointer gp-items-center gp-justify-center gp-rounded gp-bg-[#EEEEEE] gp-p-[4px] hover:gp-bg-[#f4f4f4] group-hover:gp-visible",
|
|
90
|
+
children: /*#__PURE__*/ jsxs("div", {
|
|
91
|
+
className: "gp-gap-2 gp-flex gp-px-1 gp-h-[24px] gp-items-center gp-justify-center gp-leading-5 gp-text-xs gp-font-medium gp-text-[#212121]",
|
|
92
|
+
children: [
|
|
93
|
+
/*#__PURE__*/ jsx("span", {
|
|
94
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
95
|
+
width: "14",
|
|
96
|
+
height: "14",
|
|
97
|
+
viewBox: "0 0 14 14",
|
|
98
|
+
fill: "none",
|
|
99
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
100
|
+
children: [
|
|
101
|
+
/*#__PURE__*/ jsx("path", {
|
|
102
|
+
fillRule: "evenodd",
|
|
103
|
+
clipRule: "evenodd",
|
|
104
|
+
d: "M6.99985 4.08501C5.38983 4.08501 4.08465 5.39019 4.08465 7.00021C4.08465 8.61023 5.38983 9.9154 6.99985 9.9154C8.60987 9.9154 9.91504 8.61023 9.91504 7.00021C9.91504 5.39019 8.60987 4.08501 6.99985 4.08501ZM5.08465 7.00021C5.08465 5.94247 5.94211 5.08501 6.99985 5.08501C8.05758 5.08501 8.91504 5.94247 8.91504 7.00021C8.91504 8.05794 8.05758 8.9154 6.99985 8.9154C5.94211 8.9154 5.08465 8.05794 5.08465 7.00021Z",
|
|
105
|
+
fill: "#212121"
|
|
106
|
+
}),
|
|
107
|
+
/*#__PURE__*/ jsx("path", {
|
|
108
|
+
fillRule: "evenodd",
|
|
109
|
+
clipRule: "evenodd",
|
|
110
|
+
d: "M5.52351 0.00390625C5.28138 0.00390625 5.07405 0.177388 5.03135 0.415715L4.7415 2.03321C4.40346 2.18248 4.08346 2.36419 3.78558 2.57432L2.18557 2.00147C1.95684 1.91958 1.70235 2.01395 1.58232 2.22517L0.122204 4.79451C0.00217064 5.00572 0.0513362 5.27266 0.238747 5.42725L1.50086 6.46836C1.48358 6.64355 1.47474 6.82106 1.47474 7.00047C1.47474 7.17981 1.48357 7.35726 1.50084 7.53238L0.238747 8.57347C0.0513362 8.72806 0.00217064 8.995 0.122203 9.20622L1.58232 11.7756C1.70235 11.9868 1.95684 12.0811 2.18557 11.9993L3.78537 11.4265C4.08332 11.6367 4.40341 11.8185 4.74155 11.9678L5.03135 13.585C5.07405 13.8233 5.28138 13.9968 5.52351 13.9968H8.47647C8.7186 13.9968 8.92593 13.8233 8.96863 13.585L9.25846 11.9676C9.5965 11.8183 9.91649 11.6365 10.2144 11.4264L11.8144 11.9993C12.0431 12.0811 12.2976 11.9868 12.4177 11.7756L13.8778 9.20622C13.9978 8.995 13.9486 8.72806 13.7612 8.57347L12.4988 7.5321C12.516 7.35706 12.5249 7.17971 12.5249 7.00047C12.5249 6.82116 12.516 6.64375 12.4988 6.46864L13.7612 5.42725C13.9486 5.27266 13.9978 5.00572 13.8778 4.79451L12.4177 2.22517C12.2976 2.01395 12.0431 1.91958 11.8144 2.00147L10.2141 2.57441C9.91636 2.36433 9.59645 2.18264 9.25851 2.0334L8.96863 0.415715C8.92593 0.177389 8.7186 0.00390625 8.47647 0.00390625H5.52351ZM5.67747 2.47943L5.94187 1.00391H8.0581L8.32253 2.47958C8.35348 2.6523 8.47271 2.79616 8.63668 2.85863C9.06768 3.02283 9.46674 3.25007 9.82215 3.5288C9.95734 3.63483 10.1375 3.66402 10.2993 3.6061L11.7559 3.08459L12.8007 4.92323L11.6503 5.8722C11.5145 5.98427 11.4476 6.15956 11.4743 6.33366C11.5076 6.55089 11.5249 6.77354 11.5249 7.00047C11.5249 7.22735 11.5076 7.44993 11.4743 7.66711C11.4476 7.8412 11.5145 8.01648 11.6504 8.12855L12.8007 9.07749L11.7559 10.9161L10.2994 10.3947C10.1377 10.3368 9.95752 10.366 9.82233 10.472C9.46686 10.7508 9.06773 10.9781 8.63664 11.1423C8.47267 11.2048 8.35344 11.3487 8.32249 11.5214L8.0581 12.9968H5.94187L5.67752 11.5215C5.64656 11.3488 5.52732 11.2049 5.36333 11.1425C4.93215 10.9782 4.53292 10.7509 4.17738 10.4721C4.04219 10.3661 3.86203 10.3369 3.70027 10.3948L2.24412 10.9161L1.19924 9.07749L2.34929 8.12883C2.48516 8.01675 2.55204 7.84146 2.52535 7.66736C2.49205 7.4501 2.47474 7.22743 2.47474 7.00047C2.47474 6.77345 2.49206 6.55072 2.52538 6.33341C2.55207 6.15931 2.48519 5.984 2.34932 5.87192L1.19924 4.92323L2.24412 3.08459L3.70047 3.60601C3.86221 3.66392 4.04236 3.63474 4.17755 3.52872C4.53304 3.24994 4.93219 3.02269 5.36329 2.85849C5.52728 2.79603 5.64652 2.65216 5.67747 2.47943Z",
|
|
111
|
+
fill: "#212121"
|
|
112
|
+
})
|
|
113
|
+
]
|
|
114
|
+
})
|
|
115
|
+
}),
|
|
116
|
+
/*#__PURE__*/ jsx("span", {
|
|
117
|
+
children: "Footer"
|
|
118
|
+
})
|
|
119
|
+
]
|
|
120
|
+
})
|
|
121
|
+
}),
|
|
122
|
+
/*#__PURE__*/ jsxs("svg", {
|
|
123
|
+
width: "104",
|
|
124
|
+
height: "8",
|
|
125
|
+
viewBox: "0 0 104 8",
|
|
126
|
+
fill: "none",
|
|
127
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
128
|
+
children: [
|
|
129
|
+
/*#__PURE__*/ jsx("path", {
|
|
130
|
+
d: "M0 4C0 1.79086 1.79086 0 4 0H28C30.2091 0 32 1.79086 32 4C32 6.20914 30.2091 8 28 8H4C1.79086 8 0 6.20914 0 4Z",
|
|
131
|
+
fill: footerColor
|
|
132
|
+
}),
|
|
133
|
+
/*#__PURE__*/ jsx("path", {
|
|
134
|
+
d: "M36 4C36 1.79086 37.7909 0 40 0H64C66.2091 0 68 1.79086 68 4C68 6.20914 66.2091 8 64 8H40C37.7909 8 36 6.20914 36 4Z",
|
|
135
|
+
fill: footerColor
|
|
136
|
+
}),
|
|
137
|
+
/*#__PURE__*/ jsx("path", {
|
|
138
|
+
d: "M72 4C72 1.79086 73.7909 0 76 0H100C102.209 0 104 1.79086 104 4C104 6.20914 102.209 8 100 8H76C73.7909 8 72 6.20914 72 4Z",
|
|
139
|
+
fill: footerColor
|
|
140
|
+
})
|
|
141
|
+
]
|
|
142
|
+
})
|
|
143
|
+
]
|
|
144
|
+
})
|
|
145
|
+
})
|
|
146
|
+
});
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
export { Footer as default };
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
2
|
import { useShopStore, cls, makeStyleResponsive } from '@gem-sdk/core';
|
|
3
|
+
import Devices from './SwitchView.js';
|
|
3
4
|
|
|
4
5
|
const defaultMargin = {
|
|
5
|
-
desktop: '
|
|
6
|
-
tablet: '
|
|
7
|
-
mobile: '
|
|
6
|
+
desktop: '16px',
|
|
7
|
+
tablet: '16px',
|
|
8
|
+
mobile: '16px'
|
|
8
9
|
};
|
|
9
|
-
const HEADER_ON_COLOR = '#
|
|
10
|
+
const HEADER_ON_COLOR = '#E2E2E2';
|
|
10
11
|
const HEADER_OFF_COLOR = '#F4F4F4';
|
|
11
12
|
const sizeCheck = {
|
|
12
13
|
desktop: '24px',
|
|
@@ -96,66 +97,74 @@ const Header = (props)=>{
|
|
|
96
97
|
},
|
|
97
98
|
children: [
|
|
98
99
|
/*#__PURE__*/ jsxs("svg", {
|
|
99
|
-
width: "
|
|
100
|
+
width: "60",
|
|
100
101
|
height: "8",
|
|
101
|
-
viewBox: "0 0
|
|
102
|
+
viewBox: "0 0 60 8",
|
|
102
103
|
fill: "none",
|
|
103
104
|
xmlns: "http://www.w3.org/2000/svg",
|
|
104
105
|
children: [
|
|
105
106
|
/*#__PURE__*/ jsx("path", {
|
|
106
|
-
d: "M0 4C0 1.79086 1.79086 0 4
|
|
107
|
-
fill:
|
|
107
|
+
d: "M0 4C0 1.79086 1.79086 0 4 0H20C22.2091 0 24 1.79086 24 4C24 6.20914 22.2091 8 20 8H4C1.79086 8 0 6.20914 0 4Z",
|
|
108
|
+
fill: "#9E9E9E"
|
|
108
109
|
}),
|
|
109
110
|
/*#__PURE__*/ jsx("path", {
|
|
110
|
-
d: "M28 4C28 1.79086 29.7909 0 32
|
|
111
|
+
d: "M28 4C28 1.79086 29.7909 0 32 0H56C58.2091 0 60 1.79086 60 4C60 6.20914 58.2091 8 56 8H32C29.7909 8 28 6.20914 28 4Z",
|
|
111
112
|
fill: headerColor
|
|
112
113
|
})
|
|
113
114
|
]
|
|
114
115
|
}),
|
|
116
|
+
/*#__PURE__*/ jsx(Devices, {}),
|
|
115
117
|
!isOriginTemplate && /*#__PURE__*/ jsx("div", {
|
|
116
|
-
className: "gp-header gp-invisible gp-absolute gp-left-[8px] gp-flex gp-h-[24px] gp-
|
|
117
|
-
children: /*#__PURE__*/
|
|
118
|
-
className: "gp-flex gp-
|
|
119
|
-
children:
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
118
|
+
className: "gp-header gp-invisible gp-absolute gp-left-[8px] gp-flex gp-h-[24px] gp-cursor-pointer gp-items-center gp-justify-center gp-rounded gp-bg-[#EEEEEE] gp-p-[4px] hover:gp-bg-[#f4f4f4] group-hover:gp-visible",
|
|
119
|
+
children: /*#__PURE__*/ jsxs("div", {
|
|
120
|
+
className: "gp-gap-2 gp-flex gp-px-1 gp-h-[24px] gp-items-center gp-justify-center gp-leading-5 gp-text-xs gp-font-medium gp-text-[#212121]",
|
|
121
|
+
children: [
|
|
122
|
+
/*#__PURE__*/ jsx("span", {
|
|
123
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
124
|
+
width: "14",
|
|
125
|
+
height: "14",
|
|
126
|
+
viewBox: "0 0 14 14",
|
|
127
|
+
fill: "none",
|
|
128
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
129
|
+
children: [
|
|
130
|
+
/*#__PURE__*/ jsx("path", {
|
|
131
|
+
fillRule: "evenodd",
|
|
132
|
+
clipRule: "evenodd",
|
|
133
|
+
d: "M6.99985 4.08501C5.38983 4.08501 4.08465 5.39019 4.08465 7.00021C4.08465 8.61023 5.38983 9.9154 6.99985 9.9154C8.60987 9.9154 9.91504 8.61023 9.91504 7.00021C9.91504 5.39019 8.60987 4.08501 6.99985 4.08501ZM5.08465 7.00021C5.08465 5.94247 5.94211 5.08501 6.99985 5.08501C8.05758 5.08501 8.91504 5.94247 8.91504 7.00021C8.91504 8.05794 8.05758 8.9154 6.99985 8.9154C5.94211 8.9154 5.08465 8.05794 5.08465 7.00021Z",
|
|
134
|
+
fill: "#212121"
|
|
135
|
+
}),
|
|
136
|
+
/*#__PURE__*/ jsx("path", {
|
|
137
|
+
fillRule: "evenodd",
|
|
138
|
+
clipRule: "evenodd",
|
|
139
|
+
d: "M5.52351 0.00390625C5.28138 0.00390625 5.07405 0.177388 5.03135 0.415715L4.7415 2.03321C4.40346 2.18248 4.08346 2.36419 3.78558 2.57432L2.18557 2.00147C1.95684 1.91958 1.70235 2.01395 1.58232 2.22517L0.122204 4.79451C0.00217064 5.00572 0.0513362 5.27266 0.238747 5.42725L1.50086 6.46836C1.48358 6.64355 1.47474 6.82106 1.47474 7.00047C1.47474 7.17981 1.48357 7.35726 1.50084 7.53238L0.238747 8.57347C0.0513362 8.72806 0.00217064 8.995 0.122203 9.20622L1.58232 11.7756C1.70235 11.9868 1.95684 12.0811 2.18557 11.9993L3.78537 11.4265C4.08332 11.6367 4.40341 11.8185 4.74155 11.9678L5.03135 13.585C5.07405 13.8233 5.28138 13.9968 5.52351 13.9968H8.47647C8.7186 13.9968 8.92593 13.8233 8.96863 13.585L9.25846 11.9676C9.5965 11.8183 9.91649 11.6365 10.2144 11.4264L11.8144 11.9993C12.0431 12.0811 12.2976 11.9868 12.4177 11.7756L13.8778 9.20622C13.9978 8.995 13.9486 8.72806 13.7612 8.57347L12.4988 7.5321C12.516 7.35706 12.5249 7.17971 12.5249 7.00047C12.5249 6.82116 12.516 6.64375 12.4988 6.46864L13.7612 5.42725C13.9486 5.27266 13.9978 5.00572 13.8778 4.79451L12.4177 2.22517C12.2976 2.01395 12.0431 1.91958 11.8144 2.00147L10.2141 2.57441C9.91636 2.36433 9.59645 2.18264 9.25851 2.0334L8.96863 0.415715C8.92593 0.177389 8.7186 0.00390625 8.47647 0.00390625H5.52351ZM5.67747 2.47943L5.94187 1.00391H8.0581L8.32253 2.47958C8.35348 2.6523 8.47271 2.79616 8.63668 2.85863C9.06768 3.02283 9.46674 3.25007 9.82215 3.5288C9.95734 3.63483 10.1375 3.66402 10.2993 3.6061L11.7559 3.08459L12.8007 4.92323L11.6503 5.8722C11.5145 5.98427 11.4476 6.15956 11.4743 6.33366C11.5076 6.55089 11.5249 6.77354 11.5249 7.00047C11.5249 7.22735 11.5076 7.44993 11.4743 7.66711C11.4476 7.8412 11.5145 8.01648 11.6504 8.12855L12.8007 9.07749L11.7559 10.9161L10.2994 10.3947C10.1377 10.3368 9.95752 10.366 9.82233 10.472C9.46686 10.7508 9.06773 10.9781 8.63664 11.1423C8.47267 11.2048 8.35344 11.3487 8.32249 11.5214L8.0581 12.9968H5.94187L5.67752 11.5215C5.64656 11.3488 5.52732 11.2049 5.36333 11.1425C4.93215 10.9782 4.53292 10.7509 4.17738 10.4721C4.04219 10.3661 3.86203 10.3369 3.70027 10.3948L2.24412 10.9161L1.19924 9.07749L2.34929 8.12883C2.48516 8.01675 2.55204 7.84146 2.52535 7.66736C2.49205 7.4501 2.47474 7.22743 2.47474 7.00047C2.47474 6.77345 2.49206 6.55072 2.52538 6.33341C2.55207 6.15931 2.48519 5.984 2.34932 5.87192L1.19924 4.92323L2.24412 3.08459L3.70047 3.60601C3.86221 3.66392 4.04236 3.63474 4.17755 3.52872C4.53304 3.24994 4.93219 3.02269 5.36329 2.85849C5.52728 2.79603 5.64652 2.65216 5.67747 2.47943Z",
|
|
140
|
+
fill: "#212121"
|
|
141
|
+
})
|
|
142
|
+
]
|
|
137
143
|
})
|
|
138
|
-
|
|
139
|
-
|
|
144
|
+
}),
|
|
145
|
+
/*#__PURE__*/ jsx("span", {
|
|
146
|
+
children: "Header"
|
|
147
|
+
})
|
|
148
|
+
]
|
|
140
149
|
})
|
|
141
150
|
}),
|
|
142
151
|
/*#__PURE__*/ jsxs("svg", {
|
|
143
|
-
width: "
|
|
152
|
+
width: "80",
|
|
144
153
|
height: "8",
|
|
145
|
-
viewBox: "0 0
|
|
154
|
+
viewBox: "0 0 80 8",
|
|
146
155
|
fill: "none",
|
|
147
156
|
xmlns: "http://www.w3.org/2000/svg",
|
|
148
157
|
children: [
|
|
149
158
|
/*#__PURE__*/ jsx("path", {
|
|
150
|
-
d: "M0 4C0 1.79086 1.79086 0 4
|
|
159
|
+
d: "M0 4C0 1.79086 1.79086 0 4 0H20C22.2091 0 24 1.79086 24 4C24 6.20914 22.2091 8 20 8H4C1.79086 8 0 6.20914 0 4Z",
|
|
151
160
|
fill: headerColor
|
|
152
161
|
}),
|
|
153
162
|
/*#__PURE__*/ jsx("path", {
|
|
154
|
-
d: "
|
|
163
|
+
d: "M28 4C28 1.79086 29.7909 0 32 0H48C50.2091 0 52 1.79086 52 4C52 6.20914 50.2091 8 48 8H32C29.7909 8 28 6.20914 28 4Z",
|
|
155
164
|
fill: headerColor
|
|
156
165
|
}),
|
|
157
166
|
/*#__PURE__*/ jsx("path", {
|
|
158
|
-
d: "
|
|
167
|
+
d: "M56 4C56 1.79086 57.7909 0 60 0H76C78.2091 0 80 1.79086 80 4C80 6.20914 78.2091 8 76 8H60C57.7909 8 56 6.20914 56 4Z",
|
|
159
168
|
fill: headerColor
|
|
160
169
|
})
|
|
161
170
|
]
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import { useState, useCallback, useEffect, useRef } from 'react';
|
|
3
|
+
import { devices } from './const.js';
|
|
4
|
+
|
|
5
|
+
const Devices = ()=>{
|
|
6
|
+
const [isOpen, setIsOpen] = useState(false);
|
|
7
|
+
const initialDeviceState = {
|
|
8
|
+
width: 0,
|
|
9
|
+
name: '',
|
|
10
|
+
activeId: null
|
|
11
|
+
};
|
|
12
|
+
const [deviceState, setDeviceState] = useState(initialDeviceState);
|
|
13
|
+
const updateDeviceState = useCallback((updates)=>{
|
|
14
|
+
setDeviceState((prevState)=>({
|
|
15
|
+
...prevState,
|
|
16
|
+
...updates
|
|
17
|
+
}));
|
|
18
|
+
}, [
|
|
19
|
+
setDeviceState
|
|
20
|
+
]);
|
|
21
|
+
useEffect(()=>{
|
|
22
|
+
if (!deviceState.name) {
|
|
23
|
+
const activeDevice = devices[0];
|
|
24
|
+
if (activeDevice) {
|
|
25
|
+
updateDeviceState({
|
|
26
|
+
width: activeDevice.width,
|
|
27
|
+
name: activeDevice.name,
|
|
28
|
+
activeId: activeDevice.id
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}, [
|
|
33
|
+
deviceState.name,
|
|
34
|
+
updateDeviceState
|
|
35
|
+
]);
|
|
36
|
+
const onHandleClick = (id)=>{
|
|
37
|
+
const activeDevice = devices.find((v)=>v.id === id);
|
|
38
|
+
if (activeDevice) {
|
|
39
|
+
updateDeviceState({
|
|
40
|
+
width: activeDevice.width,
|
|
41
|
+
name: activeDevice.name,
|
|
42
|
+
activeId: activeDevice.id
|
|
43
|
+
});
|
|
44
|
+
emitChangeDevice(activeDevice.id);
|
|
45
|
+
}
|
|
46
|
+
setIsOpen(!isOpen);
|
|
47
|
+
};
|
|
48
|
+
const emitChangeDevice = (id)=>{
|
|
49
|
+
const event = new CustomEvent('editor:change-device', {
|
|
50
|
+
bubbles: true,
|
|
51
|
+
detail: {
|
|
52
|
+
id
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
window.dispatchEvent(event);
|
|
56
|
+
};
|
|
57
|
+
const switchViewRef = useRef(null);
|
|
58
|
+
const onClickOutside = (event)=>{
|
|
59
|
+
if (switchViewRef.current && !switchViewRef.current.contains(event.target)) {
|
|
60
|
+
setIsOpen(false);
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
const getDisplayName = (width)=>{
|
|
64
|
+
const activeDevice = devices.find((v)=>v.width === width);
|
|
65
|
+
if (activeDevice) return activeDevice.name;
|
|
66
|
+
let displayName = 'Desktop';
|
|
67
|
+
if (width <= 480) return displayName = 'Mobile';
|
|
68
|
+
if (width <= 1025) return displayName = 'Tablet';
|
|
69
|
+
return displayName;
|
|
70
|
+
};
|
|
71
|
+
const onResizePreviewScreen = useCallback((e)=>{
|
|
72
|
+
const detail = e.detail;
|
|
73
|
+
if (!detail) return;
|
|
74
|
+
updateDeviceState({
|
|
75
|
+
width: detail.width,
|
|
76
|
+
name: getDisplayName(detail.width),
|
|
77
|
+
activeId: null
|
|
78
|
+
});
|
|
79
|
+
}, [
|
|
80
|
+
updateDeviceState
|
|
81
|
+
]);
|
|
82
|
+
useEffect(()=>{
|
|
83
|
+
window.addEventListener('mousedown', onClickOutside);
|
|
84
|
+
window.addEventListener('editor:resize-preview-screen', onResizePreviewScreen);
|
|
85
|
+
return ()=>{
|
|
86
|
+
window.removeEventListener('mousedown', onClickOutside);
|
|
87
|
+
window.removeEventListener('editor:resize-preview-screen', onResizePreviewScreen);
|
|
88
|
+
};
|
|
89
|
+
}, [
|
|
90
|
+
onResizePreviewScreen
|
|
91
|
+
]);
|
|
92
|
+
const isActiveDevice = (id)=>{
|
|
93
|
+
return id === deviceState.activeId;
|
|
94
|
+
};
|
|
95
|
+
const handleToggleDropdown = ()=>setIsOpen(!isOpen);
|
|
96
|
+
if (deviceState.width > 1024) return null;
|
|
97
|
+
return /*#__PURE__*/ jsx(Fragment, {
|
|
98
|
+
children: /*#__PURE__*/ jsxs("div", {
|
|
99
|
+
ref: switchViewRef,
|
|
100
|
+
className: `gp-switch-view gp-absolute gp-top-2 gp-transform -gp-translate-x-1/2 gp-left-1/2 gp-z-50 devices-selector gp-bg-[#F4F4F4] gp-gap-2 gp-rounded-md gp-px-2 gp-py-1 hover:gp-bg-[#E2E2E2] gp-items-center gp-justify-center gp-cursor-pointer gp-leading-5 gp-text-xs gp-font-medium gp-text-[#212121]
|
|
101
|
+
${isOpen ? 'gp-border-[1px] gp-border-[#3C67FF]' : ''}`,
|
|
102
|
+
children: [
|
|
103
|
+
/*#__PURE__*/ jsxs("div", {
|
|
104
|
+
className: "gp-flex gp-gap-1 gp-justify-between gp-items-center gp-min-w-[176px]",
|
|
105
|
+
onClick: (e)=>{
|
|
106
|
+
e.preventDefault();
|
|
107
|
+
handleToggleDropdown();
|
|
108
|
+
},
|
|
109
|
+
role: "presentation",
|
|
110
|
+
children: [
|
|
111
|
+
/*#__PURE__*/ jsxs("span", {
|
|
112
|
+
children: [
|
|
113
|
+
deviceState.name,
|
|
114
|
+
" (",
|
|
115
|
+
deviceState.width,
|
|
116
|
+
"px)"
|
|
117
|
+
]
|
|
118
|
+
}),
|
|
119
|
+
/*#__PURE__*/ jsx("span", {
|
|
120
|
+
children: /*#__PURE__*/ jsx("svg", {
|
|
121
|
+
width: "9",
|
|
122
|
+
height: "5",
|
|
123
|
+
viewBox: "0 0 9 5",
|
|
124
|
+
fill: "none",
|
|
125
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
126
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
127
|
+
fillRule: "evenodd",
|
|
128
|
+
clipRule: "evenodd",
|
|
129
|
+
d: "M1.07564 0.775834C1.30995 0.541519 1.68985 0.541519 1.92417 0.775834L4.6999 3.55157L7.47564 0.775834C7.70995 0.541519 8.08985 0.541519 8.32417 0.775834C8.55848 1.01015 8.55848 1.39005 8.32417 1.62436L5.12417 4.82436C4.88985 5.05868 4.50995 5.05868 4.27564 4.82436L1.07564 1.62436C0.841324 1.39005 0.841324 1.01015 1.07564 0.775834Z",
|
|
130
|
+
fill: "#212121"
|
|
131
|
+
})
|
|
132
|
+
})
|
|
133
|
+
})
|
|
134
|
+
]
|
|
135
|
+
}),
|
|
136
|
+
/*#__PURE__*/ jsx("div", {
|
|
137
|
+
className: `gp-absolute gp-top-8 gp-transform -gp-translate-x-1/2 gp-left-1/2 gp-bg-[#212121] gp-rounded-xl gp-p-2 gp-text-[#F9F9F9] gp-w-[176px] gp-z-50 ${!isOpen ? 'gp-hidden' : ''}`,
|
|
138
|
+
children: devices.map((device)=>/*#__PURE__*/ jsx("div", {
|
|
139
|
+
className: "gp-p-2 hover:gp-bg-[#3E3E3E] gp-rounded-md",
|
|
140
|
+
onClick: (e)=>{
|
|
141
|
+
e.preventDefault();
|
|
142
|
+
e.stopPropagation();
|
|
143
|
+
onHandleClick(device.id);
|
|
144
|
+
},
|
|
145
|
+
role: "presentation",
|
|
146
|
+
children: /*#__PURE__*/ jsxs("div", {
|
|
147
|
+
className: 'gp-flex gp-gap-2 gp-w-full gp-text-left gp-justify-space-between gp-cursor-pointer gp-leading-5 gp-text-xs gp-font-regular gp-text-[#212121]"',
|
|
148
|
+
children: [
|
|
149
|
+
/*#__PURE__*/ jsx("span", {
|
|
150
|
+
className: "gp-min-w-[16px]",
|
|
151
|
+
children: isActiveDevice(device.id) && /*#__PURE__*/ jsx("svg", {
|
|
152
|
+
width: "16",
|
|
153
|
+
height: "17",
|
|
154
|
+
viewBox: "0 0 16 17",
|
|
155
|
+
fill: "none",
|
|
156
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
157
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
158
|
+
fillRule: "evenodd",
|
|
159
|
+
clipRule: "evenodd",
|
|
160
|
+
d: "M12.6348 4.89265C12.792 5.07861 12.7878 5.37537 12.6255 5.55547L6.71176 12.118C6.55312 12.294 6.30118 12.294 6.14255 12.118L3.87448 9.60098C3.71219 9.42088 3.70805 9.12412 3.86523 8.93815C4.02241 8.75219 4.2814 8.74744 4.4437 8.92755L6.42716 11.1287L12.0563 4.88203C12.2186 4.70192 12.4776 4.70668 12.6348 4.89265Z",
|
|
161
|
+
fill: "#00C853"
|
|
162
|
+
})
|
|
163
|
+
})
|
|
164
|
+
}),
|
|
165
|
+
/*#__PURE__*/ jsx("span", {
|
|
166
|
+
children: device.name
|
|
167
|
+
})
|
|
168
|
+
]
|
|
169
|
+
})
|
|
170
|
+
}, device.id))
|
|
171
|
+
})
|
|
172
|
+
]
|
|
173
|
+
})
|
|
174
|
+
});
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
export { Devices as default };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
const devices = [
|
|
2
|
+
{
|
|
3
|
+
id: 'iphone-13-mini',
|
|
4
|
+
name: 'iPhone 13 Mini',
|
|
5
|
+
width: 375
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
id: 'iphone-13-pro',
|
|
9
|
+
name: 'iPhone 13 Pro',
|
|
10
|
+
width: 390
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
id: 'iphone-11-pro-max',
|
|
14
|
+
name: 'iPhone 11 Pro Max',
|
|
15
|
+
width: 414
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
id: 'iphone-15-pro-max',
|
|
19
|
+
name: 'iPhone 15 Pro Max',
|
|
20
|
+
width: 430
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
id: 'pixel-7',
|
|
24
|
+
name: 'Pixel 7',
|
|
25
|
+
width: 412
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
id: 'galaxy-s8-plus',
|
|
29
|
+
name: 'Galaxy S8+',
|
|
30
|
+
width: 360
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: 'galaxy-s20-ultra',
|
|
34
|
+
name: 'Galaxy S20 Ultra',
|
|
35
|
+
width: 412
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
id: 'ipad-mini',
|
|
39
|
+
name: 'iPad Mini',
|
|
40
|
+
width: 768
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
id: 'ipad-air',
|
|
44
|
+
name: 'iPad Air',
|
|
45
|
+
width: 820
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
id: 'ipad-pro',
|
|
49
|
+
name: 'iPad Pro',
|
|
50
|
+
width: 1024
|
|
51
|
+
}
|
|
52
|
+
];
|
|
53
|
+
|
|
54
|
+
export { devices };
|
|
@@ -4,8 +4,8 @@ import { NextSeo } from 'next-seo';
|
|
|
4
4
|
import Head from 'next/head';
|
|
5
5
|
import { useState, useMemo, useEffect } from 'react';
|
|
6
6
|
import Toolbox from '../components/builder/Toolbox.js';
|
|
7
|
-
import Header from '../components/Header.js';
|
|
8
|
-
import Footer from '../components/Footer.js';
|
|
7
|
+
import Header from '../components/builder/Header.js';
|
|
8
|
+
import Footer from '../components/builder/Footer.js';
|
|
9
9
|
import CollectionGlobalProvider from './CollectionGlobalProvider.js';
|
|
10
10
|
import PopupManager from '../components/builder/PopupManager.js';
|
|
11
11
|
import ImageToLayout from '../components/image-to-layout/ImageToLayout.js';
|
|
@@ -5,7 +5,7 @@ import Head from 'next/head';
|
|
|
5
5
|
import { useRouter } from 'next/router';
|
|
6
6
|
import { useTrackingView } from '../libs/hooks/use-tracking-view.js';
|
|
7
7
|
import { parseHtml } from '../libs/parse-html.js';
|
|
8
|
-
import Header from '../components/Header.js';
|
|
8
|
+
import Header from '../components/builder/Header.js';
|
|
9
9
|
import FooterForPostPurchase from '../components/FooterForPostPurchase.js';
|
|
10
10
|
|
|
11
11
|
const StaticPageV2 = ({ components, builderData, sectionData, seo, themeStyle, fontStyle, elementFontStyle, customCodeHeader, shopToken, pageHandle, customFonts, isPostPurchase, shopName, productOffers, publicStoreFrontData, isPreview })=>{
|