diff --git a/.gitignore b/.gitignore index daa1d00..99e8630 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ node_modules dist dist-ssr *.local +.vite-ssg-temp /content # Editor directories and files diff --git a/src/content-env.d.ts b/src/content-env.d.ts index 4bb06fc..d08b44c 100644 --- a/src/content-env.d.ts +++ b/src/content-env.d.ts @@ -2,10 +2,12 @@ declare module 'content/routes.js' { type Template = | 'markdown' - type Routes = { [key: string]: { + type RouteDefinition = { id: string template: Template - }} + } - const routes: Routes + type RouteCollection = { [key: string]: RouteDefinition } + + const routes: RouteCollection } diff --git a/src/main.ts b/src/main.ts index 2759bdf..bd62aec 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,7 +1,10 @@ +import { type RouteRecordRaw } from 'vue-router' import { ViteSSG } from 'vite-ssg' import './style.css' import main from './main.vue' -import { createRoutes } from './routes' +import { createPinia } from 'pinia' +import { createRoutes, useRouteStore } from './routes' +import { routes as appRoutes, type RouteDefinition } from 'content/routes.js' export const createApp = ViteSSG( // the root component @@ -9,7 +12,14 @@ export const createApp = ViteSSG( // vue-router options { routes: createRoutes() }, // function to have custom setups - // ({ app, router, routes, isClient, initialState }) => { - // // install plugins etc. - // }, + ({ app, router, routes, isClient, initialState }) => { + app.use(createPinia()) + const routeStore = useRouteStore() + Object.keys(appRoutes).forEach(route => + routeStore._routes[route] = { + ...routes.find(other => other.path === route) as RouteRecordRaw, + ...appRoutes[route] as RouteDefinition, + } + ) + }, ) diff --git a/src/routes.ts b/src/routes.ts index dd9cc77..07de9e6 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -1,5 +1,6 @@ +import { defineStore } from 'pinia' import { type RouteRecordRaw } from 'vue-router' -import { routes, type Template } from 'content/routes.js' +import { routes, type RouteDefinition, type Template } from 'content/routes.js' const markdownBody = () => import ('./views/markdown.vue') @@ -20,3 +21,18 @@ export const createRoutes = (): RouteRecordRaw[] => { return routeRecord } + +export const useRouteStore = defineStore('routeStore', { + state: () => ({ + _routes: {} as Record, + }), + actions: { + + }, +}) + +export type RouteStoreDefinition = Omit< + ReturnType, + keyof ReturnType +> + diff --git a/src/views/markdown.vue b/src/views/markdown.vue new file mode 100644 index 0000000..916ff90 --- /dev/null +++ b/src/views/markdown.vue @@ -0,0 +1,18 @@ + + + + + diff --git a/tsconfig.json b/tsconfig.json index 6df4171..b25c3e9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,8 +22,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "noFallthroughCasesInSwitch": true }, "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],