{"version":3,"file":"index.4X_WjwQQ.js","sources":["../../../../../../src/lib/utils/layout-store/index.ts"],"sourcesContent":["import { writable, get, type Writable, type Readable } from \"svelte/store\"\nimport type { CustomPageOptions } from \"./types\"\nimport type { Page } from \"@sveltejs/kit\"\nimport { page } from \"$app/stores\"\n\n// Stores\nexport const pageOptionsStore: Writable<{\n headerFixed: boolean\n headerModal: boolean\n headerLanding: boolean\n footerVisible: boolean\n footerLanding: boolean\n applyOrientationModalVisible: boolean\n bodyStyle: \"gray\" | undefined\n path: string | undefined\n referrer: string | undefined\n modalCloseCallback: (() => Promise) | undefined\n}> = writable({\n headerFixed: true,\n headerModal: false,\n headerLanding: false,\n footerVisible: true,\n footerLanding: false,\n applyOrientationModalVisible: true,\n bodyStyle: undefined,\n path: undefined,\n referrer: undefined,\n modalCloseCallback: undefined,\n})\n\n// Page utils\nexport const customPageOptions = (opts: CustomPageOptions, pageParam?: Readable) => {\n const currentPage = pageParam ? pageParam : page\n const { url } = get(currentPage)\n\n const pageOptions = { ...get(pageOptionsStore) }\n\n pageOptionsStore.set({\n ...pageOptions,\n headerFixed: opts.headerFixed ?? pageOptions.headerFixed,\n headerModal: opts.headerModal ?? pageOptions.headerModal,\n headerLanding: opts.headerLanding ?? pageOptions.headerLanding,\n footerVisible: opts.footerVisible ?? pageOptions.footerVisible,\n applyOrientationModalVisible: opts.applyOrientationModalVisible ?? pageOptions.applyOrientationModalVisible,\n footerLanding: opts.footerLanding ?? pageOptions.footerLanding,\n bodyStyle: opts.bodyStyle ?? pageOptions.bodyStyle,\n path: url.pathname,\n referrer: opts.referrer ?? pageOptions.referrer,\n modalCloseCallback: opts.modalCloseCallback ?? pageOptions.modalCloseCallback,\n })\n}\n"],"names":["pageOptionsStore","writable","customPageOptions","opts","pageParam","currentPage","page","url","get","pageOptions"],"mappings":"6HAMO,MAAMA,EAWRC,EAAS,CACZ,YAAa,GACb,YAAa,GACb,cAAe,GACf,cAAe,GACf,cAAe,GACf,6BAA8B,GAC9B,UAAW,OACX,KAAM,OACN,SAAU,OACV,mBAAoB,MACtB,CAAC,EAGYC,EAAoB,CAACC,EAAyBC,IAA+B,CAClF,MAAAC,EAAcD,GAAwBE,EACtC,CAAE,IAAAC,CAAA,EAAQC,EAAIH,CAAW,EAEzBI,EAAc,CAAE,GAAGD,EAAIR,CAAgB,CAAE,EAE/CA,EAAiB,IAAI,CACnB,GAAGS,EACH,YAAaN,EAAK,aAAeM,EAAY,YAC7C,YAAaN,EAAK,aAAeM,EAAY,YAC7C,cAAeN,EAAK,eAAiBM,EAAY,cACjD,cAAeN,EAAK,eAAiBM,EAAY,cACjD,6BAA8BN,EAAK,8BAAgCM,EAAY,6BAC/E,cAAeN,EAAK,eAAiBM,EAAY,cACjD,UAAWN,EAAK,WAAaM,EAAY,UACzC,KAAMF,EAAI,SACV,SAAUJ,EAAK,UAAYM,EAAY,SACvC,mBAAoBN,EAAK,oBAAsBM,EAAY,kBAAA,CAC5D,CACH"}