2021-01-18 12:46:19 +00:00
|
|
|
import { shallowRef } from 'vue'
|
|
|
|
import {
|
|
|
|
createRouter,
|
|
|
|
createWebHistory,
|
|
|
|
createMemoryHistory,
|
|
|
|
RouterLink
|
|
|
|
} from 'vue-router'
|
2021-05-20 11:42:41 +00:00
|
|
|
// @ts-ignore
|
2021-06-18 17:16:51 +00:00
|
|
|
import { defineNuxtPlugin } from '@nuxt/app'
|
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'
|
2021-04-09 13:48:39 +00:00
|
|
|
// @ts-ignore
|
2021-04-29 11:51:54 +00:00
|
|
|
import routes from '#build/routes'
|
2021-01-18 12:46:19 +00:00
|
|
|
|
2021-06-18 17:16:51 +00:00
|
|
|
export default defineNuxtPlugin((nuxt) => {
|
2021-01-18 12:46:19 +00:00
|
|
|
const { app } = nuxt
|
|
|
|
|
|
|
|
app.component('NuxtPage', NuxtPage)
|
2021-06-30 16:32:22 +00:00
|
|
|
app.component('NuxtLayout', NuxtLayout)
|
2021-01-18 12:46:19 +00:00
|
|
|
app.component('NuxtLink', RouterLink)
|
|
|
|
|
|
|
|
const routerHistory = process.client
|
|
|
|
? createWebHistory()
|
|
|
|
: createMemoryHistory()
|
|
|
|
|
|
|
|
const router = createRouter({
|
|
|
|
history: routerHistory,
|
|
|
|
routes
|
|
|
|
})
|
|
|
|
app.use(router)
|
2021-02-19 01:08:45 +00:00
|
|
|
nuxt.provide('router', router)
|
2021-01-18 12:46:19 +00:00
|
|
|
|
|
|
|
const previousRoute = shallowRef(router.currentRoute.value)
|
|
|
|
router.afterEach((_to, from) => {
|
|
|
|
previousRoute.value = from
|
|
|
|
})
|
|
|
|
|
|
|
|
Object.defineProperty(app.config.globalProperties, 'previousRoute', {
|
|
|
|
get: () => previousRoute.value
|
|
|
|
})
|
|
|
|
|
2021-02-19 01:08:45 +00:00
|
|
|
nuxt.hook('app:created', async () => {
|
2021-01-18 12:46:19 +00:00
|
|
|
if (process.server) {
|
|
|
|
router.push(nuxt.ssrContext.url)
|
|
|
|
}
|
2021-07-15 09:47:15 +00:00
|
|
|
|
|
|
|
await router.isReady()
|
|
|
|
|
|
|
|
const is404 = router.currentRoute.value.matched.length === 0
|
|
|
|
if (process.server && is404) {
|
|
|
|
const error = new Error(`Page not found: ${nuxt.ssrContext.url}`)
|
|
|
|
// @ts-ignore
|
|
|
|
error.statusCode = 404
|
|
|
|
nuxt.ssrContext.error = error
|
2021-01-18 12:46:19 +00:00
|
|
|
}
|
|
|
|
})
|
2021-06-18 17:16:51 +00:00
|
|
|
})
|