@wix/astro 2.21.0 → 2.23.0

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.
@@ -0,0 +1,26 @@
1
+ // src/utils/saveSessionTokensToCookie.ts
2
+ import { WIX_CLIENT_ID } from "astro:env/client";
3
+
4
+ // src/utils/sessionCookie.ts
5
+ var SESSION_COOKIE_NAME = "wixSession";
6
+ var SESSION_COOKIE_OPTIONS = {
7
+ path: "/",
8
+ secure: true,
9
+ ...import.meta.env.DEV && {
10
+ maxAge: 10800,
11
+ sameSite: "none"
12
+ }
13
+ };
14
+
15
+ // src/utils/saveSessionTokensToCookie.ts
16
+ function saveSessionTokensToCookie(context, tokens) {
17
+ context.cookies.set(
18
+ SESSION_COOKIE_NAME,
19
+ { clientId: WIX_CLIENT_ID, tokens },
20
+ SESSION_COOKIE_OPTIONS
21
+ );
22
+ }
23
+
24
+ export {
25
+ saveSessionTokensToCookie
26
+ };
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  saveSessionTokensToCookie
3
- } from "../chunk-HPW4ZAEJ.js";
3
+ } from "../chunk-DZHZMKUF.js";
4
4
  import {
5
5
  contextualClient,
6
6
  elevatedContextualClient
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  saveSessionTokensToCookie
3
- } from "../chunk-HPW4ZAEJ.js";
3
+ } from "../chunk-DZHZMKUF.js";
4
4
  import {
5
5
  object,
6
6
  string
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  saveSessionTokensToCookie
3
- } from "../chunk-HPW4ZAEJ.js";
3
+ } from "../chunk-DZHZMKUF.js";
4
4
  import {
5
5
  returnToQueryParamName
6
6
  } from "../chunk-24J7STEA.js";
@@ -3,17 +3,48 @@ import { resolveContext } from "@wix/sdk-runtime/context";
3
3
 
4
4
  // src/runtime/client/utils.ts
5
5
  import { headlessSite } from "@wix/headless-site";
6
- import { createClient } from "@wix/sdk";
7
- import { SiteSessionAuth } from "@wix/sdk/auth/site-session";
6
+ import { createClient, EMPTY_TOKENS, OAuthStrategy } from "@wix/sdk";
7
+
8
+ // src/utils/sessionCookie.ts
9
+ var SESSION_COOKIE_NAME = "wixSession";
10
+ var SESSION_COOKIE_OPTIONS = {
11
+ path: "/",
12
+ secure: true,
13
+ ...import.meta.env.DEV && {
14
+ maxAge: 10800,
15
+ sameSite: "none"
16
+ }
17
+ };
18
+
19
+ // src/runtime/client/utils.ts
8
20
  function getSessionClient(options) {
21
+ const cookieStorage = {
22
+ getTokens: () => getCookieAsJson(SESSION_COOKIE_NAME)?.tokens ?? EMPTY_TOKENS,
23
+ setTokens: (tokens) => {
24
+ document.cookie = buildSessionCookieString(options.clientId, tokens);
25
+ }
26
+ };
9
27
  return createClient({
10
- auth: SiteSessionAuth({
11
- tokens: getCookieAsJson("wixSession")?.tokens,
28
+ auth: OAuthStrategy({
29
+ tokenStorage: cookieStorage,
12
30
  ...options
13
31
  }),
14
32
  host: headlessSite.host({})
15
33
  });
16
34
  }
35
+ function buildSessionCookieString(clientId, tokens) {
36
+ const cookieValue = encodeURIComponent(
37
+ JSON.stringify({ clientId, tokens })
38
+ );
39
+ let cookie = `${SESSION_COOKIE_NAME}=${cookieValue}; path=${SESSION_COOKIE_OPTIONS.path}; ${SESSION_COOKIE_OPTIONS.secure ? "secure;" : ""}`;
40
+ if (SESSION_COOKIE_OPTIONS.sameSite) {
41
+ cookie += ` samesite=${SESSION_COOKIE_OPTIONS.sameSite};`;
42
+ }
43
+ if (SESSION_COOKIE_OPTIONS.maxAge != null) {
44
+ cookie += ` max-age=${SESSION_COOKIE_OPTIONS.maxAge}`;
45
+ }
46
+ return cookie;
47
+ }
17
48
  function getCookieAsJson(name) {
18
49
  const cookies = document.cookie.split("; ");
19
50
  const cookie = cookies.find((row) => row.startsWith(`${name}=`));
@@ -35,6 +66,9 @@ function isCookieValue(value) {
35
66
  if (value == null || typeof value !== "object") {
36
67
  return false;
37
68
  }
69
+ if (!("clientId" in value) || typeof value.clientId !== "string") {
70
+ return false;
71
+ }
38
72
  if (!("tokens" in value)) {
39
73
  return false;
40
74
  }
@@ -8,7 +8,14 @@ interface TrustedBackofficePage {
8
8
  }
9
9
  interface Options {
10
10
  id: string;
11
+ activeSidebarPageId?: string;
11
12
  component: string;
13
+ fullPage?: boolean;
14
+ hideInSidebar?: boolean;
15
+ pageCategoryId?: string;
16
+ previousRoutePaths?: string[];
17
+ priority?: number;
18
+ requiredPermission?: string;
12
19
  routePath: string;
13
20
  title: string;
14
21
  }
@@ -8,7 +8,14 @@ interface TrustedBackofficePage {
8
8
  }
9
9
  interface Options {
10
10
  id: string;
11
+ activeSidebarPageId?: string;
11
12
  component: string;
13
+ fullPage?: boolean;
14
+ hideInSidebar?: boolean;
15
+ pageCategoryId?: string;
16
+ previousRoutePaths?: string[];
17
+ priority?: number;
18
+ requiredPermission?: string;
12
19
  routePath: string;
13
20
  title: string;
14
21
  }
@@ -2,7 +2,7 @@ import { createRequire as _createRequire } from 'node:module';
2
2
  const require = _createRequire(import.meta.url);
3
3
  import {
4
4
  trustedBackofficePage
5
- } from "./chunk-P4K55M3B.js";
5
+ } from "./chunk-2K65FTYR.js";
6
6
  import {
7
7
  app,
8
8
  customElement,
@@ -18,7 +18,7 @@ import {
18
18
  siteComponentPanel,
19
19
  sitePlugin,
20
20
  webhook
21
- } from "./chunk-UD4RG5I6.js";
21
+ } from "./chunk-C2WQBOJF.js";
22
22
  import {
23
23
  init_esm_shims
24
24
  } from "./chunk-2K4KOKVV.js";
@@ -2,10 +2,10 @@ import { createRequire as _createRequire } from 'node:module';
2
2
  const require = _createRequire(import.meta.url);
3
3
  import {
4
4
  extensions
5
- } from "./chunk-ZJHY3W6B.js";
5
+ } from "./chunk-LKZKWQSB.js";
6
6
  import {
7
7
  app
8
- } from "./chunk-UD4RG5I6.js";
8
+ } from "./chunk-C2WQBOJF.js";
9
9
  import "./chunk-2K4KOKVV.js";
10
10
  export {
11
11
  app,
@@ -2,7 +2,7 @@ import { createRequire as _createRequire } from 'node:module';
2
2
  const require = _createRequire(import.meta.url);
3
3
  import {
4
4
  viteExternalsPlugin
5
- } from "./chunk-UD4RG5I6.js";
5
+ } from "./chunk-C2WQBOJF.js";
6
6
  import {
7
7
  appendToDevServerUrl,
8
8
  build,
@@ -310,7 +310,14 @@ var createIntegration = () => {
310
310
  compType: "BACK_OFFICE_PAGE",
311
311
  compData: {
312
312
  backOfficePage: {
313
+ activeSidebarPageId: extension.options.activeSidebarPageId,
314
+ fullPage: extension.options.fullPage,
315
+ hideInSidebar: extension.options.hideInSidebar,
313
316
  hostingPlatform: "BUSINESS_MANAGER",
317
+ pageCategoryId: extension.options.pageCategoryId,
318
+ previousRoutePaths: extension.options.previousRoutePaths,
319
+ priority: extension.options.priority,
320
+ requiredPermission: extension.options.requiredPermission,
314
321
  routePath: extension.options.routePath,
315
322
  scriptAsset: {
316
323
  containerId: model.appId,
@@ -352,4 +359,4 @@ export {
352
359
  createIntegration,
353
360
  trustedBackofficePage
354
361
  };
355
- //# sourceMappingURL=chunk-P4K55M3B.js.map
362
+ //# sourceMappingURL=chunk-2K65FTYR.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../astro-trusted-backoffice-extensions/src/integration.ts","../../../astro-trusted-backoffice-extensions/src/utils/getAssetUrl.ts","../../../astro-trusted-backoffice-extensions/src/utils/getSupportedExtensions.ts","../../../astro-trusted-backoffice-extensions/src/vite/getViteConfig.ts","../../../astro-trusted-backoffice-extensions/src/vite/registerComponentEntryVirtualRoute.ts","../../../astro-trusted-backoffice-extensions/src/utils/getTrustedBackofficeComponent.ts","../../../astro-trusted-backoffice-extensions/src/vite/registerComponentWrapperVirtualRoute.ts","../../../astro-trusted-backoffice-extensions/src/vite/virtualModulesPlugin.ts","../../../astro-trusted-backoffice-extensions/src/builders/trustedBackofficePage.ts","../../../astro-trusted-backoffice-extensions/src/index.ts"],"sourcesContent":["import { ok } from 'node:assert';\nimport type { Model, WixIntegration } from '@wix/astro-core';\nimport type { DevCenterBackofficePage } from '@wix/dev-center-schemas';\nimport type { RollupBuildOutput } from '@wix/vite-utils';\nimport type { ViteDevServer } from 'vite';\nimport { build } from '@wix/vite-utils';\nimport { createServer } from 'vite';\nimport { getAssetUrl } from './utils/getAssetUrl.js';\nimport { getSupportedExtensions } from './utils/getSupportedExtensions.js';\nimport { getViteConfig } from './vite/getViteConfig.js';\nimport { getVirtualModuleIdForComponentEntry } from './vite/registerComponentEntryVirtualRoute.js';\n\nexport const createIntegration = (): WixIntegration => {\n let model: Model | null = null;\n let customBuildOutput: null | RollupBuildOutput = null;\n let customDevServer: null | ViteDevServer = null;\n\n return {\n name: '@wix/astro/trusted-backoffice-extensions',\n hooks: {\n 'wix:model:setup'({ model: newModel }) {\n model = newModel;\n },\n async 'wix:server:start'({\n createExtensionViteConfig,\n setupExtensionProxy,\n }) {\n ok(model);\n customDevServer = await createServer(\n getViteConfig({ createExtensionViteConfig, model })\n );\n\n await customDevServer.listen();\n\n setupExtensionProxy(customDevServer);\n },\n async 'astro:server:done'() {\n ok(customDevServer);\n await customDevServer.close();\n },\n async 'wix:build:setup'({ createExtensionViteConfig, target }) {\n if (target === 'server') {\n return;\n }\n\n ok(model);\n const extensions = getSupportedExtensions(model);\n\n if (extensions.length === 0) {\n return;\n }\n\n customBuildOutput = await build(\n getViteConfig({\n createExtensionViteConfig,\n model,\n })\n );\n },\n async 'wix:app-manifest:setup'({\n staticsUrlPlaceholder,\n updateAppManifest,\n }) {\n ok(model);\n\n const components: DevCenterBackofficePage[] = [];\n\n for (const extension of getSupportedExtensions(model)) {\n const virtualModuleId = getVirtualModuleIdForComponentEntry(\n extension.options.id\n );\n\n components.push({\n compId: extension.options.id,\n compType: 'BACK_OFFICE_PAGE',\n compData: {\n backOfficePage: {\n activeSidebarPageId: extension.options.activeSidebarPageId,\n fullPage: extension.options.fullPage,\n hideInSidebar: extension.options.hideInSidebar,\n hostingPlatform: 'BUSINESS_MANAGER',\n pageCategoryId: extension.options.pageCategoryId,\n previousRoutePaths: extension.options.previousRoutePaths,\n priority: extension.options.priority,\n requiredPermission: extension.options.requiredPermission,\n routePath: extension.options.routePath,\n scriptAsset: {\n containerId: model.appId,\n exportedName: extension.options.id,\n scriptType: 'MODULE',\n url: getAssetUrl({\n baseUrl: staticsUrlPlaceholder,\n buildOutput: customBuildOutput,\n fileName: virtualModuleId,\n viteDevServer: customDevServer,\n }),\n },\n title: extension.options.title,\n },\n },\n });\n }\n\n updateAppManifest({\n components,\n });\n },\n },\n };\n};\n","import type { RollupBuildOutput } from '@wix/vite-utils';\nimport type { ViteDevServer } from 'vite';\nimport {\n appendToDevServerUrl,\n getAssetUrlForModuleId,\n getChunkForModuleId,\n} from '@wix/vite-utils';\n\nexport function getAssetUrl({\n baseUrl,\n buildOutput,\n fileName,\n viteDevServer,\n}: {\n baseUrl: string;\n buildOutput: null | RollupBuildOutput;\n fileName: string;\n viteDevServer: null | ViteDevServer;\n}) {\n if (buildOutput) {\n const chunk = getChunkForModuleId({\n buildOutput,\n moduleId: `\\0${fileName}`,\n });\n\n return appendToDevServerUrl(baseUrl, chunk.fileName);\n }\n\n if (viteDevServer) {\n return getAssetUrlForModuleId({\n baseUrl,\n devServer: viteDevServer,\n moduleId: fileName,\n });\n }\n\n throw new Error('Unknown error: no build output or vite dev server');\n}\n","import type { BaseExtension, Model } from '@wix/astro-core';\nimport type { SupportedExtension } from '../types.js';\n\nexport function getSupportedExtensions(model: Model) {\n return model.extensions.filter(isSupportedExtensions);\n}\n\nfunction isSupportedExtensions(\n extension: BaseExtension\n): extension is SupportedExtension {\n return extension.type === 'TrustedBackofficePage';\n}\n","import type { CreateExtensionViteConfig, Model } from '@wix/astro-core';\nimport { viteExternalsPlugin } from 'vite-plugin-externals';\nimport { getSupportedExtensions } from '../utils/getSupportedExtensions.js';\nimport {\n getVirtualModuleIdForComponentEntry,\n wrapComponentRuntimePath,\n} from './registerComponentEntryVirtualRoute.js';\nimport { hmrRuntimePath } from './registerComponentWrapperVirtualRoute.js';\nimport { virtualModulesPlugin } from './virtualModulesPlugin.js';\n\nexport function getViteConfig({\n createExtensionViteConfig,\n model,\n}: {\n createExtensionViteConfig: CreateExtensionViteConfig;\n model: Model;\n}) {\n const componentEntries = getSupportedExtensions(model).map((x) =>\n getVirtualModuleIdForComponentEntry(x.options.id)\n );\n\n return createExtensionViteConfig({\n name: 'trusted-backoffice',\n config: {\n build: {\n rollupOptions: {\n input: componentEntries,\n },\n },\n experimental: {\n renderBuiltUrl(filename, { hostId, hostType }) {\n if (hostType !== 'js') {\n return { relative: true };\n }\n\n return {\n runtime: `import.meta.url.replace(\"${hostId}\", \"${filename}\")`,\n };\n },\n },\n optimizeDeps: {\n entries: [\n wrapComponentRuntimePath,\n hmrRuntimePath,\n ...componentEntries,\n ],\n },\n plugins: [\n virtualModulesPlugin({ model }),\n viteExternalsPlugin({\n react: 'React',\n 'react-dom': 'ReactDOM',\n }),\n ],\n },\n });\n}\n","import type { Model } from '@wix/astro-core';\nimport type { ParamData, VirtualRouter } from '@wix/vite-virtual-router-plugin';\nimport { normalizePath } from '@wix/vite-utils';\nimport { outdent } from 'outdent';\nimport { getTrustedBackofficeComponent } from '../utils/getTrustedBackofficeComponent.js';\nimport { getVirtualModuleIdForComponentWrapper } from './registerComponentWrapperVirtualRoute.js';\n\ninterface Params extends ParamData {\n id: string;\n}\n\nexport const wrapComponentRuntimePath = normalizePath(\n new URL(\n '../dependencies/astro-trusted-backoffice-extensions/browser-runtime/wrapComponent.js',\n import.meta.url\n )\n);\n\nexport function getVirtualModuleIdForComponentEntry(componentId: string) {\n return `wix/component/backoffice/entries/${componentId}`;\n}\n\nexport function registerComponentEntryVirtualRoute({\n model,\n router,\n}: {\n model: Model;\n router: VirtualRouter;\n}) {\n router.route<Params>(\n getVirtualModuleIdForComponentEntry(':id'),\n ({ id }, { command }) => {\n const extension = getTrustedBackofficeComponent(model, id);\n\n if (extension) {\n const componentPath = getVirtualModuleIdForComponentWrapper(\n extension.options.id\n );\n\n if (command === 'build') {\n return getComponentBuildTemplate({\n componentId: extension.options.id,\n componentPath,\n });\n }\n\n return getComponentServeTemplate({\n componentId: extension.options.id,\n componentPath,\n });\n }\n\n return null;\n }\n );\n}\n\nfunction getComponentBuildTemplate({\n componentId,\n componentPath,\n}: {\n componentId: string;\n componentPath: string;\n}) {\n return outdent`\n import { wrapComponent } from '${wrapComponentRuntimePath}'\n\n wrapComponent({\n componentId: '${componentId}',\n loadComponent: () => import('${componentPath}'),\n });\n `;\n}\n\nfunction getComponentServeTemplate({\n componentId,\n componentPath,\n}: {\n componentId: string;\n componentPath: string;\n}) {\n return outdent`\n import { wrapComponent } from '${wrapComponentRuntimePath}'\n\n wrapComponent({\n componentId: '${componentId}',\n loadComponent: () => import('${componentPath}'),\n });\n `;\n}\n","import type { Model } from '@wix/astro-core';\nimport { getSupportedExtensions } from './getSupportedExtensions.js';\n\nexport function getTrustedBackofficeComponent(model: Model, id: string) {\n return getSupportedExtensions(model).find((ext) => ext.options.id === id);\n}\n","import { join } from 'node:path';\nimport type { Model } from '@wix/astro-core';\nimport type { ParamData, VirtualRouter } from '@wix/vite-virtual-router-plugin';\nimport { normalizePath } from '@wix/vite-utils';\nimport { outdent } from 'outdent';\nimport { getTrustedBackofficeComponent } from '../utils/getTrustedBackofficeComponent.js';\n\ninterface Params extends ParamData {\n id: string;\n}\n\nexport const hmrRuntimePath = normalizePath(\n new URL(\n '../dependencies/astro-trusted-backoffice-extensions/browser-runtime/hmr.js',\n import.meta.url\n )\n);\n\nexport function getVirtualModuleIdForComponentWrapper(componentId: string) {\n return `wix/component/backoffice/wrappers/${componentId}`;\n}\n\nexport function registerComponentWrapperVirtualRoute({\n model,\n router,\n}: {\n model: Model;\n router: VirtualRouter;\n}) {\n router.route<Params>(\n getVirtualModuleIdForComponentWrapper(':id'),\n ({ id }, { command }) => {\n const extension = getTrustedBackofficeComponent(model, id);\n\n if (extension) {\n const componentPath = normalizePath(\n join(model.srcDir, extension.options.component)\n );\n\n if (command === 'build') {\n return getComponentBuildTemplate({\n componentPath,\n });\n }\n\n return getComponentServeTemplate({\n componentPath,\n });\n }\n\n return null;\n }\n );\n}\n\nfunction getComponentBuildTemplate({\n componentPath,\n}: {\n componentPath: string;\n}) {\n return outdent`\n export { default } from '${componentPath}';\n `;\n}\n\nfunction getComponentServeTemplate({\n componentPath,\n}: {\n componentPath: string;\n}) {\n return outdent`\n import { createComponentHmrWrapper } from '${hmrRuntimePath}';\n import OriginalComponent from '${componentPath}';\n\n let WrappedComponent = OriginalComponent;\n\n if (import.meta.hot) {\n import.meta.hot.accept('${componentPath}', (newModule) => {\n if (newModule?.default) {\n import.meta.hot.data.setComponent?.(newModule?.default);\n }\n });\n\n WrappedComponent = createComponentHmrWrapper(OriginalComponent, import.meta.hot.data);\n }\n\n export default WrappedComponent;\n `;\n}\n","import type { Model } from '@wix/astro-core';\nimport {\n createVirtualRouter,\n viteVirtualRouterPlugin,\n} from '@wix/vite-virtual-router-plugin';\nimport { registerComponentEntryVirtualRoute } from './registerComponentEntryVirtualRoute.js';\nimport { registerComponentWrapperVirtualRoute } from './registerComponentWrapperVirtualRoute.js';\n\nexport function virtualModulesPlugin({ model }: { model: Model }) {\n const router = createVirtualRouter();\n\n registerComponentEntryVirtualRoute({ model, router });\n registerComponentWrapperVirtualRoute({ model, router });\n\n return viteVirtualRouterPlugin({\n name: 'wix:trusted-backoffice-virtual-modules-plugin',\n router,\n });\n}\n","export interface TrustedBackofficePage {\n type: 'TrustedBackofficePage';\n options: Options;\n}\n\ninterface Options {\n id: string;\n activeSidebarPageId?: string;\n component: string;\n fullPage?: boolean;\n hideInSidebar?: boolean;\n pageCategoryId?: string;\n previousRoutePaths?: string[];\n priority?: number;\n requiredPermission?: string;\n routePath: string;\n title: string;\n}\n\nexport function trustedBackofficePage(options: Options): TrustedBackofficePage {\n return {\n type: 'TrustedBackofficePage',\n options,\n };\n}\n","export { createIntegration as default } from './integration.js';\n\n// builders\nexport { trustedBackofficePage } from './builders/trustedBackofficePage.js';\n"],"mappings":"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","names":["getComponentBuildTemplate","getComponentServeTemplate"]}
@@ -5217,9 +5217,6 @@ function getViteConfig({
5217
5217
  entries: [setupWebhookPath, setupServicePluginPath, ...webhookEntries]
5218
5218
  },
5219
5219
  plugins: [virtualModulesPlugin({ model })],
5220
- resolve: {
5221
- dedupe: ["@wix/sdk-context"]
5222
- },
5223
5220
  server: { middlewareMode: true },
5224
5221
  ssr: {
5225
5222
  noExternal: true
@@ -5716,6 +5713,13 @@ function createExtensionViteConfigFactory({
5716
5713
  define: {
5717
5714
  "import.meta.env.WIX_CLIENT_ID": JSON.stringify(env2.WIX_CLIENT_ID)
5718
5715
  },
5716
+ publicDir: false,
5717
+ resolve: {
5718
+ // normally there should only be a single copy of `@wix/sdk-context` in a
5719
+ // bundle, but there can be exceptions like using a symlinked `@wix/astro`
5720
+ // on another package
5721
+ dedupe: ["@wix/sdk-context"]
5722
+ },
5719
5723
  root: astroConfig.root,
5720
5724
  server: {
5721
5725
  cors: true,
@@ -6395,7 +6399,6 @@ var createIntegration2 = ({
6395
6399
  include: [
6396
6400
  "@wix/sdk-runtime/context",
6397
6401
  "@wix/dashboard/internal",
6398
- "@wix/sdk-context",
6399
6402
  "@wix/sdk",
6400
6403
  "@wix/sdk/auth/site-session",
6401
6404
  "@wix/headless-site",
@@ -23705,4 +23708,4 @@ export {
23705
23708
  createIntegration6,
23706
23709
  siteComponent
23707
23710
  };
23708
- //# sourceMappingURL=chunk-UD4RG5I6.js.map
23711
+ //# sourceMappingURL=chunk-C2WQBOJF.js.map