@jasonshimmy/vite-plugin-cer-app 0.23.2 → 0.24.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.
- package/dist/cli/checks/lighthouse.d.ts +26 -0
- package/dist/cli/checks/lighthouse.d.ts.map +1 -0
- package/dist/cli/checks/lighthouse.js +121 -0
- package/dist/cli/checks/lighthouse.js.map +1 -0
- package/dist/cli/checks/links.d.ts +12 -0
- package/dist/cli/checks/links.d.ts.map +1 -0
- package/dist/cli/checks/links.js +89 -0
- package/dist/cli/checks/links.js.map +1 -0
- package/dist/cli/checks/performance.d.ts +17 -0
- package/dist/cli/checks/performance.d.ts.map +1 -0
- package/dist/cli/checks/performance.js +61 -0
- package/dist/cli/checks/performance.js.map +1 -0
- package/dist/cli/commands/check.d.ts +3 -0
- package/dist/cli/commands/check.d.ts.map +1 -0
- package/dist/cli/commands/check.js +85 -0
- package/dist/cli/commands/check.js.map +1 -0
- package/dist/cli/create/index.d.ts +11 -1
- package/dist/cli/create/index.d.ts.map +1 -1
- package/dist/cli/create/index.js +135 -65
- package/dist/cli/create/index.js.map +1 -1
- package/dist/cli/create/templates/spa/package.json.tpl +5 -3
- package/dist/cli/create/templates/ssg/cer.config.ts.tpl +2 -0
- package/dist/cli/create/templates/ssg/package.json.tpl +5 -3
- package/dist/cli/create/templates/ssr/package.json.tpl +5 -3
- package/dist/cli/index.js +2 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/plugin/build-ssg.d.ts +22 -6
- package/dist/plugin/build-ssg.d.ts.map +1 -1
- package/dist/plugin/build-ssg.js +227 -17
- package/dist/plugin/build-ssg.js.map +1 -1
- package/dist/plugin/content/parser.d.ts.map +1 -1
- package/dist/plugin/content/parser.js +54 -10
- package/dist/plugin/content/parser.js.map +1 -1
- package/dist/plugin/dev-server.d.ts +4 -1
- package/dist/plugin/dev-server.d.ts.map +1 -1
- package/dist/plugin/dev-server.js.map +1 -1
- package/dist/plugin/dts-generator.d.ts.map +1 -1
- package/dist/plugin/dts-generator.js +50 -8
- package/dist/plugin/dts-generator.js.map +1 -1
- package/dist/plugin/generated-dir.d.ts +2 -0
- package/dist/plugin/generated-dir.d.ts.map +1 -1
- package/dist/plugin/generated-dir.js +17 -6
- package/dist/plugin/generated-dir.js.map +1 -1
- package/dist/plugin/html-post-process.d.ts +6 -0
- package/dist/plugin/html-post-process.d.ts.map +1 -1
- package/dist/plugin/html-post-process.js +24 -0
- package/dist/plugin/html-post-process.js.map +1 -1
- package/dist/plugin/index.d.ts.map +1 -1
- package/dist/plugin/index.js +60 -13
- package/dist/plugin/index.js.map +1 -1
- package/dist/plugin/transforms/auto-import.d.ts.map +1 -1
- package/dist/plugin/transforms/auto-import.js +7 -0
- package/dist/plugin/transforms/auto-import.js.map +1 -1
- package/dist/plugin/transforms/prune-runtime-css.d.ts +8 -0
- package/dist/plugin/transforms/prune-runtime-css.d.ts.map +1 -0
- package/dist/plugin/transforms/prune-runtime-css.js +40 -0
- package/dist/plugin/transforms/prune-runtime-css.js.map +1 -0
- package/dist/runtime/app-template.d.ts +1 -1
- package/dist/runtime/app-template.d.ts.map +1 -1
- package/dist/runtime/app-template.js +206 -36
- package/dist/runtime/app-template.js.map +1 -1
- package/dist/runtime/composables/index.d.ts +4 -0
- package/dist/runtime/composables/index.d.ts.map +1 -1
- package/dist/runtime/composables/index.js +2 -0
- package/dist/runtime/composables/index.js.map +1 -1
- package/dist/runtime/composables/use-active-headings.d.ts +24 -0
- package/dist/runtime/composables/use-active-headings.d.ts.map +1 -0
- package/dist/runtime/composables/use-active-headings.js +112 -0
- package/dist/runtime/composables/use-active-headings.js.map +1 -0
- package/dist/runtime/composables/use-content-page.d.ts +45 -0
- package/dist/runtime/composables/use-content-page.d.ts.map +1 -0
- package/dist/runtime/composables/use-content-page.js +179 -0
- package/dist/runtime/composables/use-content-page.js.map +1 -0
- package/dist/runtime/composables/use-content-search.d.ts.map +1 -1
- package/dist/runtime/composables/use-content-search.js +1 -5
- package/dist/runtime/composables/use-content-search.js.map +1 -1
- package/dist/runtime/composables/use-fetch.d.ts +2 -1
- package/dist/runtime/composables/use-fetch.d.ts.map +1 -1
- package/dist/runtime/composables/use-fetch.js +112 -43
- package/dist/runtime/composables/use-fetch.js.map +1 -1
- package/dist/runtime/composables/use-route.d.ts.map +1 -1
- package/dist/runtime/composables/use-route.js +39 -11
- package/dist/runtime/composables/use-route.js.map +1 -1
- package/dist/runtime/content/client.js +2 -2
- package/dist/runtime/content/client.js.map +1 -1
- package/dist/runtime/entry-server-template.d.ts +16 -1
- package/dist/runtime/entry-server-template.d.ts.map +1 -1
- package/dist/runtime/entry-server-template.js +120 -13
- package/dist/runtime/entry-server-template.js.map +1 -1
- package/dist/types/config.d.ts +45 -4
- package/dist/types/config.d.ts.map +1 -1
- package/dist/types/config.js.map +1 -1
- package/dist/types/middleware.d.ts +2 -2
- package/dist/types/middleware.d.ts.map +1 -1
- package/package.json +22 -19
- package/.github/copilot-instructions.md +0 -169
- package/.github/workflows/publish.yml +0 -257
- package/.nvmrc +0 -1
- package/CHANGELOG.md +0 -236
- package/CLAUDE.md +0 -113
- package/commits.txt +0 -1
- package/cypress.config.ts +0 -16
- package/docs/authentication.md +0 -285
- package/docs/cli.md +0 -324
- package/docs/components.md +0 -237
- package/docs/composables.md +0 -907
- package/docs/configuration.md +0 -696
- package/docs/content.md +0 -570
- package/docs/data-loading.md +0 -336
- package/docs/getting-started.md +0 -237
- package/docs/head-management.md +0 -212
- package/docs/i18n.md +0 -159
- package/docs/layouts.md +0 -224
- package/docs/middleware.md +0 -234
- package/docs/plugins.md +0 -170
- package/docs/rendering-modes.md +0 -377
- package/docs/routing.md +0 -485
- package/docs/server-api.md +0 -253
- package/docs/testing.md +0 -455
- package/docs/use-fetch.md +0 -183
- package/e2e/cypress/e2e/api.cy.ts +0 -123
- package/e2e/cypress/e2e/async-component.cy.ts +0 -27
- package/e2e/cypress/e2e/component-splitting.cy.ts +0 -50
- package/e2e/cypress/e2e/content.cy.ts +0 -425
- package/e2e/cypress/e2e/cookie.cy.ts +0 -85
- package/e2e/cypress/e2e/data.cy.ts +0 -158
- package/e2e/cypress/e2e/error-boundary.cy.ts +0 -88
- package/e2e/cypress/e2e/fouc.cy.ts +0 -254
- package/e2e/cypress/e2e/group-meta.cy.ts +0 -36
- package/e2e/cypress/e2e/head.cy.ts +0 -89
- package/e2e/cypress/e2e/i18n.cy.ts +0 -79
- package/e2e/cypress/e2e/interactive.cy.ts +0 -137
- package/e2e/cypress/e2e/isr-nested-runtime.cy.ts +0 -102
- package/e2e/cypress/e2e/jit-css-custom-colors.cy.ts +0 -43
- package/e2e/cypress/e2e/middleware-chain.cy.ts +0 -89
- package/e2e/cypress/e2e/middleware-status.cy.ts +0 -30
- package/e2e/cypress/e2e/middleware.cy.ts +0 -45
- package/e2e/cypress/e2e/navigate.cy.ts +0 -39
- package/e2e/cypress/e2e/observability.cy.ts +0 -77
- package/e2e/cypress/e2e/per-route-error.cy.ts +0 -42
- package/e2e/cypress/e2e/per-route-render.cy.ts +0 -70
- package/e2e/cypress/e2e/preview-hardening.cy.ts +0 -88
- package/e2e/cypress/e2e/routes.cy.ts +0 -128
- package/e2e/cypress/e2e/seo-meta.cy.ts +0 -108
- package/e2e/cypress/e2e/server-middleware.cy.ts +0 -46
- package/e2e/cypress/e2e/session-rotation.cy.ts +0 -25
- package/e2e/cypress/e2e/session.cy.ts +0 -73
- package/e2e/cypress/e2e/ssr-render-error.cy.ts +0 -68
- package/e2e/cypress/e2e/synthetic-404.cy.ts +0 -45
- package/e2e/cypress/e2e/use-page-data.cy.ts +0 -122
- package/e2e/cypress/e2e/use-state.cy.ts +0 -138
- package/e2e/cypress/support/commands.ts +0 -120
- package/e2e/cypress/support/e2e.ts +0 -10
- package/e2e/cypress/tsconfig.json +0 -14
- package/e2e/kitchen-sink/app/components/ks-badge.ts +0 -8
- package/e2e/kitchen-sink/app/composables/useKsCounter.ts +0 -9
- package/e2e/kitchen-sink/app/error.ts +0 -18
- package/e2e/kitchen-sink/app/layouts/admin.ts +0 -13
- package/e2e/kitchen-sink/app/layouts/default.ts +0 -25
- package/e2e/kitchen-sink/app/layouts/group.ts +0 -9
- package/e2e/kitchen-sink/app/layouts/minimal.ts +0 -7
- package/e2e/kitchen-sink/app/loading.ts +0 -9
- package/e2e/kitchen-sink/app/middleware/auth.ts +0 -9
- package/e2e/kitchen-sink/app/middleware/custom-log.ts +0 -4
- package/e2e/kitchen-sink/app/middleware/group-auth.ts +0 -7
- package/e2e/kitchen-sink/app/middleware/logger.ts +0 -14
- package/e2e/kitchen-sink/app/pages/(auth)/login.ts +0 -13
- package/e2e/kitchen-sink/app/pages/(auth)/protected.ts +0 -16
- package/e2e/kitchen-sink/app/pages/404.ts +0 -9
- package/e2e/kitchen-sink/app/pages/about.ts +0 -17
- package/e2e/kitchen-sink/app/pages/admin/_layout.ts +0 -1
- package/e2e/kitchen-sink/app/pages/admin/dashboard.ts +0 -11
- package/e2e/kitchen-sink/app/pages/async-component-error-test.ts +0 -18
- package/e2e/kitchen-sink/app/pages/async-component-test.ts +0 -18
- package/e2e/kitchen-sink/app/pages/blog/[slug].ts +0 -59
- package/e2e/kitchen-sink/app/pages/blog/index.ts +0 -51
- package/e2e/kitchen-sink/app/pages/content-blog.ts +0 -37
- package/e2e/kitchen-sink/app/pages/content-doc.ts +0 -42
- package/e2e/kitchen-sink/app/pages/content-fallback.ts +0 -36
- package/e2e/kitchen-sink/app/pages/content-guides.ts +0 -35
- package/e2e/kitchen-sink/app/pages/content-index.ts +0 -39
- package/e2e/kitchen-sink/app/pages/content-search.ts +0 -36
- package/e2e/kitchen-sink/app/pages/cookie-test.ts +0 -22
- package/e2e/kitchen-sink/app/pages/counter.ts +0 -17
- package/e2e/kitchen-sink/app/pages/group-auth-blocked.ts +0 -9
- package/e2e/kitchen-sink/app/pages/group-meta-test/_layout.ts +0 -6
- package/e2e/kitchen-sink/app/pages/group-meta-test/custom-mw.ts +0 -14
- package/e2e/kitchen-sink/app/pages/group-meta-test/page.ts +0 -9
- package/e2e/kitchen-sink/app/pages/group-meta-test/protected.ts +0 -8
- package/e2e/kitchen-sink/app/pages/head.ts +0 -20
- package/e2e/kitchen-sink/app/pages/i18n-test.ts +0 -14
- package/e2e/kitchen-sink/app/pages/index.ts +0 -27
- package/e2e/kitchen-sink/app/pages/isr-test.ts +0 -17
- package/e2e/kitchen-sink/app/pages/items/[id].ts +0 -20
- package/e2e/kitchen-sink/app/pages/jit-css-custom-colors-test.ts +0 -14
- package/e2e/kitchen-sink/app/pages/loader-error-test.ts +0 -13
- package/e2e/kitchen-sink/app/pages/loader-props-test.ts +0 -19
- package/e2e/kitchen-sink/app/pages/loader-response-error-test.ts +0 -13
- package/e2e/kitchen-sink/app/pages/middleware-chain-test.ts +0 -12
- package/e2e/kitchen-sink/app/pages/middleware-status-test.ts +0 -9
- package/e2e/kitchen-sink/app/pages/navigate-test.ts +0 -16
- package/e2e/kitchen-sink/app/pages/observability-test.ts +0 -25
- package/e2e/kitchen-sink/app/pages/per-route-error-test.error.ts +0 -13
- package/e2e/kitchen-sink/app/pages/per-route-error-test.ts +0 -15
- package/e2e/kitchen-sink/app/pages/plugin-dsd-test.ts +0 -10
- package/e2e/kitchen-sink/app/pages/render-error-test.ts +0 -12
- package/e2e/kitchen-sink/app/pages/render-server-test.ts +0 -12
- package/e2e/kitchen-sink/app/pages/render-spa-test.ts +0 -12
- package/e2e/kitchen-sink/app/pages/route-info.ts +0 -14
- package/e2e/kitchen-sink/app/pages/seo-test.ts +0 -23
- package/e2e/kitchen-sink/app/pages/session-rotation-test.ts +0 -25
- package/e2e/kitchen-sink/app/pages/use-state-test.ts +0 -37
- package/e2e/kitchen-sink/app/plugins/01.setup.ts +0 -7
- package/e2e/kitchen-sink/app/plugins/02.ks-plugin-components.ts +0 -27
- package/e2e/kitchen-sink/cer-auto-imports.d.ts +0 -51
- package/e2e/kitchen-sink/cer-env.d.ts +0 -35
- package/e2e/kitchen-sink/cer-tsconfig.json +0 -30
- package/e2e/kitchen-sink/cer.config.ts +0 -43
- package/e2e/kitchen-sink/content/01.guides/01.index.md +0 -8
- package/e2e/kitchen-sink/content/01.guides/02.intro.md +0 -8
- package/e2e/kitchen-sink/content/01.guides/10.advanced.md +0 -8
- package/e2e/kitchen-sink/content/blog/2026-04-01-hello.md +0 -26
- package/e2e/kitchen-sink/content/blog/2026-04-02-draft.md +0 -10
- package/e2e/kitchen-sink/content/blog/index.md +0 -8
- package/e2e/kitchen-sink/content/blog/no-frontmatter.md +0 -7
- package/e2e/kitchen-sink/content/docs/getting-started.md +0 -48
- package/e2e/kitchen-sink/content/index.md +0 -16
- package/e2e/kitchen-sink/server/api/echo.ts +0 -12
- package/e2e/kitchen-sink/server/api/health.ts +0 -3
- package/e2e/kitchen-sink/server/api/posts/[slug].ts +0 -11
- package/e2e/kitchen-sink/server/api/posts/index.ts +0 -5
- package/e2e/kitchen-sink/server/api/session.ts +0 -23
- package/e2e/kitchen-sink/server/data/posts.ts +0 -21
- package/e2e/kitchen-sink/server/middleware/01-headers.ts +0 -6
- package/e2e/kitchen-sink/server/middleware/02-status-test.ts +0 -10
- package/e2e/kitchen-sink/tsconfig.json +0 -3
- package/e2e/scripts/clean.mjs +0 -14
- package/eslint.config.ts +0 -22
- package/src/__tests__/cli/adapters/cloudflare-worker.integration.test.ts +0 -132
- package/src/__tests__/cli/adapters/cloudflare.test.ts +0 -332
- package/src/__tests__/cli/adapters/netlify-bridge.integration.test.ts +0 -139
- package/src/__tests__/cli/adapters/netlify.test.ts +0 -286
- package/src/__tests__/cli/adapters/vercel-launcher.integration.test.ts +0 -129
- package/src/__tests__/cli/adapters/vercel.test.ts +0 -263
- package/src/__tests__/cli/preview-hardening.test.ts +0 -265
- package/src/__tests__/cli/preview-isr.test.ts +0 -320
- package/src/__tests__/index.test.ts +0 -21
- package/src/__tests__/plugin/app-template.test.ts +0 -166
- package/src/__tests__/plugin/build-ssg-render.test.ts +0 -155
- package/src/__tests__/plugin/build-ssg.test.ts +0 -598
- package/src/__tests__/plugin/build-ssr.test.ts +0 -192
- package/src/__tests__/plugin/cer-app-plugin.test.ts +0 -552
- package/src/__tests__/plugin/content/emitter.test.ts +0 -117
- package/src/__tests__/plugin/content/loader.test.ts +0 -154
- package/src/__tests__/plugin/content/parser.test.ts +0 -381
- package/src/__tests__/plugin/content/path-utils.test.ts +0 -69
- package/src/__tests__/plugin/content/search.test.ts +0 -119
- package/src/__tests__/plugin/dev-server.test.ts +0 -813
- package/src/__tests__/plugin/dts-generator.test.ts +0 -394
- package/src/__tests__/plugin/entry-server-template.test.ts +0 -385
- package/src/__tests__/plugin/generated-dir.test.ts +0 -144
- package/src/__tests__/plugin/html-post-process.test.ts +0 -146
- package/src/__tests__/plugin/path-utils.test.ts +0 -411
- package/src/__tests__/plugin/resolve-config.test.ts +0 -233
- package/src/__tests__/plugin/scanner.test.ts +0 -186
- package/src/__tests__/plugin/transforms/auto-import.test.ts +0 -510
- package/src/__tests__/plugin/transforms/head-inject.test.ts +0 -178
- package/src/__tests__/plugin/virtual/composables.test.ts +0 -57
- package/src/__tests__/plugin/virtual/content-components.test.ts +0 -66
- package/src/__tests__/plugin/virtual/error.test.ts +0 -71
- package/src/__tests__/plugin/virtual/layouts.test.ts +0 -70
- package/src/__tests__/plugin/virtual/loading.test.ts +0 -72
- package/src/__tests__/plugin/virtual/middleware.test.ts +0 -83
- package/src/__tests__/plugin/virtual/plugins.test.ts +0 -129
- package/src/__tests__/plugin/virtual/routes.test.ts +0 -884
- package/src/__tests__/plugin/virtual/server-api.test.ts +0 -164
- package/src/__tests__/plugin/virtual/server-middleware.test.ts +0 -102
- package/src/__tests__/runtime/app-template.test.ts +0 -208
- package/src/__tests__/runtime/define-middleware.test.ts +0 -64
- package/src/__tests__/runtime/define-server-middleware.test.ts +0 -54
- package/src/__tests__/runtime/entry-client-template.test.ts +0 -61
- package/src/__tests__/runtime/isr-handler.test.ts +0 -338
- package/src/__tests__/runtime/oauth/handler.test.ts +0 -358
- package/src/__tests__/runtime/oauth/providers.test.ts +0 -47
- package/src/__tests__/runtime/oauth-index.test.ts +0 -43
- package/src/__tests__/runtime/use-auth.test.ts +0 -169
- package/src/__tests__/runtime/use-content-search-composable.test.ts +0 -405
- package/src/__tests__/runtime/use-content-search.test.ts +0 -163
- package/src/__tests__/runtime/use-content.test.ts +0 -226
- package/src/__tests__/runtime/use-cookie.test.ts +0 -277
- package/src/__tests__/runtime/use-fetch-component.test.ts +0 -214
- package/src/__tests__/runtime/use-fetch.test.ts +0 -377
- package/src/__tests__/runtime/use-head.test.ts +0 -311
- package/src/__tests__/runtime/use-inject-client.test.ts +0 -67
- package/src/__tests__/runtime/use-inject.test.ts +0 -66
- package/src/__tests__/runtime/use-locale.test.ts +0 -152
- package/src/__tests__/runtime/use-navigate.test.ts +0 -121
- package/src/__tests__/runtime/use-page-data.test.ts +0 -298
- package/src/__tests__/runtime/use-route.test.ts +0 -156
- package/src/__tests__/runtime/use-runtime-config.test.ts +0 -182
- package/src/__tests__/runtime/use-seo-meta.test.ts +0 -109
- package/src/__tests__/runtime/use-session.test.ts +0 -320
- package/src/__tests__/runtime/use-state.test.ts +0 -340
- package/src/__tests__/types/config.test.ts +0 -18
- package/src/cli/adapters/cloudflare.ts +0 -335
- package/src/cli/adapters/netlify.ts +0 -326
- package/src/cli/adapters/vercel.ts +0 -311
- package/src/cli/commands/adapt.ts +0 -84
- package/src/cli/commands/build.ts +0 -165
- package/src/cli/commands/dev.ts +0 -125
- package/src/cli/commands/generate.ts +0 -91
- package/src/cli/commands/preview-isr.ts +0 -172
- package/src/cli/commands/preview.ts +0 -523
- package/src/cli/create/index.ts +0 -275
- package/src/cli/create/templates/shared/.gitignore.tpl +0 -25
- package/src/cli/create/templates/shared/app/layouts/default.ts.tpl +0 -15
- package/src/cli/create/templates/shared/app/pages/index.ts.tpl +0 -8
- package/src/cli/create/templates/shared/index.html.tpl +0 -12
- package/src/cli/create/templates/shared/tsconfig.json.tpl +0 -6
- package/src/cli/create/templates/spa/cer.config.ts.tpl +0 -6
- package/src/cli/create/templates/spa/package.json.tpl +0 -18
- package/src/cli/create/templates/ssg/cer.config.ts.tpl +0 -10
- package/src/cli/create/templates/ssg/package.json.tpl +0 -19
- package/src/cli/create/templates/ssr/cer.config.ts.tpl +0 -6
- package/src/cli/create/templates/ssr/package.json.tpl +0 -18
- package/src/cli/index.ts +0 -22
- package/src/index.ts +0 -20
- package/src/plugin/build-ssg.ts +0 -403
- package/src/plugin/build-ssr.ts +0 -134
- package/src/plugin/content/emitter.ts +0 -50
- package/src/plugin/content/index.ts +0 -233
- package/src/plugin/content/parser.ts +0 -259
- package/src/plugin/content/path-utils.ts +0 -55
- package/src/plugin/content/scanner.ts +0 -26
- package/src/plugin/content/search.ts +0 -28
- package/src/plugin/dev-server.ts +0 -379
- package/src/plugin/dts-generator.ts +0 -273
- package/src/plugin/generated-dir.ts +0 -121
- package/src/plugin/html-post-process.ts +0 -96
- package/src/plugin/index.ts +0 -584
- package/src/plugin/path-utils.ts +0 -186
- package/src/plugin/scanner.ts +0 -65
- package/src/plugin/transforms/auto-import.ts +0 -206
- package/src/plugin/transforms/head-inject.ts +0 -161
- package/src/plugin/virtual/composables.ts +0 -28
- package/src/plugin/virtual/content-components.ts +0 -83
- package/src/plugin/virtual/error.ts +0 -34
- package/src/plugin/virtual/layouts.ts +0 -41
- package/src/plugin/virtual/loading.ts +0 -32
- package/src/plugin/virtual/middleware.ts +0 -45
- package/src/plugin/virtual/plugins.ts +0 -46
- package/src/plugin/virtual/routes.ts +0 -514
- package/src/plugin/virtual/server-api.ts +0 -85
- package/src/plugin/virtual/server-middleware.ts +0 -44
- package/src/runtime/app-template.ts +0 -377
- package/src/runtime/composables/define-middleware.ts +0 -17
- package/src/runtime/composables/define-server-middleware.ts +0 -18
- package/src/runtime/composables/index.ts +0 -27
- package/src/runtime/composables/use-auth.ts +0 -125
- package/src/runtime/composables/use-content-search.ts +0 -205
- package/src/runtime/composables/use-content.ts +0 -146
- package/src/runtime/composables/use-cookie.ts +0 -135
- package/src/runtime/composables/use-fetch.ts +0 -438
- package/src/runtime/composables/use-head.ts +0 -234
- package/src/runtime/composables/use-inject.ts +0 -49
- package/src/runtime/composables/use-locale.ts +0 -109
- package/src/runtime/composables/use-navigate.ts +0 -58
- package/src/runtime/composables/use-page-data.ts +0 -93
- package/src/runtime/composables/use-route.ts +0 -71
- package/src/runtime/composables/use-runtime-config.ts +0 -123
- package/src/runtime/composables/use-seo-meta.ts +0 -80
- package/src/runtime/composables/use-session.ts +0 -186
- package/src/runtime/composables/use-state.ts +0 -92
- package/src/runtime/content/client.ts +0 -168
- package/src/runtime/entry-client-template.ts +0 -39
- package/src/runtime/entry-server-template.ts +0 -493
- package/src/runtime/isr-handler.ts +0 -184
- package/src/runtime/oauth/handler.ts +0 -407
- package/src/runtime/oauth/index.ts +0 -49
- package/src/runtime/oauth/providers.ts +0 -38
- package/src/types/api.ts +0 -40
- package/src/types/config.ts +0 -379
- package/src/types/content.ts +0 -66
- package/src/types/index.ts +0 -7
- package/src/types/middleware.ts +0 -63
- package/src/types/page.ts +0 -117
- package/src/types/plugin.ts +0 -34
- package/tsconfig.build.json +0 -10
- package/tsconfig.json +0 -19
- package/vitest.config.ts +0 -33
|
@@ -1,411 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect } from 'vitest'
|
|
2
|
-
import {
|
|
3
|
-
fileToRoutePath,
|
|
4
|
-
fileToTagName,
|
|
5
|
-
fileToLayoutTagName,
|
|
6
|
-
fileToLayoutName,
|
|
7
|
-
fileToImportAlias,
|
|
8
|
-
extractPluginOrder,
|
|
9
|
-
sortPluginFiles,
|
|
10
|
-
sortRoutes,
|
|
11
|
-
isRouteDynamic,
|
|
12
|
-
isRouteCatchAll,
|
|
13
|
-
buildRouteEntry,
|
|
14
|
-
} from '../../plugin/path-utils.js'
|
|
15
|
-
|
|
16
|
-
const PAGES = '/project/app/pages'
|
|
17
|
-
const LAYOUTS = '/project/app/layouts'
|
|
18
|
-
|
|
19
|
-
// ─── fileToRoutePath ────────────────────────────────────────────────────────
|
|
20
|
-
|
|
21
|
-
describe('fileToRoutePath', () => {
|
|
22
|
-
it('maps index.ts to /', () => {
|
|
23
|
-
expect(fileToRoutePath(`${PAGES}/index.ts`, PAGES)).toBe('/')
|
|
24
|
-
})
|
|
25
|
-
|
|
26
|
-
it('maps about.ts to /about', () => {
|
|
27
|
-
expect(fileToRoutePath(`${PAGES}/about.ts`, PAGES)).toBe('/about')
|
|
28
|
-
})
|
|
29
|
-
|
|
30
|
-
it('maps blog/index.ts to /blog', () => {
|
|
31
|
-
expect(fileToRoutePath(`${PAGES}/blog/index.ts`, PAGES)).toBe('/blog')
|
|
32
|
-
})
|
|
33
|
-
|
|
34
|
-
it('maps blog/[slug].ts to /blog/:slug', () => {
|
|
35
|
-
expect(fileToRoutePath(`${PAGES}/blog/[slug].ts`, PAGES)).toBe('/blog/:slug')
|
|
36
|
-
})
|
|
37
|
-
|
|
38
|
-
it('maps [...all].ts to /:all*', () => {
|
|
39
|
-
expect(fileToRoutePath(`${PAGES}/[...all].ts`, PAGES)).toBe('/:all*')
|
|
40
|
-
})
|
|
41
|
-
|
|
42
|
-
it('maps [...catchAll].ts to /:catchAll*', () => {
|
|
43
|
-
expect(fileToRoutePath(`${PAGES}/[...catchAll].ts`, PAGES)).toBe('/:catchAll*')
|
|
44
|
-
})
|
|
45
|
-
|
|
46
|
-
it('strips route group prefix: (auth)/login.ts → /login', () => {
|
|
47
|
-
expect(fileToRoutePath(`${PAGES}/(auth)/login.ts`, PAGES)).toBe('/login')
|
|
48
|
-
})
|
|
49
|
-
|
|
50
|
-
it('strips nested route group: (group)/sub/page.ts → /sub/page', () => {
|
|
51
|
-
expect(fileToRoutePath(`${PAGES}/(group)/sub/page.ts`, PAGES)).toBe('/sub/page')
|
|
52
|
-
})
|
|
53
|
-
|
|
54
|
-
it('strips multiple nested route groups: (auth)/(admin)/settings.ts → /settings', () => {
|
|
55
|
-
expect(fileToRoutePath(`${PAGES}/(auth)/(admin)/settings.ts`, PAGES)).toBe('/settings')
|
|
56
|
-
})
|
|
57
|
-
|
|
58
|
-
it('strips multiple nested route groups with path: (auth)/(admin)/users/[id].ts → /users/:id', () => {
|
|
59
|
-
expect(fileToRoutePath(`${PAGES}/(auth)/(admin)/users/[id].ts`, PAGES)).toBe('/users/:id')
|
|
60
|
-
})
|
|
61
|
-
|
|
62
|
-
it('maps [id]/edit.ts → /:id/edit', () => {
|
|
63
|
-
expect(fileToRoutePath(`${PAGES}/[id]/edit.ts`, PAGES)).toBe('/:id/edit')
|
|
64
|
-
})
|
|
65
|
-
|
|
66
|
-
it('maps users/[id]/posts/[postId].ts → /users/:id/posts/:postId', () => {
|
|
67
|
-
expect(fileToRoutePath(`${PAGES}/users/[id]/posts/[postId].ts`, PAGES)).toBe(
|
|
68
|
-
'/users/:id/posts/:postId',
|
|
69
|
-
)
|
|
70
|
-
})
|
|
71
|
-
|
|
72
|
-
it('normalizes double slashes from route group at root', () => {
|
|
73
|
-
expect(fileToRoutePath(`${PAGES}/(group)/index.ts`, PAGES)).toBe('/')
|
|
74
|
-
})
|
|
75
|
-
|
|
76
|
-
it('handles .js extension', () => {
|
|
77
|
-
expect(fileToRoutePath(`${PAGES}/about.js`, PAGES)).toBe('/about')
|
|
78
|
-
})
|
|
79
|
-
|
|
80
|
-
it('handles deeply nested static route', () => {
|
|
81
|
-
expect(fileToRoutePath(`${PAGES}/a/b/c.ts`, PAGES)).toBe('/a/b/c')
|
|
82
|
-
})
|
|
83
|
-
|
|
84
|
-
it('maps contact/index.ts to /contact (strips trailing index)', () => {
|
|
85
|
-
expect(fileToRoutePath(`${PAGES}/contact/index.ts`, PAGES)).toBe('/contact')
|
|
86
|
-
})
|
|
87
|
-
})
|
|
88
|
-
|
|
89
|
-
// ─── fileToTagName ───────────────────────────────────────────────────────────
|
|
90
|
-
|
|
91
|
-
describe('fileToTagName', () => {
|
|
92
|
-
it('maps index.ts to page-index', () => {
|
|
93
|
-
expect(fileToTagName(`${PAGES}/index.ts`, PAGES)).toBe('page-index')
|
|
94
|
-
})
|
|
95
|
-
|
|
96
|
-
it('maps about.ts to page-about', () => {
|
|
97
|
-
expect(fileToTagName(`${PAGES}/about.ts`, PAGES)).toBe('page-about')
|
|
98
|
-
})
|
|
99
|
-
|
|
100
|
-
it('maps blog/[slug].ts to page-blog-slug', () => {
|
|
101
|
-
expect(fileToTagName(`${PAGES}/blog/[slug].ts`, PAGES)).toBe('page-blog-slug')
|
|
102
|
-
})
|
|
103
|
-
|
|
104
|
-
it('maps [...all].ts to page-all (strips brackets and dots)', () => {
|
|
105
|
-
expect(fileToTagName(`${PAGES}/[...all].ts`, PAGES)).toBe('page-all')
|
|
106
|
-
})
|
|
107
|
-
|
|
108
|
-
it('strips route group from tag name', () => {
|
|
109
|
-
expect(fileToTagName(`${PAGES}/(auth)/login.ts`, PAGES)).toBe('page-login')
|
|
110
|
-
})
|
|
111
|
-
|
|
112
|
-
it('strips multiple nested route groups from tag name: (auth)/(admin)/settings.ts → page-settings', () => {
|
|
113
|
-
expect(fileToTagName(`${PAGES}/(auth)/(admin)/settings.ts`, PAGES)).toBe('page-settings')
|
|
114
|
-
})
|
|
115
|
-
|
|
116
|
-
it('converts to lowercase', () => {
|
|
117
|
-
expect(fileToTagName(`${PAGES}/MyPage.ts`, PAGES)).toBe('page-mypage')
|
|
118
|
-
})
|
|
119
|
-
|
|
120
|
-
it('maps blog/index.ts to page-blog (strips index when other segments exist)', () => {
|
|
121
|
-
expect(fileToTagName(`${PAGES}/blog/index.ts`, PAGES)).toBe('page-blog')
|
|
122
|
-
})
|
|
123
|
-
|
|
124
|
-
it('maps items/index.ts to page-items', () => {
|
|
125
|
-
expect(fileToTagName(`${PAGES}/items/index.ts`, PAGES)).toBe('page-items')
|
|
126
|
-
})
|
|
127
|
-
|
|
128
|
-
it('maps [id]/detail.ts to page-id-detail', () => {
|
|
129
|
-
expect(fileToTagName(`${PAGES}/[id]/detail.ts`, PAGES)).toBe('page-id-detail')
|
|
130
|
-
})
|
|
131
|
-
})
|
|
132
|
-
|
|
133
|
-
// ─── fileToLayoutTagName ─────────────────────────────────────────────────────
|
|
134
|
-
|
|
135
|
-
describe('fileToLayoutTagName', () => {
|
|
136
|
-
it('maps default.ts to layout-default', () => {
|
|
137
|
-
expect(fileToLayoutTagName(`${LAYOUTS}/default.ts`, LAYOUTS)).toBe('layout-default')
|
|
138
|
-
})
|
|
139
|
-
|
|
140
|
-
it('maps minimal.ts to layout-minimal', () => {
|
|
141
|
-
expect(fileToLayoutTagName(`${LAYOUTS}/minimal.ts`, LAYOUTS)).toBe('layout-minimal')
|
|
142
|
-
})
|
|
143
|
-
|
|
144
|
-
it('maps blog/post.ts to layout-blog-post', () => {
|
|
145
|
-
expect(fileToLayoutTagName(`${LAYOUTS}/blog/post.ts`, LAYOUTS)).toBe('layout-blog-post')
|
|
146
|
-
})
|
|
147
|
-
|
|
148
|
-
it('converts to lowercase', () => {
|
|
149
|
-
expect(fileToLayoutTagName(`${LAYOUTS}/MyLayout.ts`, LAYOUTS)).toBe('layout-mylayout')
|
|
150
|
-
})
|
|
151
|
-
})
|
|
152
|
-
|
|
153
|
-
// ─── fileToLayoutName ────────────────────────────────────────────────────────
|
|
154
|
-
|
|
155
|
-
describe('fileToLayoutName', () => {
|
|
156
|
-
it('maps default.ts to default', () => {
|
|
157
|
-
expect(fileToLayoutName(`${LAYOUTS}/default.ts`, LAYOUTS)).toBe('default')
|
|
158
|
-
})
|
|
159
|
-
|
|
160
|
-
it('maps minimal.ts to minimal', () => {
|
|
161
|
-
expect(fileToLayoutName(`${LAYOUTS}/minimal.ts`, LAYOUTS)).toBe('minimal')
|
|
162
|
-
})
|
|
163
|
-
|
|
164
|
-
it('maps blog/post.ts to blog-post (slash → dash)', () => {
|
|
165
|
-
expect(fileToLayoutName(`${LAYOUTS}/blog/post.ts`, LAYOUTS)).toBe('blog-post')
|
|
166
|
-
})
|
|
167
|
-
|
|
168
|
-
it('converts to lowercase', () => {
|
|
169
|
-
expect(fileToLayoutName(`${LAYOUTS}/Admin.ts`, LAYOUTS)).toBe('admin')
|
|
170
|
-
})
|
|
171
|
-
})
|
|
172
|
-
|
|
173
|
-
// ─── fileToImportAlias ───────────────────────────────────────────────────────
|
|
174
|
-
|
|
175
|
-
describe('fileToImportAlias', () => {
|
|
176
|
-
it('creates _m_ prefixed alias by default', () => {
|
|
177
|
-
expect(fileToImportAlias('/project/app/composables/useTheme.ts')).toBe('_m_useTheme')
|
|
178
|
-
})
|
|
179
|
-
|
|
180
|
-
it('uses custom prefix', () => {
|
|
181
|
-
expect(fileToImportAlias('/project/store.ts', '_s')).toBe('_s_store')
|
|
182
|
-
})
|
|
183
|
-
|
|
184
|
-
it('replaces dashes with underscores', () => {
|
|
185
|
-
expect(fileToImportAlias('/project/my-util.ts')).toBe('_m_my_util')
|
|
186
|
-
})
|
|
187
|
-
|
|
188
|
-
it('prepends underscore for filenames starting with a digit', () => {
|
|
189
|
-
expect(fileToImportAlias('/project/01.store.ts')).toBe('_m__01_store')
|
|
190
|
-
})
|
|
191
|
-
|
|
192
|
-
it('replaces brackets in filename with underscores', () => {
|
|
193
|
-
expect(fileToImportAlias('/project/[slug].ts')).toBe('_m__slug_')
|
|
194
|
-
})
|
|
195
|
-
})
|
|
196
|
-
|
|
197
|
-
// ─── extractPluginOrder ──────────────────────────────────────────────────────
|
|
198
|
-
|
|
199
|
-
describe('extractPluginOrder', () => {
|
|
200
|
-
it('returns numeric prefix for 01.store.ts', () => {
|
|
201
|
-
expect(extractPluginOrder('01.store.ts')).toBe(1)
|
|
202
|
-
})
|
|
203
|
-
|
|
204
|
-
it('returns numeric prefix for 10.auth.ts', () => {
|
|
205
|
-
expect(extractPluginOrder('10.auth.ts')).toBe(10)
|
|
206
|
-
})
|
|
207
|
-
|
|
208
|
-
it('returns Infinity for files without numeric prefix', () => {
|
|
209
|
-
expect(extractPluginOrder('store.ts')).toBe(Infinity)
|
|
210
|
-
})
|
|
211
|
-
|
|
212
|
-
it('returns Infinity for files with a number but no trailing dot', () => {
|
|
213
|
-
expect(extractPluginOrder('1store.ts')).toBe(Infinity)
|
|
214
|
-
})
|
|
215
|
-
|
|
216
|
-
it('works with absolute paths (extracts basename first)', () => {
|
|
217
|
-
expect(extractPluginOrder('/project/app/plugins/01.store.ts')).toBe(1)
|
|
218
|
-
})
|
|
219
|
-
|
|
220
|
-
it('returns 0 for 00.first.ts', () => {
|
|
221
|
-
expect(extractPluginOrder('00.first.ts')).toBe(0)
|
|
222
|
-
})
|
|
223
|
-
})
|
|
224
|
-
|
|
225
|
-
// ─── sortPluginFiles ─────────────────────────────────────────────────────────
|
|
226
|
-
|
|
227
|
-
describe('sortPluginFiles', () => {
|
|
228
|
-
it('sorts by numeric prefix ascending', () => {
|
|
229
|
-
const files = ['/p/03.c.ts', '/p/01.a.ts', '/p/02.b.ts']
|
|
230
|
-
expect(sortPluginFiles(files)).toEqual(['/p/01.a.ts', '/p/02.b.ts', '/p/03.c.ts'])
|
|
231
|
-
})
|
|
232
|
-
|
|
233
|
-
it('places numbered files before unnumbered files', () => {
|
|
234
|
-
const files = ['/p/zzz.ts', '/p/01.first.ts']
|
|
235
|
-
expect(sortPluginFiles(files)).toEqual(['/p/01.first.ts', '/p/zzz.ts'])
|
|
236
|
-
})
|
|
237
|
-
|
|
238
|
-
it('sorts unnumbered files alphabetically', () => {
|
|
239
|
-
const files = ['/p/zoo.ts', '/p/alpha.ts', '/p/beta.ts']
|
|
240
|
-
expect(sortPluginFiles(files)).toEqual(['/p/alpha.ts', '/p/beta.ts', '/p/zoo.ts'])
|
|
241
|
-
})
|
|
242
|
-
|
|
243
|
-
it('does not mutate the original array', () => {
|
|
244
|
-
const files = ['/p/b.ts', '/p/a.ts']
|
|
245
|
-
const copy = [...files]
|
|
246
|
-
sortPluginFiles(files)
|
|
247
|
-
expect(files).toEqual(copy)
|
|
248
|
-
})
|
|
249
|
-
|
|
250
|
-
it('returns empty array for empty input', () => {
|
|
251
|
-
expect(sortPluginFiles([])).toEqual([])
|
|
252
|
-
})
|
|
253
|
-
|
|
254
|
-
it('handles single file', () => {
|
|
255
|
-
expect(sortPluginFiles(['/p/store.ts'])).toEqual(['/p/store.ts'])
|
|
256
|
-
})
|
|
257
|
-
})
|
|
258
|
-
|
|
259
|
-
// ─── isRouteDynamic ──────────────────────────────────────────────────────────
|
|
260
|
-
|
|
261
|
-
describe('isRouteDynamic', () => {
|
|
262
|
-
it('returns true for routes with :param', () => {
|
|
263
|
-
expect(isRouteDynamic('/blog/:slug')).toBe(true)
|
|
264
|
-
})
|
|
265
|
-
|
|
266
|
-
it('returns true for multiple params', () => {
|
|
267
|
-
expect(isRouteDynamic('/users/:id/posts/:postId')).toBe(true)
|
|
268
|
-
})
|
|
269
|
-
|
|
270
|
-
it('returns false for static routes', () => {
|
|
271
|
-
expect(isRouteDynamic('/about')).toBe(false)
|
|
272
|
-
})
|
|
273
|
-
|
|
274
|
-
it('returns false for root route', () => {
|
|
275
|
-
expect(isRouteDynamic('/')).toBe(false)
|
|
276
|
-
})
|
|
277
|
-
|
|
278
|
-
it('returns false for catch-all routes', () => {
|
|
279
|
-
expect(isRouteDynamic('/*')).toBe(false)
|
|
280
|
-
})
|
|
281
|
-
})
|
|
282
|
-
|
|
283
|
-
// ─── isRouteCatchAll ─────────────────────────────────────────────────────────
|
|
284
|
-
|
|
285
|
-
describe('isRouteCatchAll', () => {
|
|
286
|
-
it('returns true for /* catch-all', () => {
|
|
287
|
-
expect(isRouteCatchAll('/*')).toBe(true)
|
|
288
|
-
})
|
|
289
|
-
|
|
290
|
-
it('returns false for static routes', () => {
|
|
291
|
-
expect(isRouteCatchAll('/about')).toBe(false)
|
|
292
|
-
})
|
|
293
|
-
|
|
294
|
-
it('returns false for dynamic routes', () => {
|
|
295
|
-
expect(isRouteCatchAll('/blog/:slug')).toBe(false)
|
|
296
|
-
})
|
|
297
|
-
|
|
298
|
-
it('returns false for root route', () => {
|
|
299
|
-
expect(isRouteCatchAll('/')).toBe(false)
|
|
300
|
-
})
|
|
301
|
-
})
|
|
302
|
-
|
|
303
|
-
// ─── sortRoutes ──────────────────────────────────────────────────────────────
|
|
304
|
-
|
|
305
|
-
describe('sortRoutes', () => {
|
|
306
|
-
const makeRoute = (routePath: string) => ({
|
|
307
|
-
filePath: `/pages${routePath}.ts`,
|
|
308
|
-
routePath,
|
|
309
|
-
tagName: `page${routePath.replace(/[/:*]/g, '-')}`,
|
|
310
|
-
isDynamic: isRouteDynamic(routePath),
|
|
311
|
-
isCatchAll: isRouteCatchAll(routePath),
|
|
312
|
-
})
|
|
313
|
-
|
|
314
|
-
it('places static routes before dynamic routes', () => {
|
|
315
|
-
const routes = [makeRoute('/blog/:slug'), makeRoute('/about')]
|
|
316
|
-
const sorted = sortRoutes(routes)
|
|
317
|
-
expect(sorted[0].routePath).toBe('/about')
|
|
318
|
-
expect(sorted[1].routePath).toBe('/blog/:slug')
|
|
319
|
-
})
|
|
320
|
-
|
|
321
|
-
it('places dynamic routes before catch-all routes', () => {
|
|
322
|
-
const routes = [makeRoute('/*'), makeRoute('/blog/:slug')]
|
|
323
|
-
const sorted = sortRoutes(routes)
|
|
324
|
-
expect(sorted[0].routePath).toBe('/blog/:slug')
|
|
325
|
-
expect(sorted[1].routePath).toBe('/*')
|
|
326
|
-
})
|
|
327
|
-
|
|
328
|
-
it('places static routes before catch-all routes', () => {
|
|
329
|
-
const routes = [makeRoute('/*'), makeRoute('/about')]
|
|
330
|
-
const sorted = sortRoutes(routes)
|
|
331
|
-
expect(sorted[0].routePath).toBe('/about')
|
|
332
|
-
expect(sorted[1].routePath).toBe('/*')
|
|
333
|
-
})
|
|
334
|
-
|
|
335
|
-
it('sorts static routes alphabetically', () => {
|
|
336
|
-
const routes = [makeRoute('/zzz'), makeRoute('/aaa'), makeRoute('/mmm')]
|
|
337
|
-
const sorted = sortRoutes(routes)
|
|
338
|
-
expect(sorted.map((r) => r.routePath)).toEqual(['/aaa', '/mmm', '/zzz'])
|
|
339
|
-
})
|
|
340
|
-
|
|
341
|
-
it('does not mutate the original array', () => {
|
|
342
|
-
const routes = [makeRoute('/about'), makeRoute('/')]
|
|
343
|
-
const copy = [...routes]
|
|
344
|
-
sortRoutes(routes)
|
|
345
|
-
expect(routes).toEqual(copy)
|
|
346
|
-
})
|
|
347
|
-
|
|
348
|
-
it('handles all three tiers together', () => {
|
|
349
|
-
const routes = [
|
|
350
|
-
makeRoute('/*'),
|
|
351
|
-
makeRoute('/blog/:slug'),
|
|
352
|
-
makeRoute('/contact'),
|
|
353
|
-
makeRoute('/about'),
|
|
354
|
-
makeRoute('/:id'),
|
|
355
|
-
]
|
|
356
|
-
const sorted = sortRoutes(routes)
|
|
357
|
-
// Static first, alphabetically
|
|
358
|
-
expect(sorted[0].routePath).toBe('/about')
|
|
359
|
-
expect(sorted[1].routePath).toBe('/contact')
|
|
360
|
-
// Dynamic next, alphabetically — ':' (58) < 'b' (98), so /:id before /blog/:slug
|
|
361
|
-
expect(sorted[2].routePath).toBe('/:id')
|
|
362
|
-
expect(sorted[3].routePath).toBe('/blog/:slug')
|
|
363
|
-
// Catch-all last
|
|
364
|
-
expect(sorted[4].routePath).toBe('/*')
|
|
365
|
-
})
|
|
366
|
-
|
|
367
|
-
it('returns empty array for empty input', () => {
|
|
368
|
-
expect(sortRoutes([])).toEqual([])
|
|
369
|
-
})
|
|
370
|
-
})
|
|
371
|
-
|
|
372
|
-
// ─── buildRouteEntry ─────────────────────────────────────────────────────────
|
|
373
|
-
|
|
374
|
-
describe('buildRouteEntry', () => {
|
|
375
|
-
it('builds a complete RouteEntry for a static page', () => {
|
|
376
|
-
const entry = buildRouteEntry(`${PAGES}/about.ts`, PAGES)
|
|
377
|
-
expect(entry).toEqual({
|
|
378
|
-
filePath: `${PAGES}/about.ts`,
|
|
379
|
-
routePath: '/about',
|
|
380
|
-
tagName: 'page-about',
|
|
381
|
-
isDynamic: false,
|
|
382
|
-
isCatchAll: false,
|
|
383
|
-
})
|
|
384
|
-
})
|
|
385
|
-
|
|
386
|
-
it('builds a complete RouteEntry for a dynamic page', () => {
|
|
387
|
-
const entry = buildRouteEntry(`${PAGES}/blog/[slug].ts`, PAGES)
|
|
388
|
-
expect(entry).toEqual({
|
|
389
|
-
filePath: `${PAGES}/blog/[slug].ts`,
|
|
390
|
-
routePath: '/blog/:slug',
|
|
391
|
-
tagName: 'page-blog-slug',
|
|
392
|
-
isDynamic: true,
|
|
393
|
-
isCatchAll: false,
|
|
394
|
-
})
|
|
395
|
-
})
|
|
396
|
-
|
|
397
|
-
it('marks catch-all routes correctly (isCatchAll=true, isDynamic=true)', () => {
|
|
398
|
-
const entry = buildRouteEntry(`${PAGES}/[...all].ts`, PAGES)
|
|
399
|
-
expect(entry.routePath).toBe('/:all*')
|
|
400
|
-
expect(entry.isCatchAll).toBe(true)
|
|
401
|
-
expect(entry.isDynamic).toBe(true)
|
|
402
|
-
})
|
|
403
|
-
|
|
404
|
-
it('handles index page', () => {
|
|
405
|
-
const entry = buildRouteEntry(`${PAGES}/index.ts`, PAGES)
|
|
406
|
-
expect(entry.routePath).toBe('/')
|
|
407
|
-
expect(entry.tagName).toBe('page-index')
|
|
408
|
-
expect(entry.isDynamic).toBe(false)
|
|
409
|
-
expect(entry.isCatchAll).toBe(false)
|
|
410
|
-
})
|
|
411
|
-
})
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect } from 'vitest'
|
|
2
|
-
import { resolveConfig } from '../../plugin/index.js'
|
|
3
|
-
|
|
4
|
-
const ROOT = '/project'
|
|
5
|
-
|
|
6
|
-
describe('resolveConfig', () => {
|
|
7
|
-
it('defaults mode to "spa"', () => {
|
|
8
|
-
const cfg = resolveConfig({}, ROOT)
|
|
9
|
-
expect(cfg.mode).toBe('spa')
|
|
10
|
-
})
|
|
11
|
-
|
|
12
|
-
it('respects explicit mode', () => {
|
|
13
|
-
expect(resolveConfig({ mode: 'ssr' }, ROOT).mode).toBe('ssr')
|
|
14
|
-
expect(resolveConfig({ mode: 'ssg' }, ROOT).mode).toBe('ssg')
|
|
15
|
-
})
|
|
16
|
-
|
|
17
|
-
it('defaults srcDir to <root>/app', () => {
|
|
18
|
-
const cfg = resolveConfig({}, ROOT)
|
|
19
|
-
expect(cfg.srcDir).toBe('/project/app')
|
|
20
|
-
})
|
|
21
|
-
|
|
22
|
-
it('respects explicit srcDir', () => {
|
|
23
|
-
const cfg = resolveConfig({ srcDir: 'src' }, ROOT)
|
|
24
|
-
expect(cfg.srcDir).toBe('/project/src')
|
|
25
|
-
})
|
|
26
|
-
|
|
27
|
-
it('derives pagesDir from srcDir', () => {
|
|
28
|
-
const cfg = resolveConfig({}, ROOT)
|
|
29
|
-
expect(cfg.pagesDir).toBe('/project/app/pages')
|
|
30
|
-
})
|
|
31
|
-
|
|
32
|
-
it('derives layoutsDir from srcDir', () => {
|
|
33
|
-
const cfg = resolveConfig({}, ROOT)
|
|
34
|
-
expect(cfg.layoutsDir).toBe('/project/app/layouts')
|
|
35
|
-
})
|
|
36
|
-
|
|
37
|
-
it('derives componentsDir from srcDir', () => {
|
|
38
|
-
const cfg = resolveConfig({}, ROOT)
|
|
39
|
-
expect(cfg.componentsDir).toBe('/project/app/components')
|
|
40
|
-
})
|
|
41
|
-
|
|
42
|
-
it('derives composablesDir from srcDir', () => {
|
|
43
|
-
const cfg = resolveConfig({}, ROOT)
|
|
44
|
-
expect(cfg.composablesDir).toBe('/project/app/composables')
|
|
45
|
-
})
|
|
46
|
-
|
|
47
|
-
it('derives pluginsDir from srcDir', () => {
|
|
48
|
-
const cfg = resolveConfig({}, ROOT)
|
|
49
|
-
expect(cfg.pluginsDir).toBe('/project/app/plugins')
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
it('derives middlewareDir from srcDir', () => {
|
|
53
|
-
const cfg = resolveConfig({}, ROOT)
|
|
54
|
-
expect(cfg.middlewareDir).toBe('/project/app/middleware')
|
|
55
|
-
})
|
|
56
|
-
|
|
57
|
-
it('derives serverApiDir from root (not srcDir)', () => {
|
|
58
|
-
const cfg = resolveConfig({}, ROOT)
|
|
59
|
-
expect(cfg.serverApiDir).toBe('/project/server/api')
|
|
60
|
-
})
|
|
61
|
-
|
|
62
|
-
it('derives serverMiddlewareDir from root (not srcDir)', () => {
|
|
63
|
-
const cfg = resolveConfig({}, ROOT)
|
|
64
|
-
expect(cfg.serverMiddlewareDir).toBe('/project/server/middleware')
|
|
65
|
-
})
|
|
66
|
-
|
|
67
|
-
it('defaults port to 3000', () => {
|
|
68
|
-
const cfg = resolveConfig({}, ROOT)
|
|
69
|
-
expect(cfg.port).toBe(3000)
|
|
70
|
-
})
|
|
71
|
-
|
|
72
|
-
it('respects explicit port', () => {
|
|
73
|
-
const cfg = resolveConfig({ port: 4000 }, ROOT)
|
|
74
|
-
expect(cfg.port).toBe(4000)
|
|
75
|
-
})
|
|
76
|
-
|
|
77
|
-
it('defaults ssg.routes to "auto"', () => {
|
|
78
|
-
const cfg = resolveConfig({}, ROOT)
|
|
79
|
-
expect(cfg.ssg.routes).toBe('auto')
|
|
80
|
-
})
|
|
81
|
-
|
|
82
|
-
it('respects explicit ssg.routes array', () => {
|
|
83
|
-
const cfg = resolveConfig({ ssg: { routes: ['/a', '/b'] } }, ROOT)
|
|
84
|
-
expect(cfg.ssg.routes).toEqual(['/a', '/b'])
|
|
85
|
-
})
|
|
86
|
-
|
|
87
|
-
it('defaults ssg.concurrency to 4', () => {
|
|
88
|
-
const cfg = resolveConfig({}, ROOT)
|
|
89
|
-
expect(cfg.ssg.concurrency).toBe(4)
|
|
90
|
-
})
|
|
91
|
-
|
|
92
|
-
it('defaults ssg.fallback to false', () => {
|
|
93
|
-
const cfg = resolveConfig({}, ROOT)
|
|
94
|
-
expect(cfg.ssg.fallback).toBe(false)
|
|
95
|
-
})
|
|
96
|
-
|
|
97
|
-
it('defaults autoImports.components to true', () => {
|
|
98
|
-
const cfg = resolveConfig({}, ROOT)
|
|
99
|
-
expect(cfg.autoImports.components).toBe(true)
|
|
100
|
-
})
|
|
101
|
-
|
|
102
|
-
it('defaults autoImports.composables to true', () => {
|
|
103
|
-
const cfg = resolveConfig({}, ROOT)
|
|
104
|
-
expect(cfg.autoImports.composables).toBe(true)
|
|
105
|
-
})
|
|
106
|
-
|
|
107
|
-
it('defaults autoImports.directives to true', () => {
|
|
108
|
-
const cfg = resolveConfig({}, ROOT)
|
|
109
|
-
expect(cfg.autoImports.directives).toBe(true)
|
|
110
|
-
})
|
|
111
|
-
|
|
112
|
-
it('defaults autoImports.runtime to true', () => {
|
|
113
|
-
const cfg = resolveConfig({}, ROOT)
|
|
114
|
-
expect(cfg.autoImports.runtime).toBe(true)
|
|
115
|
-
})
|
|
116
|
-
|
|
117
|
-
it('sets jitCss.content defaults relative to srcDir', () => {
|
|
118
|
-
const cfg = resolveConfig({}, ROOT)
|
|
119
|
-
expect(cfg.jitCss.content).toContain('/project/app/pages/**/*.ts')
|
|
120
|
-
expect(cfg.jitCss.content).toContain('/project/app/components/**/*.ts')
|
|
121
|
-
expect(cfg.jitCss.content).toContain('/project/app/layouts/**/*.ts')
|
|
122
|
-
})
|
|
123
|
-
|
|
124
|
-
it('defaults jitCss.extendedColors to false', () => {
|
|
125
|
-
const cfg = resolveConfig({}, ROOT)
|
|
126
|
-
expect(cfg.jitCss.extendedColors).toBe(false)
|
|
127
|
-
})
|
|
128
|
-
|
|
129
|
-
it('defaults jitCss.customColors to undefined', () => {
|
|
130
|
-
const cfg = resolveConfig({}, ROOT)
|
|
131
|
-
expect(cfg.jitCss.customColors).toBeUndefined()
|
|
132
|
-
})
|
|
133
|
-
|
|
134
|
-
it('passes jitCss.customColors through unchanged', () => {
|
|
135
|
-
const customColors = { brand: { '500': '#7c3aed', '100': '#ede9fe' } }
|
|
136
|
-
const cfg = resolveConfig({ jitCss: { customColors } }, ROOT)
|
|
137
|
-
expect(cfg.jitCss.customColors).toEqual(customColors)
|
|
138
|
-
})
|
|
139
|
-
|
|
140
|
-
it('passes jitCss.customColors with CSS variable values through', () => {
|
|
141
|
-
const customColors = { surface: { DEFAULT: 'var(--md-sys-color-surface)' } }
|
|
142
|
-
const cfg = resolveConfig({ jitCss: { customColors } }, ROOT)
|
|
143
|
-
expect(cfg.jitCss.customColors).toEqual(customColors)
|
|
144
|
-
})
|
|
145
|
-
|
|
146
|
-
it('allows jitCss.customColors alongside extendedColors', () => {
|
|
147
|
-
const customColors = { accent: { '500': '#f59e0b' } }
|
|
148
|
-
const cfg = resolveConfig({ jitCss: { extendedColors: true, customColors } }, ROOT)
|
|
149
|
-
expect(cfg.jitCss.extendedColors).toBe(true)
|
|
150
|
-
expect(cfg.jitCss.customColors).toEqual(customColors)
|
|
151
|
-
})
|
|
152
|
-
|
|
153
|
-
it('passes router.base through', () => {
|
|
154
|
-
const cfg = resolveConfig({ router: { base: '/app', scrollToFragment: false } }, ROOT)
|
|
155
|
-
expect(cfg.router.base).toBe('/app')
|
|
156
|
-
})
|
|
157
|
-
|
|
158
|
-
it('passes router.scrollToFragment through', () => {
|
|
159
|
-
const cfg = resolveConfig({ router: { base: undefined, scrollToFragment: true } }, ROOT)
|
|
160
|
-
expect(cfg.router.scrollToFragment).toBe(true)
|
|
161
|
-
})
|
|
162
|
-
|
|
163
|
-
it('includes root in the resolved config', () => {
|
|
164
|
-
const cfg = resolveConfig({}, ROOT)
|
|
165
|
-
expect(cfg.root).toBe(ROOT)
|
|
166
|
-
})
|
|
167
|
-
|
|
168
|
-
it('defaults runtimeConfig.public to an empty object', () => {
|
|
169
|
-
const cfg = resolveConfig({}, ROOT)
|
|
170
|
-
expect(cfg.runtimeConfig.public).toEqual({})
|
|
171
|
-
})
|
|
172
|
-
|
|
173
|
-
it('passes runtimeConfig.public values through', () => {
|
|
174
|
-
const cfg = resolveConfig({ runtimeConfig: { public: { apiBase: '/api', version: '1' } } }, ROOT)
|
|
175
|
-
expect(cfg.runtimeConfig.public).toEqual({ apiBase: '/api', version: '1' })
|
|
176
|
-
})
|
|
177
|
-
|
|
178
|
-
it('preserves runtimeConfig.public when other runtimeConfig fields are omitted', () => {
|
|
179
|
-
const cfg = resolveConfig({ runtimeConfig: { public: { foo: 42 } } }, ROOT)
|
|
180
|
-
expect(cfg.runtimeConfig.public.foo).toBe(42)
|
|
181
|
-
})
|
|
182
|
-
|
|
183
|
-
it('defaults runtimeConfig.private to an empty object', () => {
|
|
184
|
-
const cfg = resolveConfig({}, ROOT)
|
|
185
|
-
expect(cfg.runtimeConfig.private).toEqual({})
|
|
186
|
-
})
|
|
187
|
-
|
|
188
|
-
it('passes runtimeConfig.private values through', () => {
|
|
189
|
-
const cfg = resolveConfig({ runtimeConfig: { private: { dbUrl: '', secretKey: '' } } }, ROOT)
|
|
190
|
-
expect(cfg.runtimeConfig.private).toEqual({ dbUrl: '', secretKey: '' })
|
|
191
|
-
})
|
|
192
|
-
|
|
193
|
-
it('preserves both public and private when both are supplied', () => {
|
|
194
|
-
const cfg = resolveConfig({
|
|
195
|
-
runtimeConfig: { public: { apiBase: '/api' }, private: { token: '' } },
|
|
196
|
-
}, ROOT)
|
|
197
|
-
expect(cfg.runtimeConfig.public).toEqual({ apiBase: '/api' })
|
|
198
|
-
expect(cfg.runtimeConfig.private).toEqual({ token: '' })
|
|
199
|
-
})
|
|
200
|
-
|
|
201
|
-
it('defaults siteUrl to null when not set', () => {
|
|
202
|
-
const cfg = resolveConfig({}, ROOT)
|
|
203
|
-
expect(cfg.siteUrl).toBeNull()
|
|
204
|
-
})
|
|
205
|
-
|
|
206
|
-
it('stores siteUrl with trailing slash stripped', () => {
|
|
207
|
-
const cfg = resolveConfig({ siteUrl: 'https://example.com/' }, ROOT)
|
|
208
|
-
expect(cfg.siteUrl).toBe('https://example.com')
|
|
209
|
-
})
|
|
210
|
-
|
|
211
|
-
it('stores siteUrl unchanged when no trailing slash', () => {
|
|
212
|
-
const cfg = resolveConfig({ siteUrl: 'https://example.com' }, ROOT)
|
|
213
|
-
expect(cfg.siteUrl).toBe('https://example.com')
|
|
214
|
-
})
|
|
215
|
-
|
|
216
|
-
it('exposes siteUrl in runtimeConfig.public', () => {
|
|
217
|
-
const cfg = resolveConfig({ siteUrl: 'https://example.com' }, ROOT)
|
|
218
|
-
expect(cfg.runtimeConfig.public['siteUrl']).toBe('https://example.com')
|
|
219
|
-
})
|
|
220
|
-
|
|
221
|
-
it('does not add siteUrl to runtimeConfig.public when not set', () => {
|
|
222
|
-
const cfg = resolveConfig({}, ROOT)
|
|
223
|
-
expect(Object.prototype.hasOwnProperty.call(cfg.runtimeConfig.public, 'siteUrl')).toBe(false)
|
|
224
|
-
})
|
|
225
|
-
|
|
226
|
-
it('user-supplied runtimeConfig.public.siteUrl overrides the siteUrl shorthand', () => {
|
|
227
|
-
const cfg = resolveConfig({
|
|
228
|
-
siteUrl: 'https://example.com',
|
|
229
|
-
runtimeConfig: { public: { siteUrl: 'https://override.com' } },
|
|
230
|
-
}, ROOT)
|
|
231
|
-
expect(cfg.runtimeConfig.public['siteUrl']).toBe('https://override.com')
|
|
232
|
-
})
|
|
233
|
-
})
|