2021-12-20 10:37:00 +00:00
|
|
|
import { computed, reactive, shallowRef } from 'vue'
|
2021-01-18 12:46:19 +00:00
|
|
|
import {
|
|
|
|
createRouter,
|
|
|
|
createWebHistory,
|
|
|
|
createMemoryHistory,
|
2022-01-25 12:29:11 +00:00
|
|
|
RouterLink,
|
|
|
|
NavigationGuard
|
2021-01-18 12:46:19 +00:00
|
|
|
} from 'vue-router'
|
2021-12-20 10:37:58 +00:00
|
|
|
import NuxtNestedPage from './nested-page.vue'
|
2021-05-24 11:14:10 +00:00
|
|
|
import NuxtPage from './page.vue'
|
2021-06-30 16:32:22 +00:00
|
|
|
import NuxtLayout from './layout'
|
2022-01-25 12:29:11 +00:00
|
|
|
import { callWithNuxt, defineNuxtPlugin, useRuntimeConfig } from '#app'
|
2021-04-09 13:48:39 +00:00
|
|
|
// @ts-ignore
|
2021-04-29 11:51:54 +00:00
|
|
|
import routes from '#build/routes'
|
2022-01-25 12:29:11 +00:00
|
|
|
// @ts-ignore
|
|
|
|
import { globalMiddleware, namedMiddleware } from '#build/middleware'
|
2021-01-18 12:46:19 +00:00
|
|
|
|
2021-12-10 13:46:53 +00:00
|
|
|
declare module 'vue' {
|
|
|
|
export interface GlobalComponents {
|
2021-12-20 10:37:58 +00:00
|
|
|
NuxtNestedPage: typeof NuxtNestedPage
|
2021-12-10 13:46:53 +00:00
|
|
|
NuxtPage: typeof NuxtPage
|
|
|
|
NuxtLayout: typeof NuxtLayout
|
|
|
|
NuxtLink: typeof RouterLink
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-18 18:31:37 +00:00
|
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
2021-12-20 10:37:58 +00:00
|
|
|
nuxtApp.vueApp.component('NuxtNestedPage', NuxtNestedPage)
|
2021-10-18 18:31:37 +00:00
|
|
|
nuxtApp.vueApp.component('NuxtPage', NuxtPage)
|
|
|
|
nuxtApp.vueApp.component('NuxtLayout', NuxtLayout)
|
|
|
|
nuxtApp.vueApp.component('NuxtLink', RouterLink)
|
2021-12-20 10:37:58 +00:00
|
|
|
// TODO: remove before release - present for backwards compatibility & intentionally undocumented
|
|
|
|
nuxtApp.vueApp.component('NuxtChild', NuxtNestedPage)
|
2021-01-18 12:46:19 +00:00
|
|
|
|
2022-01-18 16:59:14 +00:00
|
|
|
const { baseURL } = useRuntimeConfig().app
|
2021-01-18 12:46:19 +00:00
|
|
|
const routerHistory = process.client
|
2022-01-18 16:59:14 +00:00
|
|
|
? createWebHistory(baseURL)
|
|
|
|
: createMemoryHistory(baseURL)
|
2021-01-18 12:46:19 +00:00
|
|
|
|
|
|
|
const router = createRouter({
|
|
|
|
history: routerHistory,
|
|
|
|
routes
|
|
|
|
})
|
2021-10-18 18:31:37 +00:00
|
|
|
nuxtApp.vueApp.use(router)
|
2021-01-18 12:46:19 +00:00
|
|
|
|
|
|
|
const previousRoute = shallowRef(router.currentRoute.value)
|
|
|
|
router.afterEach((_to, from) => {
|
|
|
|
previousRoute.value = from
|
|
|
|
})
|
|
|
|
|
2021-10-18 18:31:37 +00:00
|
|
|
Object.defineProperty(nuxtApp.vueApp.config.globalProperties, 'previousRoute', {
|
2021-01-18 12:46:19 +00:00
|
|
|
get: () => previousRoute.value
|
|
|
|
})
|
|
|
|
|
2021-12-20 10:37:00 +00:00
|
|
|
// https://github.com/vuejs/vue-router-next/blob/master/src/router.ts#L1192-L1200
|
|
|
|
const route = {}
|
|
|
|
for (const key in router.currentRoute.value) {
|
|
|
|
route[key] = computed(() => router.currentRoute.value[key])
|
|
|
|
}
|
|
|
|
|
|
|
|
nuxtApp._route = reactive(route)
|
|
|
|
|
2022-01-25 12:29:11 +00:00
|
|
|
nuxtApp._middleware = nuxtApp._middleware || {
|
|
|
|
global: [],
|
|
|
|
named: {}
|
|
|
|
}
|
|
|
|
|
|
|
|
router.beforeEach(async (to, from) => {
|
|
|
|
nuxtApp._processingMiddleware = true
|
|
|
|
|
|
|
|
type MiddlewareDef = string | NavigationGuard
|
|
|
|
const middlewareEntries = new Set<MiddlewareDef>([...globalMiddleware, ...nuxtApp._middleware.global])
|
|
|
|
for (const component of to.matched) {
|
|
|
|
const componentMiddleware = component.meta.middleware as MiddlewareDef | MiddlewareDef[]
|
|
|
|
if (!componentMiddleware) { continue }
|
|
|
|
if (Array.isArray(componentMiddleware)) {
|
|
|
|
for (const entry of componentMiddleware) {
|
|
|
|
middlewareEntries.add(entry)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
middlewareEntries.add(componentMiddleware)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const entry of middlewareEntries) {
|
|
|
|
const middleware = typeof entry === 'string' ? nuxtApp._middleware.named[entry] || await namedMiddleware[entry]?.().then(r => r.default || r) : entry
|
|
|
|
|
|
|
|
if (process.dev && !middleware) {
|
|
|
|
console.warn(`Unknown middleware: ${entry}. Valid options are ${Object.keys(namedMiddleware).join(', ')}.`)
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = await callWithNuxt(nuxtApp, middleware, [to, from])
|
|
|
|
if (result || result === false) { return result }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
router.afterEach(() => {
|
|
|
|
delete nuxtApp._processingMiddleware
|
|
|
|
})
|
|
|
|
|
2021-10-18 18:31:37 +00:00
|
|
|
nuxtApp.hook('app:created', async () => {
|
2021-01-18 12:46:19 +00:00
|
|
|
if (process.server) {
|
2021-10-18 18:31:37 +00:00
|
|
|
router.push(nuxtApp.ssrContext.url)
|
2022-01-25 12:29:11 +00:00
|
|
|
|
|
|
|
router.afterEach((to) => {
|
|
|
|
if (to.fullPath !== nuxtApp.ssrContext.url) {
|
|
|
|
nuxtApp.ssrContext.res.setHeader('Location', to.fullPath)
|
|
|
|
}
|
|
|
|
})
|
2021-01-18 12:46:19 +00:00
|
|
|
}
|
2021-07-15 09:47:15 +00:00
|
|
|
|
|
|
|
await router.isReady()
|
|
|
|
|
|
|
|
const is404 = router.currentRoute.value.matched.length === 0
|
|
|
|
if (process.server && is404) {
|
2021-10-18 18:31:37 +00:00
|
|
|
const error = new Error(`Page not found: ${nuxtApp.ssrContext.url}`)
|
2021-07-15 09:47:15 +00:00
|
|
|
// @ts-ignore
|
|
|
|
error.statusCode = 404
|
2021-10-18 18:31:37 +00:00
|
|
|
nuxtApp.ssrContext.error = error
|
2021-01-18 12:46:19 +00:00
|
|
|
}
|
|
|
|
})
|
2021-11-18 13:11:34 +00:00
|
|
|
|
|
|
|
return { provide: { router } }
|
2021-06-18 17:16:51 +00:00
|
|
|
})
|