2021-04-21 19:56:30 +08:00
|
|
|
import { nextTick } from 'vue'
|
2020-09-08 22:04:45 +08:00
|
|
|
import { createRouter, createWebHistory } from 'vue-router'
|
2021-08-30 23:40:17 +08:00
|
|
|
import { useLocaleName } from '../store'
|
2020-03-20 17:32:05 +08:00
|
|
|
|
2020-09-27 22:27:25 +08:00
|
|
|
export const loadingBarApiRef = {}
|
|
|
|
|
2024-07-12 02:19:13 +08:00
|
|
|
export default function createDemoRouter(app, routes) {
|
2020-09-08 22:04:45 +08:00
|
|
|
const router = createRouter({
|
|
|
|
history: createWebHistory(),
|
2020-03-20 17:32:05 +08:00
|
|
|
routes
|
|
|
|
})
|
|
|
|
|
2024-07-12 02:19:13 +08:00
|
|
|
router.beforeEach((to, from, next) => {
|
2020-10-06 23:23:36 +08:00
|
|
|
if (!from || to.path !== from.path) {
|
|
|
|
if (loadingBarApiRef.value) {
|
|
|
|
loadingBarApiRef.value.start()
|
|
|
|
}
|
2020-09-27 22:27:25 +08:00
|
|
|
}
|
|
|
|
next()
|
|
|
|
})
|
|
|
|
|
2024-07-12 02:19:13 +08:00
|
|
|
router.afterEach((to, from) => {
|
2020-10-06 23:23:36 +08:00
|
|
|
if (!from || to.path !== from.path) {
|
2020-09-27 22:27:25 +08:00
|
|
|
if (loadingBarApiRef.value) {
|
|
|
|
loadingBarApiRef.value.finish()
|
|
|
|
}
|
2021-05-18 13:54:58 +08:00
|
|
|
if (to.hash && to.hash !== from.hash) {
|
2021-04-21 19:56:30 +08:00
|
|
|
nextTick(() => {
|
|
|
|
const el = document.querySelector(to.hash)
|
2024-07-12 02:19:13 +08:00
|
|
|
if (el)
|
|
|
|
el.scrollIntoView()
|
2021-04-21 19:56:30 +08:00
|
|
|
})
|
|
|
|
}
|
2021-08-30 23:40:17 +08:00
|
|
|
nextTick(() => {
|
|
|
|
const h1s = document.getElementsByTagName('h1')
|
|
|
|
if (to.name !== 'home' && h1s.length !== 0) {
|
2024-07-12 02:19:13 +08:00
|
|
|
document.title = `${h1s[0].textContent} - Naive UI`
|
|
|
|
}
|
|
|
|
else {
|
2021-08-30 23:40:17 +08:00
|
|
|
// defined in index.html
|
|
|
|
window.deriveTitleFromLocale(useLocaleName().value)
|
|
|
|
}
|
|
|
|
})
|
2020-09-27 22:27:25 +08:00
|
|
|
}
|
|
|
|
})
|
2020-09-08 22:04:45 +08:00
|
|
|
|
2020-03-20 17:32:05 +08:00
|
|
|
return router
|
|
|
|
}
|