@billgangcom/theme-lib 1.69.6 → 1.69.8
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/App.d.ts +1 -0
- package/dist/builder/components/AddSections/utils/index.d.ts +5 -1
- package/dist/builder.cjs.js +23 -84
- package/dist/builder.es.js +6911 -12663
- package/dist/index-DXmDoy2B.cjs +141 -0
- package/dist/index-RnaHlebe.js +21740 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +8 -7
- package/dist/storefront/api/index.d.ts +1 -0
- package/dist/storefront/api/rewards.d.ts +2 -0
- package/dist/storefront/components/CheckoutPrices/index.d.ts +1 -0
- package/dist/storefront/components/ConnectDiscord/index.d.ts +2 -2
- package/dist/storefront/hooks/useCart.d.ts +2 -3
- package/dist/storefront/models/discord.d.ts +0 -4
- package/dist/storefront/models/index.d.ts +1 -0
- package/dist/storefront/store/useDiscordStore.d.ts +3 -3
- package/dist/ui.cjs.js +1 -1
- package/dist/ui.es.js +1256 -1216
- package/package.json +1 -1
- package/dist/index-CTXAJEri.cjs +0 -80
- package/dist/index-D0Va9_Ca.js +0 -15889
- /package/dist/{pages/rewards/model.d.ts → storefront/models/rewards.d.ts} +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./builder.cjs.js"),t=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./builder.cjs.js"),t=require("./index-DXmDoy2B.cjs");exports.App=e.App;exports.ColorVariables=e.ColorVariables;exports.createTicket=e.createTicket;exports.hotReload=e.hotReload;exports.iconNames=e.iconNames;exports.ReCaptchaProvider=t.ReCaptchaProvider;exports.aspectRatioOptions=t.aspectRatioOptions;exports.formatPrice=t.formatPrice;exports.splitTextIntoSpans=t.splitTextIntoSpans;exports.useReCaptcha=t.useReCaptcha;
|
package/dist/index.es.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import { App as o, ColorVariables as t,
|
|
2
|
-
import { a as
|
|
1
|
+
import { App as o, ColorVariables as t, createTicket as s, hotReload as r, iconNames as p } from "./builder.es.js";
|
|
2
|
+
import { R as c, a as R, f, s as l, u as m } from "./index-RnaHlebe.js";
|
|
3
3
|
export {
|
|
4
4
|
o as App,
|
|
5
5
|
t as ColorVariables,
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
c as ReCaptchaProvider,
|
|
7
|
+
R as aspectRatioOptions,
|
|
8
8
|
s as createTicket,
|
|
9
|
+
f as formatPrice,
|
|
9
10
|
r as hotReload,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
p as iconNames,
|
|
12
|
+
l as splitTextIntoSpans,
|
|
13
|
+
m as useReCaptcha
|
|
13
14
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
interface ConnectDiscordProps {
|
|
3
3
|
customerEmail: string;
|
|
4
4
|
}
|
|
5
|
-
export declare const ConnectDiscord: FC<ConnectDiscordProps>;
|
|
5
|
+
export declare const ConnectDiscord: React.FC<ConnectDiscordProps>;
|
|
6
6
|
export {};
|
|
@@ -156,8 +156,8 @@ export declare const getCommonCustomFields: (cartItems: PartOrder[], products: P
|
|
|
156
156
|
})[];
|
|
157
157
|
export declare const useCart: () => {
|
|
158
158
|
reset(): void;
|
|
159
|
-
addProducts: (newProducts: Product[]) =>
|
|
160
|
-
addProductToCart: (cartItem: PartOrder) =>
|
|
159
|
+
addProducts: (newProducts: Product[]) => void;
|
|
160
|
+
addProductToCart: (cartItem: PartOrder) => void;
|
|
161
161
|
removeProduct({ productId, productVariantId }: PartOrder): void;
|
|
162
162
|
getPossibleGateways(): {
|
|
163
163
|
availableGateways: string[];
|
|
@@ -181,6 +181,5 @@ export declare const useCart: () => {
|
|
|
181
181
|
pending: boolean;
|
|
182
182
|
applyCouponPending: boolean;
|
|
183
183
|
applyCoupon: (couponName: string) => Promise<ValidateCouponApiData | null>;
|
|
184
|
-
getPages: (path: string) => Promise<any>;
|
|
185
184
|
};
|
|
186
185
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DiscordUser } from '@storefront/models';
|
|
2
2
|
interface Options {
|
|
3
|
-
discordInfo:
|
|
4
|
-
setDiscordInfo: (discordInfo:
|
|
3
|
+
discordInfo: DiscordUser | null;
|
|
4
|
+
setDiscordInfo: (discordInfo: DiscordUser | null) => void;
|
|
5
5
|
}
|
|
6
6
|
export declare const useDiscordStore: import("zustand").UseBoundStore<import("zustand").StoreApi<Options>>;
|
|
7
7
|
export {};
|
package/dist/ui.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index-CTXAJEri.cjs"),m=require("react"),lt="_block_kh9z8_8",dt="_title_kh9z8_16",ut="_subtitle_kh9z8_23",xt="_alignmentContent_kh9z8_30",pt="_alignments_kh9z8_39",mt="_alignment_kh9z8_30",jt="_circle_kh9z8_64",ht="_paddings_kh9z8_71",gt="_padding_kh9z8_71",ft="_active_kh9z8_97",U={block:lt,title:dt,subtitle:ut,alignmentContent:xt,alignments:pt,alignment:mt,circle:jt,paddings:ht,padding:gt,active:ft},Et=["topLeft","top","topRight","left","center","right","bottomLeft","bottom","bottomRight"],_t=["left","top","right","bottom"],Rt=c=>{const{alignment:i,padding:o,setPadding:s,setAlignment:e,isAlignment:r=!0,isPadding:d=!0}=c;function u(a){switch(a){case"left":case"topLeft":case"bottomLeft":return"TextAlignLeft";case"right":case"topRight":case"bottomRight":return"TextAlignRight";case"center":case"top":case"bottom":return"TextAlignCenter";default:return"TextAlignCenter"}}function j(a){switch(a){case"left":return"AlignLeft";case"right":return"AlignRight";case"top":return"AlignTop";case"bottom":return"AlignBottom"}}const[h,C]=m.useState(null),[E,n]=m.useState(null);return t.jsxRuntimeExports.jsxs("div",{className:U.layout,children:[t.jsxRuntimeExports.jsx("h3",{className:U.title,children:"Layout (for Desktop version)"}),t.jsxRuntimeExports.jsxs("div",{className:U.alignmentContent,children:[r&&t.jsxRuntimeExports.jsxs("div",{className:U.block,children:[t.jsxRuntimeExports.jsx("h5",{className:U.subtitle,children:"Alignment"}),t.jsxRuntimeExports.jsx("div",{className:U.alignments,children:Et.map(a=>t.jsxRuntimeExports.jsxs("div",{onClick:()=>{e(a)},className:U.alignment,onMouseEnter:()=>{C(a)},onMouseLeave:()=>{C(null)},children:[a!==i&&h!==a&&t.jsxRuntimeExports.jsx("div",{className:U.circle}),a!==i&&h===a&&t.jsxRuntimeExports.jsx(t.Icon,{name:u(h),fill:"#c2c2c2",width:22,height:22}),a===i&&t.jsxRuntimeExports.jsx(t.Icon,{name:u(i),fill:"#FF3F19",width:22,height:22})]},a))})]}),d&&t.jsxRuntimeExports.jsxs("div",{className:U.block,children:[t.jsxRuntimeExports.jsx("h5",{className:U.subtitle,children:"Paddings"}),t.jsxRuntimeExports.jsx("div",{className:U.paddings,children:_t.map(a=>t.jsxRuntimeExports.jsxs("label",{className:t.clx(U.padding,{[U.active]:E===a}),onFocus:()=>{n(a)},onBlur:()=>{n(null)},children:[t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:j(a),width:20,height:20})}),t.jsxRuntimeExports.jsx(t.Input,{type:"number",value:String(o[a]),onChange:p=>s({...o,[a]:Math.min(Number(p),999)}),max:999,paddingless:!0,borderless:!0})]},a))})]})]})]})},vt="_title_82zux_1",yt="_subtitle_82zux_5",bt="_productsBlock_82zux_14",It="_top_82zux_26",St="_products_82zux_14",Nt="_product_82zux_14",Ct="_button_82zux_80",Pt="_disabled_82zux_91",kt="_buttons_82zux_118",wt="_addButton_82zux_157",$t="_deleteButton_82zux_179",V={title:vt,subtitle:yt,productsBlock:bt,top:It,products:St,product:Nt,button:Ct,disabled:Pt,buttons:kt,addButton:wt,deleteButton:$t};function Bt({id:c,children:i}){const{attributes:o,listeners:s,setNodeRef:e,transform:r,transition:d,isDragging:u}=t.useSortable({id:c}),j={transform:t.CSS.Transform.toString(r),transition:d};return t.jsxRuntimeExports.jsx("div",{ref:e,style:j,className:`${V.product} ${u?V.dragging:""}`,...o,...s,children:i})}const Mt=c=>{const{isActiveItems:i,setIsActiveItems:o,items:s,setItems:e,other:r,tags:d,title:u,subtitle:j,draggable:h=!1,withImage:C=!1,addable:E=!0,itemsOptions:n,hasRangeSelector:a=!1,rangeSelectorOptions:p,limit:B,autoScrollInterval:g,deletable:f,aspectRatio:R,setAspectRatio:P}=c,D=t.useSensors(t.useSensor(t.PointerSensor,{activationConstraint:{distance:5}})),O=x=>{const{active:I,over:S}=x;if(S&&I.id!==S.id){const y=s.findIndex(M=>M===I.id),k=s.findIndex(M=>M===S.id);if(y!==-1&&k!==-1){const M=[...s],[_]=M.splice(y,1);M.splice(k,0,_),e(M)}}};function v(x){if(C)return x?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${x[0]}/w=1000`,alt:"image",width:16,height:16}):t.jsxRuntimeExports.jsx(t.Icon,{name:"Image",width:16,height:16,fill:"#757575"})}const L=(x,I=!1)=>{const S=n.find(k=>k.id===x);if(!S)return;const y=t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[h&&t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"DotsSixVertical",hoverable:!0,width:20,height:20})}),t.jsxRuntimeExports.jsx(t.Select,{onChange:k=>{const M=[...s],_=n.find(l=>l.name===k);if(!_)return;const T=_.id,z=M.map(l=>l===x?T:l);e([...z])},value:S.name,options:n.filter(k=>!s.find(M=>M===k.id)).map(k=>k.name),leftAddonOptions:n.map(k=>({value:k.name,addon:v(k.images)}))}),I&&t.jsxRuntimeExports.jsx("div",{className:V.buttons,children:t.jsxRuntimeExports.jsx("div",{className:V.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,width:20,height:20,fill:"#C12A2A",onClick:()=>e(s.filter(k=>k!==x))})})})]});return h?t.jsxRuntimeExports.jsx(Bt,{id:x,children:y},t.v4()):t.jsxRuntimeExports.jsx("div",{className:V.product,children:y},t.v4())};return t.jsxRuntimeExports.jsxs("div",{className:V.productsBlock,children:[(u||i!==void 0)&&t.jsxRuntimeExports.jsxs("div",{className:V.top,children:[u&&t.jsxRuntimeExports.jsx("h3",{className:V.title,children:u}),i!==void 0&&t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:x=>o==null?void 0:o(x)})]}),a&&p&&t.jsxRuntimeExports.jsx(t.RangeSelector,{...p}),t.jsxRuntimeExports.jsxs("div",{className:V.products,children:[j&&t.jsxRuntimeExports.jsx("h5",{className:V.subtitle,children:j}),h?t.jsxRuntimeExports.jsx(t.DndContext,{sensors:D,onDragEnd:O,children:t.jsxRuntimeExports.jsx(t.SortableContext,{items:s,strategy:t.verticalListSortingStrategy,children:s.map(x=>L(x,f))})}):s.map(x=>L(x,f)),E&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center",gap:5},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:t.clx(V.button,{[V.disabled]:!!(B&&B<=s.length||s.length===n.length)}),size:"s",disabled:!!(B&&B<=s.length||s.length===n.length),onClick:()=>{const x=[...s];let I=null;if(n){for(let S=0;S<n.length;S++)if(!s.find(y=>y===n[S].id)){I=n[S];break}}x.push((I==null?void 0:I.id)||n[0].id),e(x)},style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:V.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]}),R&&P&&t.jsxRuntimeExports.jsx(t.Select,{value:R,label:"Aspect Ratio",options:Object.keys(t.aspectRatio),onChange:x=>P(x),leftAddonOptions:t.aspectRatioOptions}),d!==void 0&&t.jsxRuntimeExports.jsx(t.OtherAndTagsSettings,{tagsTitle:"Tags",items:d}),r!==void 0&&t.jsxRuntimeExports.jsx(t.OtherAndTagsSettings,{otherTitle:"Other",items:r}),g!==void 0&&t.jsxRuntimeExports.jsx(t.Input,{label:"Auto scroll interval",type:"number",value:String(g.scrollInterval),onChange:x=>g.setScrollInterval(Number(x)),min:.1,max:100,style:{width:"100%"},postfix:"sec."})]})},Tt="_title_roi3a_1",qt="_subtitle_roi3a_5",Ot="_productsBlock_roi3a_14",At="_top_roi3a_26",Dt="_products_roi3a_14",Lt="_product_roi3a_14",zt="_button_roi3a_80",Ht="_disabled_roi3a_91",Ut="_buttons_roi3a_118",Ft="_addButton_roi3a_164",Vt="_deleteButton_roi3a_179",H={title:Tt,subtitle:qt,productsBlock:Ot,top:At,products:Dt,product:Lt,button:zt,disabled:Ht,buttons:Ut,addButton:Ft,deleteButton:Vt};function Yt({product:c,children:i}){const{attributes:o,listeners:s,setNodeRef:e,transform:r,transition:d,isDragging:u}=t.useSortable({id:c.id}),j={transform:t.CSS.Transform.toString(r),transition:d};return t.jsxRuntimeExports.jsx("div",{ref:e,style:j,className:`${H.product} ${u?H.dragging:""}`,...o,...s,children:i})}const Gt=c=>{const{isActiveItems:i,setIsActiveItems:o,items:s,setItems:e,title:r,subtitle:d,editable:u=!0,draggable:j=!1,deletable:h=!0,addable:C=!0,itemsType:E,itemsOptions:n,addableOptions:a={},limit:p}=c,[B,g]=m.useState(null),[f,R]=m.useState(null),P=m.useRef(null),D=t.useSensors(t.useSensor(t.PointerSensor,{activationConstraint:{distance:5}}));m.useEffect(()=>{if(B){const x=[...s].map(I=>I.id===B.id?B:I);e(x)}},[B]),m.useEffect(()=>{P.current&&f&&(P.current.getBoundingClientRect().height,f.top)},[P.current,f]);const O=(x,I)=>{x.stopPropagation();const S=x.target.getBoundingClientRect();R({top:S.top+window.scrollY,left:S.left-30}),g(I)},v=x=>{const{active:I,over:S}=x;if(S&&I.id!==S.id){const y=s.findIndex(M=>M.id===I.id),k=s.findIndex(M=>M.id===S.id);if(y!==-1&&k!==-1){const M=[...s],[_]=M.splice(y,1);M.splice(k,0,_),e(M)}}},L=(x,I)=>{const S=t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[j&&t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"DotsSixVertical",hoverable:!0,width:20,height:20})}),E==="select"&&n&&t.jsxRuntimeExports.jsx(t.Select,{onChange:y=>{const k=[...s],M=n.find(T=>T.name===y);if(!M)return;const _=k.map(T=>T.id===x.id?{...M,name:{"en-US":y}}:T);g({...x,name:{"en-US":y}}),e([..._])},value:x.name,options:n.filter(y=>!s.find(k=>k.name===y.name)).map(y=>y.name)}),t.jsxRuntimeExports.jsxs("div",{className:H.buttons,children:[u&&t.jsxRuntimeExports.jsx("div",{className:H.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Sliders",hoverable:!0,width:20,height:20,onClick:y=>O(y,x)})}),h&&t.jsxRuntimeExports.jsx("div",{className:H.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,width:20,height:20,fill:"#C12A2A",onClick:()=>e(s.filter(y=>y.id!==x.id))})})]})]});return j?t.jsxRuntimeExports.jsx(Yt,{product:x,index:I,children:S},x.id):t.jsxRuntimeExports.jsx("div",{className:H.product,children:S},x.id)};return t.jsxRuntimeExports.jsxs("div",{className:H.productsBlock,children:[(r||i!==void 0)&&t.jsxRuntimeExports.jsxs("div",{className:H.top,children:[r&&t.jsxRuntimeExports.jsx("h3",{className:H.title,children:r}),i!==void 0&&t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:x=>o==null?void 0:o(x)})]}),t.jsxRuntimeExports.jsxs("div",{className:H.products,children:[d&&t.jsxRuntimeExports.jsx("h5",{className:H.subtitle,children:d}),j?t.jsxRuntimeExports.jsx(t.DndContext,{sensors:D,onDragEnd:v,children:t.jsxRuntimeExports.jsx(t.SortableContext,{items:s.map(x=>x.id),strategy:t.verticalListSortingStrategy,children:s.map((x,I)=>L(x,I))})}):s.map((x,I)=>L(x,I)),C&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center"},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:t.clx(H.button,{[H.disabled]:!!(p&&p<=s.length||s.length===(n==null?void 0:n.length))}),size:"s",disabled:!!(p&&p<=s.length||s.length===(n==null?void 0:n.length)),onClick:()=>{const x=[...s];let I=null;if(n){for(let S=0;S<n.length;S++)if(!s.find(y=>y.id===n[S].id)){I=n[S];break}}E==="select"&&n&&x.push({name:I?I.name:n[0].name,id:(I==null?void 0:I.id)||n[0].id,...a}),e(x)},style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:H.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]})]})};function Wt(c){const{product:i,children:o}=c,{attributes:s,listeners:e,setNodeRef:r,transform:d,transition:u,isDragging:j}=t.useSortable({id:i.id}),h={transform:t.CSS.Transform.toString(d),transition:u};return t.jsxRuntimeExports.jsx("div",{ref:r,style:h,className:`${t.styles.product} ${j?t.styles.dragging:""}`,...s,...e,children:o})}const Xt=c=>{const{isActiveItems:i,setIsActiveItems:o,items:s,setItems:e,other:r,title:d,subtitle:u,editable:j=!0,draggable:h=!1,deletable:C=!0,addable:E=!0,itemsType:n,itemsPlaceholder:a="",itemsOptions:p,hasRangeSelector:B=!1,rangeSelectorOptions:g,modalOptions:f,addableOptions:R={},limit:P}=c,[D,O]=m.useState(null),[v,L]=m.useState({top:0,left:0}),[x,I]=m.useState(null),S=m.useRef(null),[y,k]=m.useState(!1),M=t.useSensors(t.useSensor(t.PointerSensor,{activationConstraint:{distance:5}}));m.useEffect(()=>{const l=()=>{O(null),k(!1)};return document.body.addEventListener("click",l),O(null),k(!1),()=>{O(null),k(!1),document.body.removeEventListener("click",l)}},[]),m.useEffect(()=>{if(D){const l=[...s].map($=>$.id===D.id?D:$);e(l)}},[D]),m.useEffect(()=>{if(S.current&&x){const l=S.current.getBoundingClientRect().height,$=window.innerHeight;let b=x.top;b+l>$+window.scrollY-200&&(b=$+window.scrollY-l-200),b<0&&(b=10),L({top:b,left:x.left})}},[S.current,x]);const _=(l,$)=>{l.stopPropagation();const b=l.target.getBoundingClientRect();I({top:b.top+window.scrollY,left:b.left-30}),O($),k(!0)},T=l=>{const{active:$,over:b}=l;if(b&&$.id!==b.id){const q=s.findIndex(A=>A.id===$.id),W=s.findIndex(A=>A.id===b.id);if(q!==-1&&W!==-1){const A=[...s],[G]=A.splice(q,1);A.splice(W,0,G),e(A)}}},z=l=>{var b;const $=t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[h&&t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"DotsSixVertical",hoverable:!0,width:20,height:20})}),n==="select"&&p&&t.jsxRuntimeExports.jsx(t.Select,{onChange:q=>{const A=[...s].map(G=>G.id===l.id?{...l,name:{"en-US":q}}:G);O({...l,name:{"en-US":q}}),e([...A])},value:l.name["en-US"],options:p.filter(q=>!s.find(W=>W.name["en-US"]===q))}),n==="input"&&t.jsxRuntimeExports.jsx(t.Input,{onChange:q=>{const A=[...s].map(G=>G.id===l.id?{...l,name:{"en-US":q}}:G);e([...A])},value:l.name["en-US"],placeholder:a}),n==="image"&&t.jsxRuntimeExports.jsx(t.ChooseImage,{onChange:q=>{const A=[...s].map(G=>G.id===l.id?{...l,images:q}:G);e([...A])},activeImage:(b=s.find(q=>q.id===l.id))==null?void 0:b.images[0]}),t.jsxRuntimeExports.jsxs("div",{className:t.styles.buttons,children:[j&&t.jsxRuntimeExports.jsx("div",{className:t.styles.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Sliders",hoverable:!0,width:20,height:20,onClick:q=>_(q,l)})}),C&&t.jsxRuntimeExports.jsx("div",{className:t.styles.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,width:20,height:20,fill:"#C12A2A",onClick:()=>e(s.filter(q=>q.id!==l.id))})})]})]});return h?t.jsxRuntimeExports.jsx(Wt,{product:l,children:$},l.id):t.jsxRuntimeExports.jsx("div",{className:t.styles.product,children:$},l.id)};return t.jsxRuntimeExports.jsxs("div",{className:t.styles.productsBlock,children:[(d||i!==void 0)&&t.jsxRuntimeExports.jsxs("div",{className:t.styles.top,children:[d&&t.jsxRuntimeExports.jsx("h3",{className:t.styles.title,children:d}),i!==void 0&&t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:l=>o==null?void 0:o(l)})]}),D&&j&&f&&y&&t.jsxRuntimeExports.jsx(t.ItemPopup,{ref:S,activeItem:D,setActiveItem:O,popupPosition:v,modalOptions:f,setIsOpenModal:k}),B&&g&&t.jsxRuntimeExports.jsx(t.RangeSelector,{...g}),t.jsxRuntimeExports.jsxs("div",{className:t.styles.products,children:[u&&t.jsxRuntimeExports.jsx("h5",{className:t.styles.subtitle,children:u}),h?t.jsxRuntimeExports.jsx(t.DndContext,{sensors:M,onDragEnd:T,children:t.jsxRuntimeExports.jsx(t.SortableContext,{items:s.map(l=>l.id),strategy:t.verticalListSortingStrategy,children:s.map(l=>z(l))})}):s.map(l=>z(l)),E&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center"},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:t.clx(t.styles.button,{[t.styles.disabled]:!!(P&&P<=s.length)}),size:"s",disabled:!!(P&&P<=s.length),onClick:()=>{const l=[...s];let $=null;if(p){for(let b=0;b<p.length;b++)if(!s.find(q=>q.name["en-US"]===p[b])){$=p[b];break}}n==="select"&&p?l.push({name:{"en-US":$||p[0]},id:t.v4(),...R,maxSymbols:100}):n==="input"?l.push({name:{"en-US":""},id:t.v4(),...R,maxSymbols:100}):l.push({name:{"en-US":`Image ${s.length+1}`},id:t.v4(),...R,maxSymbols:100}),e(l)},style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:t.styles.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]}),r!==void 0&&t.jsxRuntimeExports.jsx(t.OtherAndTagsSettings,{otherTitle:"Other",items:r})]})},Qt="_subtitle_jql1y_1",Jt="_products_jql1y_10",Kt="_product_jql1y_10",Zt="_button_jql1y_11",te="_buttons_jql1y_11",ee="_addButton_jql1y_150",se="_deleteButton_jql1y_165",X={subtitle:Qt,products:Jt,product:Kt,button:Zt,buttons:te,addButton:ee,deleteButton:se},et=c=>{const{buttons:i,setButtons:o,deletable:s=!0,addable:e=!0,editableLink:r=!0}=c,{pages:d}=t.usePagesStore(),[u,j]=m.useState(null),[h,C]=m.useState({top:0,left:0}),[E,n]=m.useState(null),a=m.useRef(null);m.useEffect(()=>{if(u){const g=[...i].map(f=>f.id===u.id?u:f);o(g)}},[u]),m.useEffect(()=>{if(a.current&&E){const g=a.current.getBoundingClientRect().height,f=window.innerHeight;let R=E.top;R+g>f+window.scrollY-200&&(R=f+window.scrollY-g-200),R<0&&(R=10),C({top:R,left:E.left})}},[a.current,E]);const p=(g,f)=>{g.stopPropagation();const R=g.target.getBoundingClientRect();n({top:R.top+window.scrollY-70,left:R.left-(e?30:65)}),j(f)},B=(g,f)=>{const R=[...i],P={...g,id:Math.random().toString(36).substr(2,9)};R.splice(f+1,0,P),o(R)};return t.jsxRuntimeExports.jsxs("div",{className:X.products,children:[t.jsxRuntimeExports.jsx("h5",{className:X.subtitle,children:"Button Type"}),i.map((g,f)=>t.jsxRuntimeExports.jsxs("div",{className:X.product,children:[t.jsxRuntimeExports.jsx(t.Select,{onChange:R=>{const D=[...i].map(O=>O.id===g.id?{...g,type:R}:O);o(D)},value:g.type,options:["Primary","Secondary","Tertiary"]}),t.jsxRuntimeExports.jsxs("div",{className:X.buttons,children:[t.jsxRuntimeExports.jsx("div",{className:X.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Copy",hoverable:!0,width:20,height:20,onClick:()=>{B(g,f)}})}),t.jsxRuntimeExports.jsx("div",{className:X.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Sliders",hoverable:!0,width:20,height:20,onClick:R=>{p(R,g)}})}),s&&t.jsxRuntimeExports.jsx("div",{className:X.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,onClick:()=>{const R=i.filter(P=>P.id!==g.id);o(R)},width:20,height:20,fill:"#C12A2A"})})]})]},g.id)),u&&t.jsxRuntimeExports.jsx(t.ButtonPopup,{ref:a,activeButton:u,setActiveButton:j,popupPosition:h,editableLink:r}),e&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center"},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:X.button,size:"s",onClick:()=>{const g=[...i];r?g.push({type:"Primary",id:t.v4(),typesText:[],text:{"en-US":"Button Name"},destination:"Go to Page",page:d?Object.values(d)[0].path:"/",openInNewTab:!1}):g.push({type:"Primary",id:t.v4(),typesText:[],text:{"en-US":"Create Ticket"},destination:"Go to Page",page:d?Object.values(d)[0].path:"/",openInNewTab:!1}),o(g)},style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:X.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]})},ne=c=>{const{isActiveButtons:i,setIsActiveButtons:o,buttons:s,setButtons:e,editableLink:r=!0,addable:d=!0,deletable:u=!0}=c;return t.jsxRuntimeExports.jsx(t.jsxRuntimeExports.Fragment,{children:t.jsxRuntimeExports.jsxs("div",{className:t.styles$1.buttonsBlock,children:[t.jsxRuntimeExports.jsxs("div",{className:t.styles$1.top,children:[t.jsxRuntimeExports.jsx("h3",{className:t.styles$1.title,children:"Buttons"}),t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:j=>o(j)})]}),i&&t.jsxRuntimeExports.jsx(et,{buttons:s,setButtons:e,editableLink:r,addable:d,deletable:u})]})})};function ie(c){const{product:i,children:o}=c,{attributes:s,listeners:e,setNodeRef:r,transform:d,transition:u,isDragging:j}=t.useSortable({id:String(i.listingId)}),h={transform:t.CSS.Transform.toString(d),transition:u};return t.jsxRuntimeExports.jsx("div",{ref:r,style:h,className:`${t.styles$2.product} ${j?t.styles$2.dragging:""}`,...s,...e,children:o})}const oe=c=>{const{isActiveItems:i,setIsActiveItems:o,items:s,setItems:e,other:r,title:d,subtitle:u,editable:j=!0,draggable:h=!1,withImage:C=!1,deletable:E=!0,addable:n=!0,itemsType:a,itemsOptions:p,limit:B,aspectRatio:g,setAspectRatio:f}=c,[R,P]=m.useState(null),[D,O]=m.useState({top:0,left:0}),[v,L]=m.useState(!1),x=t.useSensors(t.useSensor(t.PointerSensor,{activationConstraint:{distance:5}}));m.useEffect(()=>{const _=()=>{P(null),L(!1)};return document.body.addEventListener("click",_),P(null),L(!1),()=>{P(null),L(!1),document.body.removeEventListener("click",_)}},[]),m.useEffect(()=>{if(R){const _=[...s].map(T=>T.listingId===R.listingId?R:T);e(_)}},[R]);const I=(_,T)=>{_.stopPropagation();const z=_.target.getBoundingClientRect(),l=100,$=window.innerHeight;let b=z.top+window.scrollY;b+l>$&&(b=$-l-20),L(!0),O({top:b-80,left:z.left-30}),P(T)};function S(_){if(C)return _?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${_}/w=1000`,alt:"image",width:16,height:16}):t.jsxRuntimeExports.jsx(t.Icon,{name:"Image",width:16,height:16,fill:"#757575"})}const y=_=>{const{active:T,over:z}=_;if(z&&T.id!==z.id){const l=s.findIndex(b=>String(b.listingId)===T.id),$=s.findIndex(b=>String(b.listingId)===z.id);if(l!==-1&&$!==-1){const b=[...s],[q]=b.splice(l,1);b.splice($,0,q),e(b)}}},k=_=>{const T=p.find(l=>_.listingId===l.id);if(!T)return null;const z=t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[h&&t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"DotsSixVertical",hoverable:!0,width:20,height:20})}),a==="select"&&t.jsxRuntimeExports.jsx(t.Select,{onChange:l=>{const $=[...s],b=p.find(A=>A.productData.name===l);if(!b)return;const q={listingId:b.id,image:b.productData.images.length>0?b.productData.images[0].cfId:""},W=$.map(A=>A.listingId===_.listingId?q:A);P(q),e([...W])},value:T.productData.name,options:[...p.filter(l=>!s.find($=>$.listingId===l.id)).map(l=>l.productData.name)],leftAddonOptions:p.map(l=>{var $;return{value:l.productData.name,addon:S((($=l.productData.images[0])==null?void 0:$.cfId)||"")}})}),t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.buttons,children:[j&&t.jsxRuntimeExports.jsx("div",{className:t.styles$2.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Sliders",hoverable:!0,width:20,height:20,onClick:l=>I(l,_)})}),E&&t.jsxRuntimeExports.jsx("div",{className:t.styles$2.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,width:20,height:20,fill:"#C12A2A",onClick:()=>e(s.filter(l=>l!==_))})})]})]});return h?t.jsxRuntimeExports.jsx(ie,{product:_,children:z},_.listingId):t.jsxRuntimeExports.jsx("div",{className:t.styles$2.product,children:z},_.listingId)},M=m.useRef(null);return t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.productsBlock,children:[(d||i!==void 0)&&t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.top,children:[d&&t.jsxRuntimeExports.jsx("h3",{className:t.styles$2.title,children:d}),i!==void 0&&t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:_=>o==null?void 0:o(_)})]}),v&&R&&t.jsxRuntimeExports.jsx(t.ListingPopup,{ref:M,activeItem:R,setActiveItem:P,setIsOpenModal:L,popupPosition:D,itemsOptions:p}),i&&t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.products,children:[u&&t.jsxRuntimeExports.jsx("h5",{className:t.styles$2.subtitle,children:u}),h?t.jsxRuntimeExports.jsx(t.DndContext,{sensors:x,onDragEnd:y,children:t.jsxRuntimeExports.jsx(t.SortableContext,{items:s.map(_=>String(_.listingId)),strategy:t.verticalListSortingStrategy,children:s.map(_=>k(_))})}):s.map(_=>k(_)),n&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center"},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:t.styles$2.button,size:"s",onClick:()=>{const _=[...s];for(let T=0;T<p.length;T++)if(!s.find(z=>z.listingId===p[T].id)){_.push({listingId:p[T].id,image:p[T].productData.images.length>0?p[T].productData.images[0].cfId:""});break}e(_)},disabled:s.length===(B||p.length),style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]}),g&&f&&t.jsxRuntimeExports.jsx(t.Select,{value:g,options:Object.keys(t.aspectRatio),onChange:_=>f(_),leftAddonOptions:t.aspectRatioOptions}),i&&r!==void 0&&t.jsxRuntimeExports.jsx(t.OtherAndTagsSettings,{otherTitle:"Other",items:r})]})},ae="_options_167h8_1",re="_price_167h8_18",ce="_oldPrice_167h8_25",le="_newPrice_167h8_33",de="_animate_167h8_40",ue="_meta_167h8_58",xe="_info_167h8_64",pe="_infoRight_167h8_73",me="_buttons_167h8_80",je="_variants_167h8_87",he="_variant_167h8_87",ge="_stock_167h8_105",fe="_variantInfo_167h8_112",Ee="_quantity_167h8_119",_e="_button_167h8_80",Re="_activeVariant_167h8_165",ve="_chargeTypes_167h8_169",ye="_charge_167h8_169",be="_chargeActive_167h8_194",Ie="_title_167h8_202",w={options:ae,price:re,oldPrice:ce,newPrice:le,animate:de,meta:ue,info:xe,infoRight:pe,buttons:me,variants:je,variant:he,stock:ge,variantInfo:fe,quantity:Ee,button:_e,activeVariant:Re,chargeTypes:ve,charge:ye,chargeActive:be,title:Ie};var K=(c=>(c.ONE_TIME="One-Time",c.RECURRING="Subscribe & Save",c))(K||{});const st=c=>{var D,O;const{product:i,setIsOpen:o}=c,{variants:s}=i,[e,r]=m.useState(s[0]),[d,u]=m.useState(e.chargeTypes?e.chargeTypes[0]:"ONE_TIME"),{notifications:j,setNotifications:h}=t.useNotificationStore(),C=t.useNavigate(),[E,n]=m.useState(1),{reset:a,addProductToCart:p}=t.useCart(),[B,g]=m.useState(!1);m.useEffect(()=>{g(!0);const v=setTimeout(()=>g(!1),600);return()=>clearTimeout(v)},[E]);async function f(){await p({productId:i.id,productVariantId:e.id,quantity:E}),o==null||o(!1),h([...j,{id:t.v4(),message:"Product added to cart",status:"success"}])}function R(){a(),f(),C("/checkout")}function P(v){if(v>=864e5){const y=Math.floor(v/864e5);return`${y} ${y===1?"day":"days"}`}else if(v>=36e5){const y=Math.floor(v/36e5);return`${y} ${y===1?"hour":"hours"}`}else if(v>=6e4){const y=Math.floor(v/6e4);return`${y} ${y===1?"minute":"minutes"}`}else{const y=Math.floor(v/1e3);return`${y} ${y===1?"second":"seconds"}`}}return m.useEffect(()=>{e.quantity&&e.quantity.available===0?n(0):n(1)},[e.quantity.available]),t.jsxRuntimeExports.jsxs("div",{className:w.options,children:[e.chargeTypes&&e.chargeTypes.length>1&&t.jsxRuntimeExports.jsx("div",{className:w.chargeTypes,children:e.chargeTypes.map(v=>t.jsxRuntimeExports.jsx("div",{className:t.clx(w.charge,{[w.chargeActive]:d===v}),onClick:()=>u(v),children:K[v]},v))}),t.jsxRuntimeExports.jsx("div",{className:w.variants,children:s.map(v=>{var L,x;return t.jsxRuntimeExports.jsxs("div",{className:t.clx(w.variant,{[w.activeVariant]:e.id===v.id}),onClick:()=>r(v),children:[t.jsxRuntimeExports.jsxs("div",{className:w.variantInfo,children:[t.jsxRuntimeExports.jsx("span",{className:w.title,children:t.splitTextIntoSpans(v.name)}),t.jsxRuntimeExports.jsxs("span",{children:["$",d==="ONE_TIME"?v.price.amount:v.subscriptionSettings?v.subscriptionSettings.price.amount:"Price Not Found"]})]}),t.jsxRuntimeExports.jsx("div",{children:d==="ONE_TIME"&&t.jsxRuntimeExports.jsxs("span",{className:w.stock,children:[(L=v.quantity.restrictions)!=null&&L.max||v.quantity.available!==void 0?((x=v.quantity.restrictions)==null?void 0:x.max)||v.quantity.available:"∞"," ","in stock"]})})]},v.id)})}),d==="ONE_TIME"&&t.jsxRuntimeExports.jsxs("div",{className:w.quantity,children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>{E>1?n(v=>v-1):n(1)},className:w.button,disabled:e.quantity.available&&e.quantity.restrictions&&E<=e.quantity.restrictions.min||e.quantity.available===0,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Minus"})}),t.jsxRuntimeExports.jsx(t.Input$1,{type:"number",value:String(E),onChange:v=>n(Number(v)),max:((D=e.quantity.restrictions)==null?void 0:D.max)||e.quantity.available||Number.POSITIVE_INFINITY,min:((O=e.quantity.restrictions)==null?void 0:O.min)||0,centered:!0,disabled:e.quantity&&e.quantity.available===0||Object.keys(e.quantity.restrictions||{}).length!==0&&E>=e.quantity.restrictions.max}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>{n(v=>v+1)},className:w.button,disabled:!!(e.quantity.available&&e.quantity.restrictions&&E>=e.quantity.restrictions.max||e.quantity.available===0),children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus"})})]}),t.jsxRuntimeExports.jsxs("div",{className:w.meta,children:[t.jsxRuntimeExports.jsxs("div",{className:w.info,children:[t.jsxRuntimeExports.jsx("span",{children:"Delivery"}),t.jsxRuntimeExports.jsxs("div",{className:w.infoRight,children:[t.jsxRuntimeExports.jsx(t.Icon,{name:"Lightning",fill:"var(--text-action)",width:20,height:20}),t.jsxRuntimeExports.jsx("span",{children:!e.deliveryTime||e.deliveryTime===0?"Instant":P(e.deliveryTime)})]})]}),t.jsxRuntimeExports.jsxs("div",{className:w.info,children:[t.jsxRuntimeExports.jsx("span",{children:"Price"}),t.jsxRuntimeExports.jsx("div",{className:w.infoRight,children:d==="ONE_TIME"?e.compareAtPrice&&(e.compareAtPrice.amount||0)-(e.price.amount||0)>0?t.jsxRuntimeExports.jsxs("div",{className:w.price,children:[t.jsxRuntimeExports.jsxs("span",{className:t.clx(w.newPrice,{[w.animate]:B}),children:["$ ",(e.price.amount||0)*E]}),t.jsxRuntimeExports.jsxs("span",{className:w.oldPrice,children:["$ ",(e.compareAtPrice.amount||0)*E]})]}):t.jsxRuntimeExports.jsxs("span",{className:t.clx(w.newPrice,{[w.animate]:B}),children:["$ ",(e.price.amount||0)*E]}):e.subscriptionSettings&&e.subscriptionSettings.compareAtPrice&&(e.subscriptionSettings.compareAtPrice.amount||0)-(e.subscriptionSettings.price.amount||0)>0?t.jsxRuntimeExports.jsxs("div",{className:w.price,children:[t.jsxRuntimeExports.jsxs("span",{className:t.clx(w.newPrice,{[w.animate]:B}),children:["$ ",e.subscriptionSettings.price.amount||0]}),t.jsxRuntimeExports.jsxs("span",{className:w.oldPrice,children:["$ ",e.subscriptionSettings.compareAtPrice.amount||0]})]}):e.subscriptionSettings&&t.jsxRuntimeExports.jsxs("span",{className:t.clx(w.newPrice,{[w.animate]:B}),children:["$ ",e.subscriptionSettings.price.amount||0]})})]})]}),t.jsxRuntimeExports.jsxs("div",{className:w.buttons,children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Primary",onClick:()=>R(),disabled:e.quantity&&e.quantity.available===0,children:d==="ONE_TIME"?"Buy Now":"Subscribe Now"}),d==="ONE_TIME"&&t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>f(),disabled:e.quantity&&e.quantity.available===0,children:"Add to Cart"})]})]})},Se="_buttons_qns27_23",Ne="_modal_qns27_32",Ce="_closing_qns27_64",Pe="_info_qns27_113",ke="_top_qns27_120",we="_title_qns27_131",$e="_clear_qns27_138",Be="_activeClear_qns27_145",Me="_count_qns27_149",Te="_cart_qns27_164",qe="_empty_qns27_172",Oe="_product_qns27_198",Ae="_products_qns27_207",De="_image_qns27_215",Le="_productInfo_qns27_231",ze="_content_qns27_238",He="_name_qns27_244",Ue="_price_qns27_250",Fe="_productButtons_qns27_256",Ve="_productButton_qns27_256",Ye="_productCount_qns27_273",Ge="_bottom_qns27_290",We="_subtotal_qns27_298",Xe="_block_qns27_306",Qe="_shoppingCount_qns27_313",Je="_total_qns27_333",Ke="_link_qns27_339",Ze="_userInfo_qns27_346",ts="_pagesMobileModal_qns27_358",es="_pagesMobileModalContent_qns27_372",ss="_pagesMobileModalHeader_qns27_378",ns="_pagesMobileModalFooter_qns27_388",N={buttons:Se,modal:Ne,closing:Ce,info:Pe,top:ke,title:we,clear:$e,activeClear:Be,count:Me,cart:Te,empty:qe,product:Oe,products:Ae,image:De,productInfo:Le,content:ze,name:He,price:Ue,productButtons:Fe,productButton:Ve,productCount:Ye,bottom:Ge,subtotal:We,block:Xe,shoppingCount:Qe,total:Je,link:Ke,userInfo:Ze,pagesMobileModal:ts,pagesMobileModalContent:es,pagesMobileModalHeader:ss,pagesMobileModalFooter:ns},is=c=>{const{shopping:i,signUp:o,isShowUserInfo:s=!0}=c;return t.jsxRuntimeExports.jsxs("div",{className:N.buttons,children:[i&&t.jsxRuntimeExports.jsx(nt,{}),s&&t.jsxRuntimeExports.jsx(tt,{signUp:o})]})},nt=()=>{const[c,i]=m.useState(!1),[o,s]=m.useState([]),{cart:e,products:r}=t.useCart();function d(n){if(n.variants.length>0){for(let a=0;a<e.parts.length;a++)for(let p=0;p<n.variants.length;p++)if(n.variants[p]&&e.parts[a].productVariantId===n.variants[p].id)return e.parts[a].productVariantId}return n.variants[0].id}function u(n){for(let a=0;a<e.parts.length;a++)for(let p=0;p<n.variants.length;p++)if(n.variants[p]&&e.parts[a].productVariantId===n.variants[p].id)return e.parts[a].quantity}m.useEffect(()=>{(async()=>{const a=e.parts.map(g=>String(g.productId)),B=(r.filter(g=>a.includes(String(g.id)))||[]).map(g=>({...g,activeVariantId:d(g),quantity:u(g)}));s(B)})()},[e.parts]);function j(n){var a;return!n||!(n!=null&&n.variants)?!1:(a=n.variants.find(p=>p.id===n.activeVariantId))==null?void 0:a.subscriptionSettings}const h=e.parts.length>0&&o.length>0&&!j(o[0]),[C,E]=m.useState(!1);return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsxs(t.Button$1,{type:"Secondary",style:{padding:10,position:"relative"},onClick:n=>{n.stopPropagation(),window.location.pathname.includes("/admin/builder")||(i(!0),E(!0))},children:[t.jsxRuntimeExports.jsx(t.Icon,{name:"Handbag"}),h&&t.jsxRuntimeExports.jsx("div",{className:N.shoppingCount,children:e.parts.length})]}),c&&t.jsxRuntimeExports.jsx(t.Modal,{close:()=>{E(!1),setTimeout(()=>{i(!1)},300)},withAnimation:!1,children:t.jsxRuntimeExports.jsx(it,{activeProducts:o,isCartNotEmpty:h,isOpen:C})})]})},it=c=>{const{activeProducts:i,isCartNotEmpty:o,isOpen:s}=c,{cart:e,reset:r,getTotalAndDiscount:d,updateQuantityOfProduct:u}=t.useCart(),j=t.useNavigate();function h(n){j(n)}function C(n){n.quantity&&u({productId:n.id,productVariantId:n.activeVariantId,quantity:n.quantity+1})}function E(n){n.quantity&&u({productId:n.id,productVariantId:n.activeVariantId,quantity:n.quantity-1})}return t.jsxRuntimeExports.jsxs("div",{className:t.clx(N.modal,{[N.closing]:!s}),onClick:n=>n.stopPropagation(),children:[t.jsxRuntimeExports.jsxs("div",{className:N.top,children:[t.jsxRuntimeExports.jsxs("div",{className:N.info,children:[t.jsxRuntimeExports.jsx("span",{className:N.title,children:"Cart"}),o&&t.jsxRuntimeExports.jsx("div",{className:N.count,children:e.parts.length})]}),t.jsxRuntimeExports.jsx("button",{className:t.clx(N.clear,{[N.activeClear]:o}),disabled:!o,onClick:r,children:"Clear all"})]}),o?t.jsxRuntimeExports.jsxs("div",{className:N.cart,children:[t.jsxRuntimeExports.jsx("div",{className:N.products,children:[...new Map(i.map(n=>[n.id,n])).values()].map(n=>t.jsxRuntimeExports.jsxs("div",{className:N.product,children:[t.jsxRuntimeExports.jsxs("div",{className:N.productInfo,children:[n.images.length>0?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${n.images[0].cfId}/w=500`,alt:"image",width:"100%",height:"100%",className:N.image}):t.jsxRuntimeExports.jsx("div",{className:N.image,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Image",fill:"var(--text-secondary)"})}),t.jsxRuntimeExports.jsxs("div",{className:N.content,children:[t.jsxRuntimeExports.jsx("div",{className:N.name,children:t.splitTextIntoSpans(n.name)}),t.jsxRuntimeExports.jsxs("div",{className:N.price,children:["$",n.variants.find(a=>a.id===n.activeVariantId).price.amount*((n==null?void 0:n.quantity)||1)]})]})]}),t.jsxRuntimeExports.jsxs("div",{className:N.productButtons,children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>{n.quantity!==1&&E(n)},className:N.productButton,disabled:n.quantity===1,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Minus",fill:"#757575",width:20,height:20})}),t.jsxRuntimeExports.jsx("div",{className:N.productCount,children:n.quantity}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>C(n),className:N.productButton,disabled:n.quantity===n.variants.find(a=>a.id===n.activeVariantId).quantity.available,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",fill:"#757575",width:20,height:20})})]})]},n.id))}),t.jsxRuntimeExports.jsxs("div",{className:N.bottom,children:[t.jsxRuntimeExports.jsxs("div",{className:N.subtotal,children:[t.jsxRuntimeExports.jsxs("div",{className:N.block,children:[t.jsxRuntimeExports.jsx("span",{children:"Subtotal"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Info",width:20,height:20,fill:"#757575"})]}),t.jsxRuntimeExports.jsxs("div",{className:N.total,children:["$",d().total]})]}),t.jsxRuntimeExports.jsx(t.Button$1,{onClick:()=>h("/checkout"),children:"Checkout"})]})]}):t.jsxRuntimeExports.jsx(ot,{})]})},ot=()=>t.jsxRuntimeExports.jsxs("div",{className:N.empty,children:[t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Handbag",fill:"var(--text-secondary)"})}),t.jsxRuntimeExports.jsx("span",{children:"Empty Cart"}),t.jsxRuntimeExports.jsxs("span",{children:["You don’t have any items in your shopping cart yet,"," ",t.jsxRuntimeExports.jsx("a",{href:"/products",className:N.link,children:"view products"})]})]}),tt=({signUp:c,close:i})=>{const{token:o}=t.useStorefrontStore(),s=t.useNavigate(),[e,r]=m.useState("test-email@gmail.com");m.useEffect(()=>{o&&(async()=>{if(!o)return;const j=t.jwtDecode(o);r(j.email)})()},[o]);function d(u){window.location.pathname.includes("/admin/builder")||s(u)}return o?t.jsxRuntimeExports.jsx("div",{className:N.userInfo,onClick:()=>{d("/customer-dash"),i==null||i()},children:t.jsxRuntimeExports.jsx("div",{children:e||"test-email@gmail.com"})}):t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsx(t.Button$1,{onClick:()=>{d("/customer-dash"),i==null||i()},type:"Secondary",style:{padding:10},children:"Login"}),c&&t.jsxRuntimeExports.jsx(t.Button$1,{onClick:()=>{d("/customer-dash"),i==null||i()},type:"Primary",style:{padding:10,whiteSpace:"nowrap"},children:"Sign Up"})]})},at=({children:c,logo:i,setIsOpen:o,signUp:s})=>{const{setIsOpen:e}=t.useModalStore(),r=()=>{e(!1),setTimeout(()=>{o(!1),e(!0)},300)};return t.jsxRuntimeExports.jsxs("div",{className:N.pagesMobileModal,onClick:d=>d.stopPropagation(),children:[t.jsxRuntimeExports.jsxs("div",{className:N.pagesMobileModalHeader,children:[t.jsxRuntimeExports.jsx("div",{children:i}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:r,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"X"})})]}),t.jsxRuntimeExports.jsx("div",{className:N.pagesMobileModalContent,children:c}),t.jsxRuntimeExports.jsx("div",{className:N.pagesMobileModalFooter,children:t.jsxRuntimeExports.jsx(tt,{signUp:s,close:r})})]})},os=({children:c,logo:i,signUp:o})=>{const[s,e]=m.useState(!1);return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsx(rt,{setIsOpenModal:e}),s&&t.jsxRuntimeExports.jsx(t.Modal,{close:()=>e(!1),hasPadding:!1,children:t.jsxRuntimeExports.jsx(at,{logo:i,setIsOpen:e,signUp:o,children:c})})]})},rt=c=>{const{setIsOpenModal:i}=c;return t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",style:{padding:10},onClick:o=>{o.stopPropagation(),window.location.pathname.includes("/admin/builder")||i(!0)},children:t.jsxRuntimeExports.jsx(t.Icon,{name:"List"})})},as="_share_rlgln_1",rs="_modal_rlgln_8",cs="_header_rlgln_20",ls="_title_rlgln_46",ds="_copyWrapper_rlgln_52",us="_copyText_rlgln_61",xs="_copyTextMobile_rlgln_74",ps="_copyTextMiniMobile_rlgln_93",Q={share:as,modal:rs,header:cs,title:ls,copyWrapper:ds,copyText:us,copyTextMobile:xs,copyTextMiniMobile:ps},ms=({title:c="Copy Product Link"})=>{const{isOpenModal:i,setIsOpenModal:o}=t.useShareLinkStore();function s(){o(!0)}return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsx(t.Button$1,{className:Q.share,onClick:e=>{e.stopPropagation(),s()},type:"Secondary",children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Share",fill:"#757575",hoverable:!0})}),i&&t.jsxRuntimeExports.jsx(t.Modal,{close:o,children:t.jsxRuntimeExports.jsx(js,{title:c})})]})},js=({title:c="Copy Product Link"})=>{const{setIsOpenModal:i}=t.useShareLinkStore(),{notifications:o,setNotifications:s}=t.useNotificationStore(),{setIsOpen:e}=t.useModalStore(),r=window.location.href;function d(){navigator.clipboard.writeText(r),s([...o,{id:t.v4(),message:"Link copied to clipboard",status:"success"}])}function u(){e(!1),setTimeout(()=>{i(!1),e(!0)},300)}function j(h,C){return h.length>C?h.slice(0,C)+"...":h}return t.jsxRuntimeExports.jsxs("div",{className:Q.modal,onClick:h=>h.stopPropagation(),children:[t.jsxRuntimeExports.jsxs("div",{className:Q.header,children:[t.jsxRuntimeExports.jsx("div",{className:Q.title,children:c}),t.jsxRuntimeExports.jsx(t.Icon,{name:"X",fill:"#757575",onClick:u,hoverable:!0})]}),t.jsxRuntimeExports.jsxs("div",{className:Q.copyWrapper,children:[t.jsxRuntimeExports.jsxs(t.Button$1,{type:"Secondary",onClick:d,style:{flex:1},children:[t.jsxRuntimeExports.jsx("div",{className:Q.copyText,children:j(r,100)}),t.jsxRuntimeExports.jsx("div",{className:Q.copyTextMobile,children:j(r,40)}),t.jsxRuntimeExports.jsx("div",{className:Q.copyTextMiniMobile,children:j(r,20)})]}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:d,children:o.find(h=>h.message==="Link copied to clipboard")?t.jsxRuntimeExports.jsx(t.Icon,{name:"Check"}):t.jsxRuntimeExports.jsx(t.Icon,{name:"Copy"})})]})]})},hs="_accordion_1s1lq_1",gs="_header_1s1lq_9",fs="_icon_1s1lq_18",Es="_open_1s1lq_21",_s="_content_1s1lq_25",J={accordion:hs,header:gs,icon:fs,open:Es,content:_s},Rs=({title:c,content:i,defaultOpen:o=!1})=>{const[s,e]=m.useState(o),[r,d]=m.useState(0),u=m.useRef(null),j=()=>{e(!s)};return m.useEffect(()=>{u.current&&d(s?u.current.scrollHeight:0)},[s]),t.jsxRuntimeExports.jsxs("div",{className:J.accordion,children:[t.jsxRuntimeExports.jsxs("div",{className:J.header,onClick:j,children:[t.jsxRuntimeExports.jsx("h5",{id:"h5",children:c}),t.jsxRuntimeExports.jsx("div",{className:t.clx(J.icon,{[J.open]:s}),children:t.jsxRuntimeExports.jsx(t.Icon,{name:"CaretDown"})})]}),t.jsxRuntimeExports.jsx("div",{ref:u,className:J.content,style:{height:`${r}px`},children:t.jsxRuntimeExports.jsx("p",{id:"p",children:i})})]})},ct=({children:c,path:i,className:o,target:s="_self",id:e})=>{if(window.location.pathname.includes("/admin/builder"))return t.jsxRuntimeExports.jsx("div",{className:o,role:"link",style:{cursor:"pointer"},id:e,children:c});const r=t.useNavigate(),d=/^https?:\/\//.test(i),u=j=>{d||s==="_blank"?s==="_blank"?window.open(i,"_blank"):window.open(i,"_self"):(j.preventDefault(),r(i))};return t.jsxRuntimeExports.jsx("div",{onClick:u,className:o,role:"link",style:{cursor:"pointer"},id:e,children:c})},vs="_buttonsBlock_1b2rb_1",ys={buttonsBlock:vs},bs=c=>{var h,C;const{setIsOpen:i,setModalType:o,productId:s}=c,{cart:e}=t.useCart(),{pageContext:r}=t.usePagesStore(),d=(h=r==null?void 0:r.listings)==null?void 0:h.find(E=>E.id===s);if(!d)return null;const u=(C=r==null?void 0:r.products)==null?void 0:C.find(E=>E.uniquePath===d.productData.uniquePath);if(!u)return null;const j=e.parts.find(E=>E.productId===u.id);return t.jsxRuntimeExports.jsxs("div",{className:ys.buttonsBlock,onClick:E=>E.stopPropagation(),children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",style:{width:"100%"},onClick:()=>{o("Add To Cart"),i(!0)},children:j?"Add More":"Add To Cart"}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Primary",onClick:()=>{o("Buy Now"),i(!0)},children:"Buy"})]})},Is="_wrapper_27wzz_1",Ss="_logo_27wzz_8",Ns="_info_27wzz_12",Z={wrapper:Is,logo:Ss,info:Ns},Cs=({date:c})=>{const{general:i}=t.useGeneralStore();if(!i)return t.jsxRuntimeExports.jsx(t.jsxRuntimeExports.Fragment,{});function o(s){const e=new Date(s),r={month:"short",day:"2-digit",year:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1};return e.toLocaleDateString("en-US",r)}return t.jsxRuntimeExports.jsxs("div",{className:Z.wrapper,children:[t.jsxRuntimeExports.jsx("div",{className:Z.logo,children:i.info.logo?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${i.info.logo.cfId}/w=500,h=500`,alt:"image",style:{objectFit:"contain",width:"48px",height:"48px"}}):t.jsxRuntimeExports.jsx(t.Icon,{name:"Image",width:48,height:48})}),t.jsxRuntimeExports.jsxs("div",{className:Z.info,children:[t.jsxRuntimeExports.jsx("h3",{id:"h4",children:i.info.name}),t.jsxRuntimeExports.jsx("p",{id:"p",children:o(c)})]})]})},Ps="_variants_puxd1_80",ks="_variant_puxd1_80",ws="_stock_puxd1_98",$s="_variantInfo_puxd1_105",Bs="_chargeTypes_puxd1_165",Ms="_charge_puxd1_165",Ts="_chargeActive_puxd1_190",qs="_title_puxd1_198",Os="_modal_puxd1_204",As="_header_puxd1_224",Ds="_productOptions_puxd1_232",Ls="_loading_puxd1_236",Y={variants:Ps,variant:ks,stock:ws,variantInfo:$s,chargeTypes:Bs,charge:Ms,chargeActive:Ts,title:qs,modal:Os,header:As,productOptions:Ds,loading:Ls},zs=c=>{var n;const{pageContext:i}=t.usePagesStore(),o=(n=i==null?void 0:i.listings)==null?void 0:n.find(a=>a.id===c.productId),[s,e]=m.useState(!0),[r,d]=m.useState(null),u=(r==null?void 0:r.variants[0])||null,[j,h]=m.useState(u!=null&&u.chargeTypes&&u.chargeTypes.length>1?u.chargeTypes[0]:"ONE_TIME"),{addProducts:C}=t.useCart(),{setIsOpen:E}=t.useModalStore();return m.useEffect(()=>{(async()=>{e(!0);const p=await t.getDynamicPage(encodeURIComponent(`/product/${o.productData.uniquePath}`));C(p==null?void 0:p.data.products),d(p==null?void 0:p.data.products[0]),e(!1)})()},[]),m.useEffect(()=>{E(!0)},[]),t.jsxRuntimeExports.jsx(t.Modal,{close:c.setIsOpen,children:t.jsxRuntimeExports.jsxs("div",{className:Y.modal,onClick:a=>a.stopPropagation(),children:[s&&t.jsxRuntimeExports.jsx("div",{className:Y.loading,children:t.jsxRuntimeExports.jsx(t.Loader,{})}),c.type==="Add To Cart"&&r&&u&&!s&&t.jsxRuntimeExports.jsx(Hs,{variants:r.variants,activeVariant:u,activeChargeType:j,setActiveChargeType:h,productId:r.id,setIsOpen:c.setIsOpen}),c.type==="Buy Now"&&r&&!s&&t.jsxRuntimeExports.jsx(Us,{product:r,setIsOpen:c.setIsOpen})]})})},Hs=c=>{const{variants:i,activeChargeType:o,setActiveChargeType:s,activeVariant:e,productId:r,setIsOpen:d}=c,{cart:u,addProductToCart:j,addProducts:h,updateQuantityOfProduct:C}=t.useCart(),{notifications:E,setNotifications:n}=t.useNotificationStore(),{pageContext:a}=t.usePagesStore(),{setIsOpen:p}=t.useModalStore(),B=()=>{p(!1),setTimeout(()=>{d(!1)},300)};async function g(f){const R=u.parts.find(P=>P.productId===c.productId&&P.productVariantId===f);R?C({productId:r,productVariantId:f,quantity:R.quantity+1}):(a!=null&&a.products&&await h(a.products),await j({productId:r,productVariantId:f,quantity:1})),n([...E,{id:t.v4(),message:"Product added to cart",status:"success"}])}return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsxs("div",{className:Y.header,children:[t.jsxRuntimeExports.jsx("div",{id:"h3",children:"Choose a variant"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"X",width:24,height:24,fill:"var(--text-secondary)",hoverable:!0,onClick:B})]}),e.chargeTypes&&e.chargeTypes.length>1&&t.jsxRuntimeExports.jsx("div",{className:Y.chargeTypes,children:e.chargeTypes.map(f=>t.jsxRuntimeExports.jsx("div",{className:t.clx(Y.charge,{[Y.chargeActive]:o===f}),onClick:()=>s(f),children:K[f]},f))}),t.jsxRuntimeExports.jsx("div",{className:Y.variants,children:i.map(f=>{var R,P;return t.jsxRuntimeExports.jsxs("div",{className:t.clx(Y.variant),onClick:()=>{g(f.id),d(!1)},children:[t.jsxRuntimeExports.jsxs("div",{className:Y.variantInfo,children:[t.jsxRuntimeExports.jsx("span",{className:Y.title,children:f.name}),t.jsxRuntimeExports.jsxs("span",{children:["$",o==="ONE_TIME"?f.price.amount:f.subscriptionSettings?f.subscriptionSettings.price.amount:"Price Not Found"]})]}),t.jsxRuntimeExports.jsx("div",{children:o==="ONE_TIME"&&t.jsxRuntimeExports.jsxs("span",{className:Y.stock,children:[(R=f.quantity.restrictions)!=null&&R.max||f.quantity.available!==void 0?((P=f.quantity.restrictions)==null?void 0:P.max)||f.quantity.available:"∞"," ","in stock"]})})]},f.id)})})]})},Us=c=>{const{product:i,setIsOpen:o}=c,{setIsOpen:s}=t.useModalStore(),e=()=>{s(!1),setTimeout(()=>{o(!1)},300)};return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsxs("div",{className:Y.header,children:[t.jsxRuntimeExports.jsxs("div",{id:"h3",children:["Buy ",t.splitTextIntoSpans(i.name)]}),t.jsxRuntimeExports.jsx(t.Icon,{name:"X",width:24,height:24,fill:"var(--text-secondary)",hoverable:!0,onClick:e,style:{minWidth:24,minHeight:24}})]}),t.jsxRuntimeExports.jsx("div",{className:Y.productOptions,children:t.jsxRuntimeExports.jsx(st,{product:i,setIsOpen:o})})]})},Fs="_contentModal_2a136_1",Vs="_modalTop_2a136_13",Ys="_loading_2a136_19",Gs="_modalCards_2a136_27",Ws="_modalImage_2a136_32",Xs="_card_2a136_37",Qs="_cardInfo_2a136_48",Js="_cardButtons_2a136_55",Ks="_title_2a136_61",Zs="_blockImage_2a136_68",F={contentModal:Fs,modalTop:Vs,loading:Ys,modalCards:Gs,modalImage:Ws,card:Xs,cardInfo:Qs,cardButtons:Js,title:Ks,blockImage:Zs},tn=c=>{const{setIsOpen:i,pageContext:o,groupData:s,setProductId:e,setIsProductModalOpen:r}=c,[d,u]=m.useState(null),[j,h]=m.useState(!0),{setIsOpen:C}=t.useModalStore();m.useEffect(()=>{var p;h(!0);const a=(p=o.listings)==null?void 0:p.filter(B=>s.listingIdList.includes(B.id));a&&u([...a]),h(!1)},[o]),m.useEffect(()=>{C(!0)},[]);const E=()=>{C(!1),setTimeout(()=>{i(!1)},300)};function n(a){return a.productData.compareAtPrice?a.productData.compareAtPrice.amount:0}return t.jsxRuntimeExports.jsx(t.Modal,{close:()=>i(!1),children:t.jsxRuntimeExports.jsxs("div",{className:F.contentModal,onClick:a=>a.stopPropagation(),children:[t.jsxRuntimeExports.jsxs("div",{className:F.modalTop,children:[t.jsxRuntimeExports.jsx("span",{className:F.title,id:"h4",children:t.splitTextIntoSpans(s.name)}),t.jsxRuntimeExports.jsx(t.Icon,{name:"X",hoverable:!0,onClick:E})]}),!j&&d&&t.jsxRuntimeExports.jsx("div",{className:F.modalCards,children:d.map(a=>t.jsxRuntimeExports.jsxs("div",{className:F.card,children:[t.jsxRuntimeExports.jsx("div",{children:a.productData.images[0]?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${a.productData.images[0].cfId}/w=500`,alt:"",width:64,height:64,className:F.modalImage}):t.jsxRuntimeExports.jsx("div",{className:t.clx(F.blockImage,F.modalImage),children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Image"})})}),t.jsxRuntimeExports.jsxs("div",{className:F.cardInfo,children:[t.jsxRuntimeExports.jsxs("span",{className:F.name,id:"h5",children:[t.splitTextIntoSpans(a.productData.name)," $",a.productData.minPrice.amount," ","- $",n(a)]}),a.productData.shortDescription&&t.jsxRuntimeExports.jsx("span",{className:F.short,id:"md",children:t.splitTextIntoSpans(a.productData.shortDescription)}),t.jsxRuntimeExports.jsx("span",{})]}),t.jsxRuntimeExports.jsxs("div",{className:F.cardButtons,children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>{e(a.id),i(!1),r(!0)},children:"Buy"}),t.jsxRuntimeExports.jsx(ct,{path:`/product/${a.productData.uniquePath}`,children:t.jsxRuntimeExports.jsx(t.Button$1,{type:"Primary",children:"View Details"})})]})]},a.id))}),j&&t.jsxRuntimeExports.jsx("div",{className:F.loading,children:t.jsxRuntimeExports.jsx(t.Loader,{})})]})})};exports.Button=t.Button$1;exports.ChooseImage=t.ChooseImage;exports.ChooseImageModal=t.ChooseImageModal;exports.Icon=t.Icon;exports.InputSettings=t.Input;exports.InputUI=t.Input$1;exports.ItemsSettings=t.ItemsSettings;exports.Loader=t.Loader;exports.Modal=t.Modal;exports.RadioUI=t.Radio;exports.RangeSelector=t.RangeSelector;exports.Select=t.Select;exports.SelectInfiniteList=t.SelectInfiniteList;exports.SelectUI=t.Select$1;exports.Switch=t.Switch;exports.TextSettings=t.TextSettings;exports.TextareaSettings=t.Textarea;exports.TextareaUI=t.Textarea$1;exports.TypesText=t.TypesText;exports.Accordion=Rs;exports.BurgerMenuButton=rt;exports.ButtonTypeSettings=et;exports.ButtonsSettings=ne;exports.CategorySettings=Mt;exports.ChargeTypes=K;exports.EmptyCart=ot;exports.FormSettings=Xt;exports.GroupCardModal=tn;exports.HeaderButtons=is;exports.LayoutSettings=Rt;exports.Link=ct;exports.ListingSelector=oe;exports.MetaInfoPost=Cs;exports.PagesMobileMenu=os;exports.PagesMobileModal=at;exports.PagesSettings=Gt;exports.ProductCardButtons=bs;exports.ProductCardModal=zs;exports.ProductOptions=st;exports.ShareLink=ms;exports.ShoppingButton=nt;exports.ShoppingModalCart=it;exports.UserInfo=tt;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index-DXmDoy2B.cjs"),h=require("react");require("react-dom");const lt="_block_kh9z8_8",dt="_title_kh9z8_16",ut="_subtitle_kh9z8_23",xt="_alignmentContent_kh9z8_30",pt="_alignments_kh9z8_39",mt="_alignment_kh9z8_30",ht="_circle_kh9z8_64",jt="_paddings_kh9z8_71",gt="_padding_kh9z8_71",ft="_active_kh9z8_97",z={block:lt,title:dt,subtitle:ut,alignmentContent:xt,alignments:pt,alignment:mt,circle:ht,paddings:jt,padding:gt,active:ft},Et=["topLeft","top","topRight","left","center","right","bottomLeft","bottom","bottomRight"],_t=["left","top","right","bottom"],Rt=d=>{const{alignment:i,padding:o,setPadding:s,setAlignment:e,isAlignment:l=!0,isPadding:c=!0}=d;function x(r){switch(r){case"left":case"topLeft":case"bottomLeft":return"TextAlignLeft";case"right":case"topRight":case"bottomRight":return"TextAlignRight";case"center":case"top":case"bottom":return"TextAlignCenter";default:return"TextAlignCenter"}}function j(r){switch(r){case"left":return"AlignLeft";case"right":return"AlignRight";case"top":return"AlignTop";case"bottom":return"AlignBottom"}}const[_,P]=h.useState(null),[g,a]=h.useState(null);return t.jsxRuntimeExports.jsxs("div",{className:z.layout,children:[t.jsxRuntimeExports.jsx("h3",{className:z.title,children:"Layout (for Desktop version)"}),t.jsxRuntimeExports.jsxs("div",{className:z.alignmentContent,children:[l&&t.jsxRuntimeExports.jsxs("div",{className:z.block,children:[t.jsxRuntimeExports.jsx("h5",{className:z.subtitle,children:"Alignment"}),t.jsxRuntimeExports.jsx("div",{className:z.alignments,children:Et.map(r=>t.jsxRuntimeExports.jsxs("div",{onClick:()=>{e(r)},className:z.alignment,onMouseEnter:()=>{P(r)},onMouseLeave:()=>{P(null)},children:[r!==i&&_!==r&&t.jsxRuntimeExports.jsx("div",{className:z.circle}),r!==i&&_===r&&t.jsxRuntimeExports.jsx(t.Icon,{name:x(_),fill:"#c2c2c2",width:22,height:22}),r===i&&t.jsxRuntimeExports.jsx(t.Icon,{name:x(i),fill:"#FF3F19",width:22,height:22})]},r))})]}),c&&t.jsxRuntimeExports.jsxs("div",{className:z.block,children:[t.jsxRuntimeExports.jsx("h5",{className:z.subtitle,children:"Paddings"}),t.jsxRuntimeExports.jsx("div",{className:z.paddings,children:_t.map(r=>t.jsxRuntimeExports.jsxs("label",{className:t.clx(z.padding,{[z.active]:g===r}),onFocus:()=>{a(r)},onBlur:()=>{a(null)},children:[t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:j(r),width:20,height:20})}),t.jsxRuntimeExports.jsx(t.Input,{type:"number",value:String(o[r]),onChange:n=>s({...o,[r]:Math.min(Number(n),999)}),max:999,paddingless:!0,borderless:!0})]},r))})]})]})]})},vt="_title_82zux_1",yt="_subtitle_82zux_5",bt="_productsBlock_82zux_14",It="_top_82zux_26",St="_products_82zux_14",Nt="_product_82zux_14",Ct="_button_82zux_80",Pt="_disabled_82zux_91",kt="_buttons_82zux_118",wt="_addButton_82zux_157",Bt="_deleteButton_82zux_179",H={title:vt,subtitle:yt,productsBlock:bt,top:It,products:St,product:Nt,button:Ct,disabled:Pt,buttons:kt,addButton:wt,deleteButton:Bt};function Mt({id:d,children:i}){const{attributes:o,listeners:s,setNodeRef:e,transform:l,transition:c,isDragging:x}=t.useSortable({id:d}),j={transform:t.CSS.Transform.toString(l),transition:c};return t.jsxRuntimeExports.jsx("div",{ref:e,style:j,className:`${H.product} ${x?H.dragging:""}`,...o,...s,children:i})}const $t=d=>{const{isActiveItems:i,setIsActiveItems:o,items:s,setItems:e,other:l,tags:c,title:x,subtitle:j,draggable:_=!1,withImage:P=!1,addable:g=!0,itemsOptions:a,hasRangeSelector:r=!1,rangeSelectorOptions:n,limit:B,autoScrollInterval:f,deletable:E,aspectRatio:y,setAspectRatio:S}=d,O=t.useSensors(t.useSensor(t.PointerSensor,{activationConstraint:{distance:5}})),A=p=>{const{active:b,over:N}=p;if(N&&b.id!==N.id){const M=s.findIndex($=>$===b.id),v=s.findIndex($=>$===N.id);if(M!==-1&&v!==-1){const $=[...s],[R]=$.splice(M,1);$.splice(v,0,R),e($)}}};function Y(p){if(P)return p?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${p[0]}/w=1000`,alt:"image",width:16,height:16}):t.jsxRuntimeExports.jsx(t.Icon,{name:"Image",width:16,height:16,fill:"#757575"})}const m=(p,b=!1)=>{const N=a.find(v=>v.id===p);if(!N)return;const M=t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[_&&t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"DotsSixVertical",hoverable:!0,width:20,height:20})}),t.jsxRuntimeExports.jsx(t.Select,{onChange:v=>{const $=[...s],R=a.find(u=>u.name===v);if(!R)return;const T=R.id,L=$.map(u=>u===p?T:u);e([...L])},value:N.name,options:a.filter(v=>!s.find($=>$===v.id)).map(v=>v.name),leftAddonOptions:a.map(v=>({value:v.name,addon:Y(v.images)}))}),b&&t.jsxRuntimeExports.jsx("div",{className:H.buttons,children:t.jsxRuntimeExports.jsx("div",{className:H.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,width:20,height:20,fill:"#C12A2A",onClick:()=>e(s.filter(v=>v!==p))})})})]});return _?t.jsxRuntimeExports.jsx(Mt,{id:p,children:M},t.v4()):t.jsxRuntimeExports.jsx("div",{className:H.product,children:M},t.v4())};return t.jsxRuntimeExports.jsxs("div",{className:H.productsBlock,children:[(x||i!==void 0)&&t.jsxRuntimeExports.jsxs("div",{className:H.top,children:[x&&t.jsxRuntimeExports.jsx("h3",{className:H.title,children:x}),i!==void 0&&t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:p=>o==null?void 0:o(p)})]}),r&&n&&t.jsxRuntimeExports.jsx(t.RangeSelector,{...n}),t.jsxRuntimeExports.jsxs("div",{className:H.products,children:[j&&t.jsxRuntimeExports.jsx("h5",{className:H.subtitle,children:j}),_?t.jsxRuntimeExports.jsx(t.DndContext,{sensors:O,onDragEnd:A,children:t.jsxRuntimeExports.jsx(t.SortableContext,{items:s,strategy:t.verticalListSortingStrategy,children:s.map(p=>m(p,E))})}):s.map(p=>m(p,E)),g&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center",gap:5},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:t.clx(H.button,{[H.disabled]:!!(B&&B<=s.length||s.length===a.length)}),size:"s",disabled:!!(B&&B<=s.length||s.length===a.length),onClick:()=>{const p=[...s];let b=null;if(a){for(let N=0;N<a.length;N++)if(!s.find(M=>M===a[N].id)){b=a[N];break}}p.push((b==null?void 0:b.id)||a[0].id),e(p)},style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:H.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]}),y&&S&&t.jsxRuntimeExports.jsx(t.Select,{value:y,label:"Aspect Ratio",options:Object.keys(t.aspectRatio),onChange:p=>S(p),leftAddonOptions:t.aspectRatioOptions}),c!==void 0&&t.jsxRuntimeExports.jsx(t.OtherAndTagsSettings,{tagsTitle:"Tags",items:c}),l!==void 0&&t.jsxRuntimeExports.jsx(t.OtherAndTagsSettings,{otherTitle:"Other",items:l}),f!==void 0&&t.jsxRuntimeExports.jsx(t.Input,{label:"Auto scroll interval",type:"number",value:String(f.scrollInterval),onChange:p=>f.setScrollInterval(Number(p)),min:.1,max:100,style:{width:"100%"},postfix:"sec."})]})},Tt="_title_roi3a_1",qt="_subtitle_roi3a_5",Ot="_productsBlock_roi3a_14",At="_top_roi3a_26",Dt="_products_roi3a_14",Lt="_product_roi3a_14",Ut="_button_roi3a_80",zt="_disabled_roi3a_91",Vt="_buttons_roi3a_118",Ht="_addButton_roi3a_164",Ft="_deleteButton_roi3a_179",U={title:Tt,subtitle:qt,productsBlock:Ot,top:At,products:Dt,product:Lt,button:Ut,disabled:zt,buttons:Vt,addButton:Ht,deleteButton:Ft};function Yt({product:d,children:i}){const{attributes:o,listeners:s,setNodeRef:e,transform:l,transition:c,isDragging:x}=t.useSortable({id:d.id}),j={transform:t.CSS.Transform.toString(l),transition:c};return t.jsxRuntimeExports.jsx("div",{ref:e,style:j,className:`${U.product} ${x?U.dragging:""}`,...o,...s,children:i})}const Gt=d=>{const{isActiveItems:i,setIsActiveItems:o,items:s,setItems:e,title:l,subtitle:c,editable:x=!0,draggable:j=!1,deletable:_=!0,addable:P=!0,itemsType:g,itemsOptions:a,addableOptions:r={},limit:n}=d,[B,f]=h.useState(null),[E,y]=h.useState(null),S=h.useRef(null),O=t.useSensors(t.useSensor(t.PointerSensor,{activationConstraint:{distance:5}}));h.useEffect(()=>{if(B){const p=[...s].map(b=>b.id===B.id?B:b);e(p)}},[B]),h.useEffect(()=>{S.current&&E&&(S.current.getBoundingClientRect().height,E.top)},[S.current,E]);const A=(p,b)=>{p.stopPropagation();const N=p.target.getBoundingClientRect();y({top:N.top+window.scrollY,left:N.left-30}),f(b)},Y=p=>{const{active:b,over:N}=p;if(N&&b.id!==N.id){const M=s.findIndex($=>$.id===b.id),v=s.findIndex($=>$.id===N.id);if(M!==-1&&v!==-1){const $=[...s],[R]=$.splice(M,1);$.splice(v,0,R),e($)}}},m=(p,b)=>{const N=t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[j&&t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"DotsSixVertical",hoverable:!0,width:20,height:20})}),g==="select"&&a&&t.jsxRuntimeExports.jsx(t.Select,{onChange:M=>{const v=[...s],$=a.find(T=>T.name===M);if(!$)return;const R=v.map(T=>T.id===p.id?{...$,name:{"en-US":M}}:T);f({...p,name:{"en-US":M}}),e([...R])},value:p.name,options:a.filter(M=>!s.find(v=>v.name===M.name)).map(M=>M.name)}),t.jsxRuntimeExports.jsxs("div",{className:U.buttons,children:[x&&t.jsxRuntimeExports.jsx("div",{className:U.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Sliders",hoverable:!0,width:20,height:20,onClick:M=>A(M,p)})}),_&&t.jsxRuntimeExports.jsx("div",{className:U.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,width:20,height:20,fill:"#C12A2A",onClick:()=>e(s.filter(M=>M.id!==p.id))})})]})]});return j?t.jsxRuntimeExports.jsx(Yt,{product:p,index:b,children:N},p.id):t.jsxRuntimeExports.jsx("div",{className:U.product,children:N},p.id)};return t.jsxRuntimeExports.jsxs("div",{className:U.productsBlock,children:[(l||i!==void 0)&&t.jsxRuntimeExports.jsxs("div",{className:U.top,children:[l&&t.jsxRuntimeExports.jsx("h3",{className:U.title,children:l}),i!==void 0&&t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:p=>o==null?void 0:o(p)})]}),t.jsxRuntimeExports.jsxs("div",{className:U.products,children:[c&&t.jsxRuntimeExports.jsx("h5",{className:U.subtitle,children:c}),j?t.jsxRuntimeExports.jsx(t.DndContext,{sensors:O,onDragEnd:Y,children:t.jsxRuntimeExports.jsx(t.SortableContext,{items:s.map(p=>p.id),strategy:t.verticalListSortingStrategy,children:s.map((p,b)=>m(p,b))})}):s.map((p,b)=>m(p,b)),P&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center"},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:t.clx(U.button,{[U.disabled]:!!(n&&n<=s.length||s.length===(a==null?void 0:a.length))}),size:"s",disabled:!!(n&&n<=s.length||s.length===(a==null?void 0:a.length)),onClick:()=>{const p=[...s];let b=null;if(a){for(let N=0;N<a.length;N++)if(!s.find(M=>M.id===a[N].id)){b=a[N];break}}g==="select"&&a&&p.push({name:b?b.name:a[0].name,id:(b==null?void 0:b.id)||a[0].id,...r}),e(p)},style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:U.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]})]})};function Wt(d){const{product:i,children:o}=d,{attributes:s,listeners:e,setNodeRef:l,transform:c,transition:x,isDragging:j}=t.useSortable({id:i.id}),_={transform:t.CSS.Transform.toString(c),transition:x};return t.jsxRuntimeExports.jsx("div",{ref:l,style:_,className:`${t.styles.product} ${j?t.styles.dragging:""}`,...s,...e,children:o})}const Xt=d=>{const{isActiveItems:i,setIsActiveItems:o,items:s,setItems:e,other:l,title:c,subtitle:x,editable:j=!0,draggable:_=!1,deletable:P=!0,addable:g=!0,itemsType:a,itemsPlaceholder:r="",itemsOptions:n,hasRangeSelector:B=!1,rangeSelectorOptions:f,modalOptions:E,addableOptions:y={},limit:S}=d,[O,A]=h.useState(null),[Y,m]=h.useState({top:0,left:0}),[p,b]=h.useState(null),N=h.useRef(null),[M,v]=h.useState(!1),$=t.useSensors(t.useSensor(t.PointerSensor,{activationConstraint:{distance:5}}));h.useEffect(()=>{const u=()=>{A(null),v(!1)};return document.body.addEventListener("click",u),A(null),v(!1),()=>{A(null),v(!1),document.body.removeEventListener("click",u)}},[]),h.useEffect(()=>{if(O){const u=[...s].map(w=>w.id===O.id?O:w);e(u)}},[O]),h.useEffect(()=>{if(N.current&&p){const u=N.current.getBoundingClientRect().height,w=window.innerHeight;let I=p.top;I+u>w+window.scrollY-200&&(I=w+window.scrollY-u-200),I<0&&(I=10),m({top:I,left:p.left})}},[N.current,p]);const R=(u,w)=>{u.stopPropagation();const I=u.target.getBoundingClientRect();b({top:I.top+window.scrollY,left:I.left-30}),A(w),v(!0)},T=u=>{const{active:w,over:I}=u;if(I&&w.id!==I.id){const q=s.findIndex(D=>D.id===w.id),W=s.findIndex(D=>D.id===I.id);if(q!==-1&&W!==-1){const D=[...s],[G]=D.splice(q,1);D.splice(W,0,G),e(D)}}},L=u=>{var I;const w=t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[_&&t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"DotsSixVertical",hoverable:!0,width:20,height:20})}),a==="select"&&n&&t.jsxRuntimeExports.jsx(t.Select,{onChange:q=>{const D=[...s].map(G=>G.id===u.id?{...u,name:{"en-US":q}}:G);A({...u,name:{"en-US":q}}),e([...D])},value:u.name["en-US"],options:n.filter(q=>!s.find(W=>W.name["en-US"]===q))}),a==="input"&&t.jsxRuntimeExports.jsx(t.Input,{onChange:q=>{const D=[...s].map(G=>G.id===u.id?{...u,name:{"en-US":q}}:G);e([...D])},value:u.name["en-US"],placeholder:r}),a==="image"&&t.jsxRuntimeExports.jsx(t.ChooseImage,{onChange:q=>{const D=[...s].map(G=>G.id===u.id?{...u,images:q}:G);e([...D])},activeImage:(I=s.find(q=>q.id===u.id))==null?void 0:I.images[0]}),t.jsxRuntimeExports.jsxs("div",{className:t.styles.buttons,children:[j&&t.jsxRuntimeExports.jsx("div",{className:t.styles.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Sliders",hoverable:!0,width:20,height:20,onClick:q=>R(q,u)})}),P&&t.jsxRuntimeExports.jsx("div",{className:t.styles.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,width:20,height:20,fill:"#C12A2A",onClick:()=>e(s.filter(q=>q.id!==u.id))})})]})]});return _?t.jsxRuntimeExports.jsx(Wt,{product:u,children:w},u.id):t.jsxRuntimeExports.jsx("div",{className:t.styles.product,children:w},u.id)};return t.jsxRuntimeExports.jsxs("div",{className:t.styles.productsBlock,children:[(c||i!==void 0)&&t.jsxRuntimeExports.jsxs("div",{className:t.styles.top,children:[c&&t.jsxRuntimeExports.jsx("h3",{className:t.styles.title,children:c}),i!==void 0&&t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:u=>o==null?void 0:o(u)})]}),O&&j&&E&&M&&t.jsxRuntimeExports.jsx(t.ItemPopup,{ref:N,activeItem:O,setActiveItem:A,popupPosition:Y,modalOptions:E,setIsOpenModal:v}),B&&f&&t.jsxRuntimeExports.jsx(t.RangeSelector,{...f}),t.jsxRuntimeExports.jsxs("div",{className:t.styles.products,children:[x&&t.jsxRuntimeExports.jsx("h5",{className:t.styles.subtitle,children:x}),_?t.jsxRuntimeExports.jsx(t.DndContext,{sensors:$,onDragEnd:T,children:t.jsxRuntimeExports.jsx(t.SortableContext,{items:s.map(u=>u.id),strategy:t.verticalListSortingStrategy,children:s.map(u=>L(u))})}):s.map(u=>L(u)),g&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center"},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:t.clx(t.styles.button,{[t.styles.disabled]:!!(S&&S<=s.length)}),size:"s",disabled:!!(S&&S<=s.length),onClick:()=>{const u=[...s];let w=null;if(n){for(let I=0;I<n.length;I++)if(!s.find(q=>q.name["en-US"]===n[I])){w=n[I];break}}a==="select"&&n?u.push({name:{"en-US":w||n[0]},id:t.v4(),...y,maxSymbols:100}):a==="input"?u.push({name:{"en-US":""},id:t.v4(),...y,maxSymbols:100}):u.push({name:{"en-US":`Image ${s.length+1}`},id:t.v4(),...y,maxSymbols:100}),e(u)},style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:t.styles.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]}),l!==void 0&&t.jsxRuntimeExports.jsx(t.OtherAndTagsSettings,{otherTitle:"Other",items:l})]})},Qt="_subtitle_jql1y_1",Jt="_products_jql1y_10",Kt="_product_jql1y_10",Zt="_button_jql1y_11",te="_buttons_jql1y_11",ee="_addButton_jql1y_150",se="_deleteButton_jql1y_165",X={subtitle:Qt,products:Jt,product:Kt,button:Zt,buttons:te,addButton:ee,deleteButton:se},et=d=>{const{buttons:i,setButtons:o,deletable:s=!0,addable:e=!0,editableLink:l=!0}=d,{pages:c}=t.usePagesStore(),[x,j]=h.useState(null),[_,P]=h.useState({top:0,left:0}),[g,a]=h.useState(null),r=h.useRef(null);h.useEffect(()=>{if(x){const f=[...i].map(E=>E.id===x.id?x:E);o(f)}},[x]),h.useEffect(()=>{if(r.current&&g){const f=r.current.getBoundingClientRect().height,E=window.innerHeight;let y=g.top;y+f>E+window.scrollY-200&&(y=E+window.scrollY-f-200),y<0&&(y=10),P({top:y,left:g.left})}},[r.current,g]);const n=(f,E)=>{f.stopPropagation();const y=f.target.getBoundingClientRect();a({top:y.top+window.scrollY-70,left:y.left-(e?30:65)}),j(E)},B=(f,E)=>{const y=[...i],S={...f,id:Math.random().toString(36).substr(2,9)};y.splice(E+1,0,S),o(y)};return t.jsxRuntimeExports.jsxs("div",{className:X.products,children:[t.jsxRuntimeExports.jsx("h5",{className:X.subtitle,children:"Button Type"}),i.map((f,E)=>t.jsxRuntimeExports.jsxs("div",{className:X.product,children:[t.jsxRuntimeExports.jsx(t.Select,{onChange:y=>{const O=[...i].map(A=>A.id===f.id?{...f,type:y}:A);o(O)},value:f.type,options:["Primary","Secondary","Tertiary"]}),t.jsxRuntimeExports.jsxs("div",{className:X.buttons,children:[t.jsxRuntimeExports.jsx("div",{className:X.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Copy",hoverable:!0,width:20,height:20,onClick:()=>{B(f,E)}})}),t.jsxRuntimeExports.jsx("div",{className:X.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Sliders",hoverable:!0,width:20,height:20,onClick:y=>{n(y,f)}})}),s&&t.jsxRuntimeExports.jsx("div",{className:X.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,onClick:()=>{const y=i.filter(S=>S.id!==f.id);o(y)},width:20,height:20,fill:"#C12A2A"})})]})]},f.id)),x&&t.jsxRuntimeExports.jsx(t.ButtonPopup,{ref:r,activeButton:x,setActiveButton:j,popupPosition:_,editableLink:l}),e&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center"},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:X.button,size:"s",onClick:()=>{const f=[...i];l?f.push({type:"Primary",id:t.v4(),typesText:[],text:{"en-US":"Button Name"},destination:"Go to Page",page:c?Object.values(c)[0].path:"/",openInNewTab:!1}):f.push({type:"Primary",id:t.v4(),typesText:[],text:{"en-US":"Create Ticket"},destination:"Go to Page",page:c?Object.values(c)[0].path:"/",openInNewTab:!1}),o(f)},style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:X.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]})},ne=d=>{const{isActiveButtons:i,setIsActiveButtons:o,buttons:s,setButtons:e,editableLink:l=!0,addable:c=!0,deletable:x=!0}=d;return t.jsxRuntimeExports.jsx(t.jsxRuntimeExports.Fragment,{children:t.jsxRuntimeExports.jsxs("div",{className:t.styles$1.buttonsBlock,children:[t.jsxRuntimeExports.jsxs("div",{className:t.styles$1.top,children:[t.jsxRuntimeExports.jsx("h3",{className:t.styles$1.title,children:"Buttons"}),t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:j=>o(j)})]}),i&&t.jsxRuntimeExports.jsx(et,{buttons:s,setButtons:e,editableLink:l,addable:c,deletable:x})]})})};function ie(d){const{product:i,children:o}=d,{attributes:s,listeners:e,setNodeRef:l,transform:c,transition:x,isDragging:j}=t.useSortable({id:String(i.listingId)}),_={transform:t.CSS.Transform.toString(c),transition:x};return t.jsxRuntimeExports.jsx("div",{ref:l,style:_,className:`${t.styles$2.product} ${j?t.styles$2.dragging:""}`,...s,...e,children:o})}const oe=d=>{const{isActiveItems:i,setIsActiveItems:o,items:s,setItems:e,other:l,title:c,subtitle:x,editable:j=!0,draggable:_=!1,withImage:P=!1,deletable:g=!0,addable:a=!0,itemsType:r,itemsOptions:n,limit:B,aspectRatio:f,setAspectRatio:E}=d,[y,S]=h.useState(null),[O,A]=h.useState({top:0,left:0}),[Y,m]=h.useState(!1),p=t.useSensors(t.useSensor(t.PointerSensor,{activationConstraint:{distance:5}}));h.useEffect(()=>{const R=()=>{S(null),m(!1)};return document.body.addEventListener("click",R),S(null),m(!1),()=>{S(null),m(!1),document.body.removeEventListener("click",R)}},[]),h.useEffect(()=>{if(y){const R=[...s].map(T=>T.listingId===y.listingId?y:T);e(R)}},[y]);const b=(R,T)=>{R.stopPropagation();const L=R.target.getBoundingClientRect(),u=100,w=window.innerHeight;let I=L.top+window.scrollY;I+u>w&&(I=w-u-20),m(!0),A({top:I-80,left:L.left-30}),S(T)};function N(R){if(P)return R?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${R}/w=1000`,alt:"image",width:16,height:16}):t.jsxRuntimeExports.jsx(t.Icon,{name:"Image",width:16,height:16,fill:"#757575"})}const M=R=>{const{active:T,over:L}=R;if(L&&T.id!==L.id){const u=s.findIndex(I=>String(I.listingId)===T.id),w=s.findIndex(I=>String(I.listingId)===L.id);if(u!==-1&&w!==-1){const I=[...s],[q]=I.splice(u,1);I.splice(w,0,q),e(I)}}},v=R=>{const T=n.find(u=>R.listingId===u.id);if(!T)return null;const L=t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[_&&t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"DotsSixVertical",hoverable:!0,width:20,height:20})}),r==="select"&&t.jsxRuntimeExports.jsx(t.Select,{onChange:u=>{const w=[...s],I=n.find(D=>D.productData.name===u);if(!I)return;const q={listingId:I.id,image:I.productData.images.length>0?I.productData.images[0].cfId:""},W=w.map(D=>D.listingId===R.listingId?q:D);S(q),e([...W])},value:T.productData.name,options:[...n.filter(u=>!s.find(w=>w.listingId===u.id)).map(u=>u.productData.name)],leftAddonOptions:n.map(u=>{var w;return{value:u.productData.name,addon:N(((w=u.productData.images[0])==null?void 0:w.cfId)||"")}})}),t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.buttons,children:[j&&t.jsxRuntimeExports.jsx("div",{className:t.styles$2.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Sliders",hoverable:!0,width:20,height:20,onClick:u=>b(u,R)})}),g&&t.jsxRuntimeExports.jsx("div",{className:t.styles$2.deleteButton,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Trash",hoverable:!0,width:20,height:20,fill:"#C12A2A",onClick:()=>e(s.filter(u=>u!==R))})})]})]});return _?t.jsxRuntimeExports.jsx(ie,{product:R,children:L},R.listingId):t.jsxRuntimeExports.jsx("div",{className:t.styles$2.product,children:L},R.listingId)},$=h.useRef(null);return t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.productsBlock,children:[(c||i!==void 0)&&t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.top,children:[c&&t.jsxRuntimeExports.jsx("h3",{className:t.styles$2.title,children:c}),i!==void 0&&t.jsxRuntimeExports.jsx(t.Switch,{current:i,onChange:R=>o==null?void 0:o(R)})]}),Y&&y&&t.jsxRuntimeExports.jsx(t.ListingPopup,{ref:$,activeItem:y,setActiveItem:S,setIsOpenModal:m,popupPosition:O,itemsOptions:n}),i&&t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.products,children:[x&&t.jsxRuntimeExports.jsx("h5",{className:t.styles$2.subtitle,children:x}),_?t.jsxRuntimeExports.jsx(t.DndContext,{sensors:p,onDragEnd:M,children:t.jsxRuntimeExports.jsx(t.SortableContext,{items:s.map(R=>String(R.listingId)),strategy:t.verticalListSortingStrategy,children:s.map(R=>v(R))})}):s.map(R=>v(R)),a&&t.jsxRuntimeExports.jsx("div",{style:{width:"100%",display:"flex",justifyContent:"center"},children:t.jsxRuntimeExports.jsx(t.Button,{withoutHover:!0,className:t.styles$2.button,size:"s",onClick:()=>{const R=[...s];for(let T=0;T<n.length;T++)if(!s.find(L=>L.listingId===n[T].id)){R.push({listingId:n[T].id,image:n[T].productData.images.length>0?n[T].productData.images[0].cfId:""});break}e(R)},disabled:s.length===(B||n.length),style:{width:"fit-content"},children:t.jsxRuntimeExports.jsxs("div",{className:t.styles$2.addButton,children:[t.jsxRuntimeExports.jsx("span",{children:"Add Option"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",width:16,height:16})]})})})]}),f&&E&&t.jsxRuntimeExports.jsx(t.Select,{value:f,options:Object.keys(t.aspectRatio),onChange:R=>E(R),leftAddonOptions:t.aspectRatioOptions}),i&&l!==void 0&&t.jsxRuntimeExports.jsx(t.OtherAndTagsSettings,{otherTitle:"Other",items:l})]})},re="_options_167h8_1",ae="_price_167h8_18",ce="_oldPrice_167h8_25",le="_newPrice_167h8_33",de="_animate_167h8_40",ue="_meta_167h8_58",xe="_info_167h8_64",pe="_infoRight_167h8_73",me="_buttons_167h8_80",he="_variants_167h8_87",je="_variant_167h8_87",ge="_stock_167h8_105",fe="_variantInfo_167h8_112",Ee="_quantity_167h8_119",_e="_button_167h8_80",Re="_activeVariant_167h8_165",ve="_chargeTypes_167h8_169",ye="_charge_167h8_169",be="_chargeActive_167h8_194",Ie="_title_167h8_202",k={options:re,price:ae,oldPrice:ce,newPrice:le,animate:de,meta:ue,info:xe,infoRight:pe,buttons:me,variants:he,variant:je,stock:ge,variantInfo:fe,quantity:Ee,button:_e,activeVariant:Re,chargeTypes:ve,charge:ye,chargeActive:be,title:Ie};var K=(d=>(d.ONE_TIME="One-Time",d.RECURRING="Subscribe & Save",d))(K||{});const st=d=>{var A,Y;const{product:i,setIsOpen:o}=d,{variants:s}=i,[e,l]=h.useState(s[0]),[c,x]=h.useState(e.chargeTypes?e.chargeTypes[0]:"ONE_TIME"),{notifications:j,setNotifications:_}=t.useNotificationStore(),P=t.useNavigate(),[g,a]=h.useState(1),{cart:r,reset:n,addProductToCart:B}=t.useCart(),[f,E]=h.useState(!1);h.useEffect(()=>{E(!0);const m=setTimeout(()=>E(!1),600);return()=>clearTimeout(m)},[g]);async function y(){try{B({productId:i.id,productVariantId:e.id,quantity:g}),_([...j,{id:t.v4(),message:"Product added to cart",status:"success"}])}catch(m){_([...j,{id:t.v4(),message:`Product failed to add to cart: ${m}`,status:"error"}])}o==null||o(!1)}function S(){n(),y(),P("/checkout")}function O(m){if(m>=864e5){const v=Math.floor(m/864e5);return`${v} ${v===1?"day":"days"}`}else if(m>=36e5){const v=Math.floor(m/36e5);return`${v} ${v===1?"hour":"hours"}`}else if(m>=6e4){const v=Math.floor(m/6e4);return`${v} ${v===1?"minute":"minutes"}`}else{const v=Math.floor(m/1e3);return`${v} ${v===1?"second":"seconds"}`}}return h.useEffect(()=>{e.quantity&&e.quantity.available===0?a(0):a(1)},[e.quantity.available]),t.jsxRuntimeExports.jsxs("div",{className:k.options,children:[e.chargeTypes&&e.chargeTypes.length>1&&t.jsxRuntimeExports.jsx("div",{className:k.chargeTypes,children:e.chargeTypes.map(m=>t.jsxRuntimeExports.jsx("div",{className:t.clx(k.charge,{[k.chargeActive]:c===m}),onClick:()=>x(m),children:K[m]},m))}),t.jsxRuntimeExports.jsx("div",{className:k.variants,children:s.map(m=>{var p,b;return t.jsxRuntimeExports.jsxs("div",{className:t.clx(k.variant,{[k.activeVariant]:e.id===m.id}),onClick:()=>l(m),children:[t.jsxRuntimeExports.jsxs("div",{className:k.variantInfo,children:[t.jsxRuntimeExports.jsx("span",{className:k.title,children:t.splitTextIntoSpans(m.name)}),t.jsxRuntimeExports.jsx("span",{children:t.formatPrice({amount:c==="ONE_TIME"?m.price.amount:m.subscriptionSettings?m.subscriptionSettings.price.amount:0,currency:c==="ONE_TIME"?m.price.currency:m.subscriptionSettings?m.subscriptionSettings.price.currency:"USD"})})]}),t.jsxRuntimeExports.jsx("div",{children:c==="ONE_TIME"&&t.jsxRuntimeExports.jsxs("span",{className:k.stock,children:[(p=m.quantity.restrictions)!=null&&p.max||m.quantity.available!==void 0?((b=m.quantity.restrictions)==null?void 0:b.max)||m.quantity.available:"∞"," ","in stock"]})})]},m.id)})}),c==="ONE_TIME"&&t.jsxRuntimeExports.jsxs("div",{className:k.quantity,children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>{g>1?a(m=>m-1):a(1)},className:k.button,disabled:e.quantity.available&&e.quantity.restrictions&&g<=e.quantity.restrictions.min||e.quantity.available===0,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Minus"})}),t.jsxRuntimeExports.jsx(t.Input$1,{type:"number",value:String(g),onChange:m=>{e.quantity.available&&Number(m)>e.quantity.available?a(e.quantity.available):a(Number(m))},max:((A=e.quantity.restrictions)==null?void 0:A.max)||e.quantity.available||Number.POSITIVE_INFINITY,min:((Y=e.quantity.restrictions)==null?void 0:Y.min)||0,centered:!0,disabled:e.quantity&&e.quantity.available===0||Object.keys(e.quantity.restrictions||{}).length!==0&&g>=e.quantity.restrictions.max}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>{a(m=>m+1)},className:k.button,disabled:!!(e.quantity.available&&e.quantity.restrictions&&g>=e.quantity.restrictions.max||e.quantity.available===0||e.quantity.available&&g>=e.quantity.available),children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus"})})]}),t.jsxRuntimeExports.jsxs("div",{className:k.meta,children:[t.jsxRuntimeExports.jsxs("div",{className:k.info,children:[t.jsxRuntimeExports.jsx("span",{children:"Delivery"}),t.jsxRuntimeExports.jsxs("div",{className:k.infoRight,children:[t.jsxRuntimeExports.jsx(t.Icon,{name:"Lightning",fill:"var(--text-action)",width:20,height:20}),t.jsxRuntimeExports.jsx("span",{children:!e.deliveryTime||e.deliveryTime===0?"Instant":O(e.deliveryTime)})]})]}),t.jsxRuntimeExports.jsxs("div",{className:k.info,children:[t.jsxRuntimeExports.jsx("span",{children:"Price"}),t.jsxRuntimeExports.jsx("div",{className:k.infoRight,children:c==="ONE_TIME"?e.compareAtPrice&&(e.compareAtPrice.amount||0)-(e.price.amount||0)>0?t.jsxRuntimeExports.jsxs("div",{className:k.price,children:[t.jsxRuntimeExports.jsx("span",{className:t.clx(k.newPrice,{[k.animate]:f}),children:t.formatPrice({amount:e.price.amount*g,currency:e.price.currency})}),t.jsxRuntimeExports.jsx("span",{className:k.oldPrice,children:t.formatPrice({amount:e.compareAtPrice.amount*g,currency:e.compareAtPrice.currency})})]}):t.jsxRuntimeExports.jsx("span",{className:t.clx(k.newPrice,{[k.animate]:f}),children:t.formatPrice({amount:e.price.amount*g,currency:e.price.currency})}):e.subscriptionSettings&&e.subscriptionSettings.compareAtPrice&&(e.subscriptionSettings.compareAtPrice.amount||0)-(e.subscriptionSettings.price.amount||0)>0?t.jsxRuntimeExports.jsxs("div",{className:k.price,children:[t.jsxRuntimeExports.jsx("span",{className:t.clx(k.newPrice,{[k.animate]:f}),children:t.formatPrice({amount:e.subscriptionSettings.price.amount*g,currency:e.subscriptionSettings.price.currency})}),t.jsxRuntimeExports.jsx("span",{className:k.oldPrice,children:t.formatPrice({amount:e.subscriptionSettings.compareAtPrice.amount*g,currency:e.subscriptionSettings.compareAtPrice.currency})})]}):e.subscriptionSettings&&t.jsxRuntimeExports.jsx("span",{className:t.clx(k.newPrice,{[k.animate]:f}),children:t.formatPrice({amount:e.subscriptionSettings.price.amount*g,currency:e.subscriptionSettings.price.currency})})})]})]}),t.jsxRuntimeExports.jsxs("div",{className:k.buttons,children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Primary",onClick:()=>S(),disabled:e.quantity&&e.quantity.available===0,children:c==="ONE_TIME"?"Buy Now":"Subscribe Now"}),c==="ONE_TIME"&&t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>y(),disabled:e.quantity&&e.quantity.available===0,children:r.parts.some(m=>m.productId===i.id&&m.productVariantId===e.id)?"Add More":"Add to Cart"})]})]})},Se="_buttons_qns27_23",Ne="_modal_qns27_32",Ce="_closing_qns27_64",Pe="_info_qns27_113",ke="_top_qns27_120",we="_title_qns27_131",Be="_clear_qns27_138",Me="_activeClear_qns27_145",$e="_count_qns27_149",Te="_cart_qns27_164",qe="_empty_qns27_172",Oe="_product_qns27_198",Ae="_products_qns27_207",De="_image_qns27_215",Le="_productInfo_qns27_231",Ue="_content_qns27_238",ze="_name_qns27_244",Ve="_price_qns27_250",He="_productButtons_qns27_256",Fe="_productButton_qns27_256",Ye="_productCount_qns27_273",Ge="_bottom_qns27_290",We="_subtotal_qns27_298",Xe="_block_qns27_306",Qe="_shoppingCount_qns27_313",Je="_total_qns27_333",Ke="_link_qns27_339",Ze="_userInfo_qns27_346",ts="_pagesMobileModal_qns27_358",es="_pagesMobileModalContent_qns27_372",ss="_pagesMobileModalHeader_qns27_378",ns="_pagesMobileModalFooter_qns27_388",C={buttons:Se,modal:Ne,closing:Ce,info:Pe,top:ke,title:we,clear:Be,activeClear:Me,count:$e,cart:Te,empty:qe,product:Oe,products:Ae,image:De,productInfo:Le,content:Ue,name:ze,price:Ve,productButtons:He,productButton:Fe,productCount:Ye,bottom:Ge,subtotal:We,block:Xe,shoppingCount:Qe,total:Je,link:Ke,userInfo:Ze,pagesMobileModal:ts,pagesMobileModalContent:es,pagesMobileModalHeader:ss,pagesMobileModalFooter:ns},is=d=>{const{shopping:i,signUp:o,isShowUserInfo:s=!0}=d;return t.jsxRuntimeExports.jsxs("div",{className:C.buttons,children:[i&&t.jsxRuntimeExports.jsx(nt,{}),s&&t.jsxRuntimeExports.jsx(tt,{signUp:o})]})},nt=()=>{const[d,i]=h.useState(!1),[o,s]=h.useState([]),[e,l]=h.useState(!1),{cart:c,products:x}=t.useCart();function j(a){if(a.variants.length>0){for(let r=0;r<c.parts.length;r++)for(let n=0;n<a.variants.length;n++)if(a.variants[n]&&c.parts[r].productVariantId===a.variants[n].id)return c.parts[r].productVariantId}return a.variants[0].id}function _(a){for(let r=0;r<c.parts.length;r++)for(let n=0;n<a.variants.length;n++)if(a.variants[n]&&c.parts[r].productVariantId===a.variants[n].id)return c.parts[r].quantity}h.useEffect(()=>{(async()=>{const r=c.parts.map(f=>String(f.productId)),n=x.filter(f=>r.includes(String(f.id)))||[];console.log(x,"products"),console.log(r),console.log(n,"productsBuffer");const B=n.map(f=>({...f,activeVariantId:j(f),quantity:_(f)}));s(B)})()},[c.parts]);function P(a){var r;return!a||!(a!=null&&a.variants)?!1:(r=a.variants.find(n=>n.id===a.activeVariantId))==null?void 0:r.subscriptionSettings}const g=c.parts.length>0&&o.length>0&&!P(o[0]);return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsxs(t.Button$1,{type:"Secondary",style:{padding:10,position:"relative"},onClick:a=>{a.stopPropagation(),window.location.pathname.includes("/admin/builder")||(i(!0),l(!0))},children:[t.jsxRuntimeExports.jsx(t.Icon,{name:"Handbag"}),g&&t.jsxRuntimeExports.jsx("div",{className:C.shoppingCount,children:c.parts.length})]}),d&&t.jsxRuntimeExports.jsx(t.Modal,{close:()=>{l(!1),setTimeout(()=>{i(!1)},300)},withAnimation:!1,children:t.jsxRuntimeExports.jsx(it,{activeProducts:o,isCartNotEmpty:g,isOpen:e})})]})},it=d=>{var a,r;const{activeProducts:i,isCartNotEmpty:o,isOpen:s}=d,{cart:e,reset:l,getTotalAndDiscount:c,updateQuantityOfProduct:x}=t.useCart(),j=t.useNavigate();function _(n){j(n)}function P(n){n.quantity&&x({productId:n.id,productVariantId:n.activeVariantId,quantity:n.quantity+1})}function g(n){n.quantity&&x({productId:n.id,productVariantId:n.activeVariantId,quantity:n.quantity-1})}return console.log(i),t.jsxRuntimeExports.jsxs("div",{className:t.clx(C.modal,{[C.closing]:!s}),onClick:n=>n.stopPropagation(),children:[t.jsxRuntimeExports.jsxs("div",{className:C.top,children:[t.jsxRuntimeExports.jsxs("div",{className:C.info,children:[t.jsxRuntimeExports.jsx("span",{className:C.title,children:"Cart"}),o&&t.jsxRuntimeExports.jsx("div",{className:C.count,children:e.parts.length})]}),t.jsxRuntimeExports.jsx("button",{className:t.clx(C.clear,{[C.activeClear]:o}),disabled:!o,onClick:l,children:"Clear all"})]}),o?t.jsxRuntimeExports.jsxs("div",{className:C.cart,children:[t.jsxRuntimeExports.jsx("div",{className:C.products,children:[...new Map(i.map(n=>[n.id,n])).values()].map(n=>t.jsxRuntimeExports.jsxs("div",{className:C.product,children:[t.jsxRuntimeExports.jsxs("div",{className:C.productInfo,children:[n.images.length>0?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${n.images[0].cfId}/w=500`,alt:"image",width:"100%",height:"100%",className:C.image}):t.jsxRuntimeExports.jsx("div",{className:C.image,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Image",fill:"var(--text-secondary)"})}),t.jsxRuntimeExports.jsxs("div",{className:C.content,children:[t.jsxRuntimeExports.jsx("div",{className:C.name,children:t.splitTextIntoSpans(n.name)}),t.jsxRuntimeExports.jsx("div",{className:C.price,children:t.formatPrice({amount:n.variants.find(B=>B.id===n.activeVariantId).price.amount*((n==null?void 0:n.quantity)||1),currency:n.variants.find(B=>B.id===n.activeVariantId).price.currency})})]})]}),t.jsxRuntimeExports.jsxs("div",{className:C.productButtons,children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>{n.quantity!==1&&g(n)},className:C.productButton,disabled:n.quantity===1,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Minus",fill:"#757575",width:20,height:20})}),t.jsxRuntimeExports.jsx("div",{className:C.productCount,children:n.quantity}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>P(n),className:C.productButton,disabled:n.quantity===n.variants.find(B=>B.id===n.activeVariantId).quantity.available,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Plus",fill:"#757575",width:20,height:20})})]})]},n.id))}),t.jsxRuntimeExports.jsxs("div",{className:C.bottom,children:[t.jsxRuntimeExports.jsxs("div",{className:C.subtotal,children:[t.jsxRuntimeExports.jsxs("div",{className:C.block,children:[t.jsxRuntimeExports.jsx("span",{children:"Subtotal"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"Info",width:20,height:20,fill:"#757575"})]}),t.jsxRuntimeExports.jsx("div",{className:C.total,children:t.formatPrice({amount:c().total,currency:e.parts.length>0&&((r=(a=i.find(n=>n.id===e.parts[0].productId))==null?void 0:a.variants.find(n=>n.id===e.parts[0].productVariantId))==null?void 0:r.price.currency)||"USD"})})]}),t.jsxRuntimeExports.jsx(t.Button$1,{onClick:()=>_("/checkout"),children:"Checkout"})]})]}):t.jsxRuntimeExports.jsx(ot,{})]})},ot=()=>t.jsxRuntimeExports.jsxs("div",{className:C.empty,children:[t.jsxRuntimeExports.jsx("div",{children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Handbag",fill:"var(--text-secondary)"})}),t.jsxRuntimeExports.jsx("span",{children:"Empty Cart"}),t.jsxRuntimeExports.jsxs("span",{children:["You don’t have any items in your shopping cart yet,"," ",t.jsxRuntimeExports.jsx("a",{href:"/products",className:C.link,children:"view products"})]})]}),tt=({signUp:d,close:i})=>{const{token:o}=t.useStorefrontStore(),s=t.useNavigate(),[e,l]=h.useState("test-email@gmail.com");h.useEffect(()=>{o&&(async()=>{if(!o)return;const j=t.jwtDecode(o);l(j.email)})()},[o]);function c(x){window.location.pathname.includes("/admin/builder")||s(x)}return o?t.jsxRuntimeExports.jsx("div",{className:C.userInfo,onClick:()=>{c("/customer-dash"),i==null||i()},children:t.jsxRuntimeExports.jsx("div",{children:e||"test-email@gmail.com"})}):t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsx(t.Button$1,{onClick:()=>{c("/customer-dash"),i==null||i()},type:"Secondary",style:{padding:10},children:"Login"}),d&&t.jsxRuntimeExports.jsx(t.Button$1,{onClick:()=>{c("/customer-dash"),i==null||i()},type:"Primary",style:{padding:10,whiteSpace:"nowrap"},children:"Sign Up"})]})},rt=({children:d,logo:i,setIsOpen:o,signUp:s})=>{const{setIsOpen:e}=t.useModalStore(),l=()=>{e(!1),setTimeout(()=>{o(!1),e(!0)},300)};return t.jsxRuntimeExports.jsxs("div",{className:C.pagesMobileModal,onClick:c=>c.stopPropagation(),children:[t.jsxRuntimeExports.jsxs("div",{className:C.pagesMobileModalHeader,children:[t.jsxRuntimeExports.jsx("div",{children:i}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:l,children:t.jsxRuntimeExports.jsx(t.Icon,{name:"X"})})]}),t.jsxRuntimeExports.jsx("div",{className:C.pagesMobileModalContent,children:d}),t.jsxRuntimeExports.jsx("div",{className:C.pagesMobileModalFooter,children:t.jsxRuntimeExports.jsx(tt,{signUp:s,close:l})})]})},os=({children:d,logo:i,signUp:o})=>{const[s,e]=h.useState(!1);return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsx(at,{setIsOpenModal:e}),s&&t.jsxRuntimeExports.jsx(t.Modal,{close:()=>e(!1),hasPadding:!1,children:t.jsxRuntimeExports.jsx(rt,{logo:i,setIsOpen:e,signUp:o,children:d})})]})},at=d=>{const{setIsOpenModal:i}=d;return t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",style:{padding:10},onClick:o=>{o.stopPropagation(),window.location.pathname.includes("/admin/builder")||i(!0)},children:t.jsxRuntimeExports.jsx(t.Icon,{name:"List"})})},rs="_share_rlgln_1",as="_modal_rlgln_8",cs="_header_rlgln_20",ls="_title_rlgln_46",ds="_copyWrapper_rlgln_52",us="_copyText_rlgln_61",xs="_copyTextMobile_rlgln_74",ps="_copyTextMiniMobile_rlgln_93",Q={share:rs,modal:as,header:cs,title:ls,copyWrapper:ds,copyText:us,copyTextMobile:xs,copyTextMiniMobile:ps},ms=({title:d="Copy Product Link"})=>{const{isOpenModal:i,setIsOpenModal:o}=t.useShareLinkStore();function s(){o(!0)}return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsx(t.Button$1,{className:Q.share,onClick:e=>{e.stopPropagation(),s()},type:"Secondary",children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Share",fill:"#757575",hoverable:!0})}),i&&t.jsxRuntimeExports.jsx(t.Modal,{close:o,children:t.jsxRuntimeExports.jsx(hs,{title:d})})]})},hs=({title:d="Copy Product Link"})=>{const{setIsOpenModal:i}=t.useShareLinkStore(),{notifications:o,setNotifications:s}=t.useNotificationStore(),{setIsOpen:e}=t.useModalStore(),l=window.location.href;function c(){navigator.clipboard.writeText(l),s([...o,{id:t.v4(),message:"Link copied to clipboard",status:"success"}])}function x(){e(!1),setTimeout(()=>{i(!1),e(!0)},300)}function j(_,P){return _.length>P?_.slice(0,P)+"...":_}return t.jsxRuntimeExports.jsxs("div",{className:Q.modal,onClick:_=>_.stopPropagation(),children:[t.jsxRuntimeExports.jsxs("div",{className:Q.header,children:[t.jsxRuntimeExports.jsx("div",{className:Q.title,children:d}),t.jsxRuntimeExports.jsx(t.Icon,{name:"X",fill:"#757575",onClick:x,hoverable:!0})]}),t.jsxRuntimeExports.jsxs("div",{className:Q.copyWrapper,children:[t.jsxRuntimeExports.jsxs(t.Button$1,{type:"Secondary",onClick:c,style:{flex:1},children:[t.jsxRuntimeExports.jsx("div",{className:Q.copyText,children:j(l,100)}),t.jsxRuntimeExports.jsx("div",{className:Q.copyTextMobile,children:j(l,40)}),t.jsxRuntimeExports.jsx("div",{className:Q.copyTextMiniMobile,children:j(l,20)})]}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:c,children:o.find(_=>_.message==="Link copied to clipboard")?t.jsxRuntimeExports.jsx(t.Icon,{name:"Check"}):t.jsxRuntimeExports.jsx(t.Icon,{name:"Copy"})})]})]})},js="_accordion_1s1lq_1",gs="_header_1s1lq_9",fs="_icon_1s1lq_18",Es="_open_1s1lq_21",_s="_content_1s1lq_25",J={accordion:js,header:gs,icon:fs,open:Es,content:_s},Rs=({title:d,content:i,defaultOpen:o=!1})=>{const[s,e]=h.useState(o),[l,c]=h.useState(0),x=h.useRef(null),j=()=>{e(!s)};return h.useEffect(()=>{x.current&&c(s?x.current.scrollHeight:0)},[s]),t.jsxRuntimeExports.jsxs("div",{className:J.accordion,children:[t.jsxRuntimeExports.jsxs("div",{className:J.header,onClick:j,children:[t.jsxRuntimeExports.jsx("h5",{id:"h5",children:d}),t.jsxRuntimeExports.jsx("div",{className:t.clx(J.icon,{[J.open]:s}),children:t.jsxRuntimeExports.jsx(t.Icon,{name:"CaretDown"})})]}),t.jsxRuntimeExports.jsx("div",{ref:x,className:J.content,style:{height:`${l}px`},children:t.jsxRuntimeExports.jsx("p",{id:"p",children:i})})]})},ct=({children:d,path:i,className:o,target:s="_self",id:e})=>{if(window.location.pathname.includes("/admin/builder"))return t.jsxRuntimeExports.jsx("div",{className:o,role:"link",style:{cursor:"pointer"},id:e,children:d});const l=t.useNavigate(),c=/^https?:\/\//.test(i),x=j=>{c||s==="_blank"?s==="_blank"?window.open(i,"_blank"):window.open(i,"_self"):(j.preventDefault(),l(i))};return t.jsxRuntimeExports.jsx("div",{onClick:x,className:o,role:"link",style:{cursor:"pointer"},id:e,children:d})},vs="_buttonsBlock_1b2rb_1",ys={buttonsBlock:vs},bs=d=>{var _,P;const{setIsOpen:i,setModalType:o,productId:s}=d,{cart:e}=t.useCart(),{pageContext:l}=t.usePagesStore(),c=(_=l==null?void 0:l.listings)==null?void 0:_.find(g=>g.id===s);if(!c)return null;const x=(P=l==null?void 0:l.products)==null?void 0:P.find(g=>g.uniquePath===c.productData.uniquePath);if(!x)return null;const j=e.parts.find(g=>g.productId===x.id);return t.jsxRuntimeExports.jsxs("div",{className:ys.buttonsBlock,onClick:g=>g.stopPropagation(),children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",style:{width:"100%"},onClick:()=>{o("Add To Cart"),i(!0)},children:j?"Add More":"Add To Cart"}),t.jsxRuntimeExports.jsx(t.Button$1,{type:"Primary",onClick:()=>{o("Buy Now"),i(!0)},children:"Buy"})]})},Is="_wrapper_27wzz_1",Ss="_logo_27wzz_8",Ns="_info_27wzz_12",Z={wrapper:Is,logo:Ss,info:Ns},Cs=({date:d})=>{const{general:i}=t.useGeneralStore();if(!i)return t.jsxRuntimeExports.jsx(t.jsxRuntimeExports.Fragment,{});function o(s){const e=new Date(s),l={month:"short",day:"2-digit",year:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1};return e.toLocaleDateString("en-US",l)}return t.jsxRuntimeExports.jsxs("div",{className:Z.wrapper,children:[t.jsxRuntimeExports.jsx("div",{className:Z.logo,children:i.info.logo?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${i.info.logo.cfId}/w=500,h=500`,alt:"image",style:{objectFit:"contain",width:"48px",height:"48px"}}):t.jsxRuntimeExports.jsx(t.Icon,{name:"Image",width:48,height:48})}),t.jsxRuntimeExports.jsxs("div",{className:Z.info,children:[t.jsxRuntimeExports.jsx("h3",{id:"h4",children:i.info.name}),t.jsxRuntimeExports.jsx("p",{id:"p",children:o(d)})]})]})},Ps="_variants_puxd1_80",ks="_variant_puxd1_80",ws="_stock_puxd1_98",Bs="_variantInfo_puxd1_105",Ms="_chargeTypes_puxd1_165",$s="_charge_puxd1_165",Ts="_chargeActive_puxd1_190",qs="_title_puxd1_198",Os="_modal_puxd1_204",As="_header_puxd1_224",Ds="_productOptions_puxd1_232",Ls="_loading_puxd1_236",F={variants:Ps,variant:ks,stock:ws,variantInfo:Bs,chargeTypes:Ms,charge:$s,chargeActive:Ts,title:qs,modal:Os,header:As,productOptions:Ds,loading:Ls},Us=d=>{var a;const{pageContext:i}=t.usePagesStore(),o=(a=i==null?void 0:i.listings)==null?void 0:a.find(r=>r.id===d.productId),[s,e]=h.useState(!0),[l,c]=h.useState(null),x=(l==null?void 0:l.variants[0])||null,[j,_]=h.useState(x!=null&&x.chargeTypes&&x.chargeTypes.length>1?x.chargeTypes[0]:"ONE_TIME"),{addProducts:P}=t.useCart(),{setIsOpen:g}=t.useModalStore();return h.useEffect(()=>{(async()=>{e(!0);const n=await t.getDynamicPage(encodeURIComponent(`/product/${o.productData.uniquePath}`));P(n==null?void 0:n.data.products),c(n==null?void 0:n.data.products[0]),e(!1)})()},[]),h.useEffect(()=>{g(!0)},[]),t.jsxRuntimeExports.jsx(t.Modal,{close:d.setIsOpen,children:t.jsxRuntimeExports.jsxs("div",{className:F.modal,onClick:r=>r.stopPropagation(),children:[s&&t.jsxRuntimeExports.jsx("div",{className:F.loading,children:t.jsxRuntimeExports.jsx(t.Loader,{})}),d.type==="Add To Cart"&&l&&x&&!s&&t.jsxRuntimeExports.jsx(zs,{variants:l.variants,activeVariant:x,activeChargeType:j,setActiveChargeType:_,productId:l.id,setIsOpen:d.setIsOpen}),d.type==="Buy Now"&&l&&!s&&t.jsxRuntimeExports.jsx(Vs,{product:l,setIsOpen:d.setIsOpen})]})})},zs=d=>{const{variants:i,activeChargeType:o,setActiveChargeType:s,activeVariant:e,productId:l,setIsOpen:c}=d,{cart:x,addProductToCart:j,addProducts:_,updateQuantityOfProduct:P}=t.useCart(),{notifications:g,setNotifications:a}=t.useNotificationStore(),{pageContext:r}=t.usePagesStore(),{setIsOpen:n}=t.useModalStore(),B=()=>{n(!1),setTimeout(()=>{c(!1)},300)};async function f(E){const y=x.parts.find(S=>S.productId===d.productId&&S.productVariantId===E);if(y)P({productId:l,productVariantId:E,quantity:y.quantity+1});else{r!=null&&r.products&&(console.log("pageContext.products in product card modal",r.products),_(r.products));try{j({productId:l,productVariantId:E,quantity:1}),a([...g,{id:t.v4(),message:"Product added to cart",status:"success"}])}catch(S){console.log(S,"error"),a([...g,{id:t.v4(),message:`Product failed to add to cart: ${S}`,status:"error"}])}}}return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsxs("div",{className:F.header,children:[t.jsxRuntimeExports.jsx("div",{id:"h3",children:"Choose a Variant"}),t.jsxRuntimeExports.jsx(t.Icon,{name:"X",width:24,height:24,fill:"var(--text-secondary)",hoverable:!0,onClick:B})]}),e.chargeTypes&&e.chargeTypes.length>1&&t.jsxRuntimeExports.jsx("div",{className:F.chargeTypes,children:e.chargeTypes.map(E=>t.jsxRuntimeExports.jsx("div",{className:t.clx(F.charge,{[F.chargeActive]:o===E}),onClick:()=>s(E),children:K[E]},E))}),t.jsxRuntimeExports.jsx("div",{className:F.variants,children:i.map(E=>{var y,S,O;return t.jsxRuntimeExports.jsxs("div",{className:t.clx(F.variant),onClick:()=>{f(E.id),c(!1)},children:[t.jsxRuntimeExports.jsxs("div",{className:F.variantInfo,children:[t.jsxRuntimeExports.jsx("span",{className:F.title,children:E.name}),t.jsxRuntimeExports.jsx("span",{children:t.formatPrice({amount:o==="ONE_TIME"?E.price.amount:E.subscriptionSettings?E.subscriptionSettings.price.amount:0,currency:o==="ONE_TIME"?E.price.currency:((y=E.subscriptionSettings)==null?void 0:y.price.currency)||"USD"})})]}),t.jsxRuntimeExports.jsx("div",{children:o==="ONE_TIME"&&t.jsxRuntimeExports.jsxs("span",{className:F.stock,children:[(S=E.quantity.restrictions)!=null&&S.max||E.quantity.available!==void 0?((O=E.quantity.restrictions)==null?void 0:O.max)||E.quantity.available:"∞"," ","in stock"]})})]},E.id)})})]})},Vs=d=>{const{product:i,setIsOpen:o}=d,{setIsOpen:s}=t.useModalStore(),e=()=>{s(!1),setTimeout(()=>{o(!1)},300)};return t.jsxRuntimeExports.jsxs(t.jsxRuntimeExports.Fragment,{children:[t.jsxRuntimeExports.jsxs("div",{className:F.header,children:[t.jsxRuntimeExports.jsxs("div",{id:"h3",children:["Buy ",t.splitTextIntoSpans(i.name)]}),t.jsxRuntimeExports.jsx(t.Icon,{name:"X",width:24,height:24,fill:"var(--text-secondary)",hoverable:!0,onClick:e,style:{minWidth:24,minHeight:24}})]}),t.jsxRuntimeExports.jsx("div",{className:F.productOptions,children:t.jsxRuntimeExports.jsx(st,{product:i,setIsOpen:o})})]})},Hs="_contentModal_2a136_1",Fs="_modalTop_2a136_13",Ys="_loading_2a136_19",Gs="_modalCards_2a136_27",Ws="_modalImage_2a136_32",Xs="_card_2a136_37",Qs="_cardInfo_2a136_48",Js="_cardButtons_2a136_55",Ks="_title_2a136_61",Zs="_blockImage_2a136_68",V={contentModal:Hs,modalTop:Fs,loading:Ys,modalCards:Gs,modalImage:Ws,card:Xs,cardInfo:Qs,cardButtons:Js,title:Ks,blockImage:Zs},tn=d=>{const{setIsOpen:i,pageContext:o,groupData:s,setProductId:e,setIsProductModalOpen:l}=d,[c,x]=h.useState(null),[j,_]=h.useState(!0),{setIsOpen:P}=t.useModalStore();h.useEffect(()=>{var n;_(!0);const r=(n=o.listings)==null?void 0:n.filter(B=>s.listingIdList.includes(B.id));r&&x([...r]),_(!1)},[o]),h.useEffect(()=>{P(!0)},[]);const g=()=>{P(!1),setTimeout(()=>{i(!1)},300)};function a(r){return r.productData.compareAtPrice?r.productData.compareAtPrice.amount:0}return t.jsxRuntimeExports.jsx(t.Modal,{close:()=>i(!1),children:t.jsxRuntimeExports.jsxs("div",{className:V.contentModal,onClick:r=>r.stopPropagation(),children:[t.jsxRuntimeExports.jsxs("div",{className:V.modalTop,children:[t.jsxRuntimeExports.jsx("span",{className:V.title,id:"h4",children:t.splitTextIntoSpans(s.name)}),t.jsxRuntimeExports.jsx(t.Icon,{name:"X",hoverable:!0,onClick:g})]}),!j&&c&&t.jsxRuntimeExports.jsx("div",{className:V.modalCards,children:c.map(r=>t.jsxRuntimeExports.jsxs("div",{className:V.card,children:[t.jsxRuntimeExports.jsx("div",{children:r.productData.images[0]?t.jsxRuntimeExports.jsx("img",{src:`https://imagedelivery.net/${r.productData.images[0].cfId}/w=500`,alt:"",width:64,height:64,className:V.modalImage}):t.jsxRuntimeExports.jsx("div",{className:t.clx(V.blockImage,V.modalImage),children:t.jsxRuntimeExports.jsx(t.Icon,{name:"Image"})})}),t.jsxRuntimeExports.jsxs("div",{className:V.cardInfo,children:[t.jsxRuntimeExports.jsxs("span",{className:V.name,id:"h5",children:[t.splitTextIntoSpans(r.productData.name)," $",r.productData.minPrice.amount," ","- $",a(r)]}),r.productData.shortDescription&&t.jsxRuntimeExports.jsx("span",{className:V.short,id:"md",children:t.splitTextIntoSpans(r.productData.shortDescription)}),t.jsxRuntimeExports.jsx("span",{})]}),t.jsxRuntimeExports.jsxs("div",{className:V.cardButtons,children:[t.jsxRuntimeExports.jsx(t.Button$1,{type:"Secondary",onClick:()=>{e(r.id),i(!1),l(!0)},children:"Buy"}),t.jsxRuntimeExports.jsx(ct,{path:`/product/${r.productData.uniquePath}`,children:t.jsxRuntimeExports.jsx(t.Button$1,{type:"Primary",children:"View Details"})})]})]},r.id))}),j&&t.jsxRuntimeExports.jsx("div",{className:V.loading,children:t.jsxRuntimeExports.jsx(t.Loader,{})})]})})};exports.Button=t.Button$1;exports.ChooseImage=t.ChooseImage;exports.ChooseImageModal=t.ChooseImageModal;exports.Icon=t.Icon;exports.InputSettings=t.Input;exports.InputUI=t.Input$1;exports.ItemsSettings=t.ItemsSettings;exports.Loader=t.Loader;exports.Modal=t.Modal;exports.RadioUI=t.Radio;exports.RangeSelector=t.RangeSelector;exports.Select=t.Select;exports.SelectInfiniteList=t.SelectInfiniteList;exports.SelectUI=t.Select$1;exports.Switch=t.Switch;exports.TextSettings=t.TextSettings;exports.TextareaSettings=t.Textarea;exports.TextareaUI=t.Textarea$1;exports.TypesText=t.TypesText;exports.Accordion=Rs;exports.BurgerMenuButton=at;exports.ButtonTypeSettings=et;exports.ButtonsSettings=ne;exports.CategorySettings=$t;exports.ChargeTypes=K;exports.EmptyCart=ot;exports.FormSettings=Xt;exports.GroupCardModal=tn;exports.HeaderButtons=is;exports.LayoutSettings=Rt;exports.Link=ct;exports.ListingSelector=oe;exports.MetaInfoPost=Cs;exports.PagesMobileMenu=os;exports.PagesMobileModal=rt;exports.PagesSettings=Gt;exports.ProductCardButtons=bs;exports.ProductCardModal=Us;exports.ProductOptions=st;exports.ShareLink=ms;exports.ShoppingButton=nt;exports.ShoppingModalCart=it;exports.UserInfo=tt;
|