mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
115 lines
2.4 KiB
Vue
115 lines
2.4 KiB
Vue
<template>
|
|
<n-config-provider class="demo" namespace="naive-ui-doc" :theme="theme" :language="lang">
|
|
<n-layout mode="absolute" class="root-layout">
|
|
<n-layout-header bordered style="z-index: 3000;">
|
|
<doc-header
|
|
:lang="lang"
|
|
:items="flattenedItems"
|
|
@lang-change="handleLangChange"
|
|
/>
|
|
</n-layout-header>
|
|
<n-layout class="home-layout" style="top: 64px; overflow: hidden;" mode="absolute">
|
|
<router-view />
|
|
</n-layout>
|
|
</n-layout>
|
|
</n-config-provider>
|
|
</template>
|
|
|
|
<script>
|
|
import DocHeader from './header.vue'
|
|
import menuOptions from './menuOptions'
|
|
import { i18n } from './init'
|
|
|
|
export default {
|
|
components: {
|
|
DocHeader
|
|
},
|
|
provide () {
|
|
return {
|
|
NEntry: this
|
|
}
|
|
},
|
|
beforeRouteEnter (to, from, next) {
|
|
i18n.locale = to.params.lang
|
|
next()
|
|
},
|
|
beforeRouteUpdate (to, from, next) {
|
|
this.$i18n.locale = to.params.lang
|
|
next()
|
|
},
|
|
computed: {
|
|
items () {
|
|
return menuOptions(this.lang, this)
|
|
},
|
|
flattenedItems () {
|
|
const flattenedItems = []
|
|
const traverse = items => {
|
|
if (items) {
|
|
items.forEach(item => {
|
|
if (item.childItems) traverse(item.childItems)
|
|
else flattenedItems.push(item)
|
|
})
|
|
}
|
|
}
|
|
traverse(this.items)
|
|
return flattenedItems
|
|
},
|
|
lang: {
|
|
get () {
|
|
return this.$route.params.lang || 'en-US'
|
|
},
|
|
set (lang) {
|
|
this.$router.push(changeLangInPath(this.$route.fullPath, lang))
|
|
}
|
|
},
|
|
theme: {
|
|
get () {
|
|
return this.$route.params.theme === 'light' ? 'light' : 'dark'
|
|
},
|
|
set (theme) {
|
|
this.$router.push(changeThemeInPath(this.$route.fullPath, theme))
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
handleLangChange (lang) {
|
|
this.lang = lang
|
|
}
|
|
}
|
|
}
|
|
|
|
function changeLangInPath (path, lang) {
|
|
const langReg = /^\/(zh-CN|en-US)\//
|
|
return path.replace(langReg, `/${lang}/`)
|
|
}
|
|
|
|
function changeThemeInPath (path, theme) {
|
|
const themeReg = /(^\/[^/]+\/)([^/]+)/
|
|
return path.replace(themeReg, '$1' + theme)
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.demo {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
min-width: 1080px;
|
|
}
|
|
</style>
|
|
|
|
<style lang="scss">
|
|
body {
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
.root-layout.n-layout.n-light-theme {
|
|
background-color: white;
|
|
}
|
|
.home-layout.n-layout.n-light-theme {
|
|
background-color: white;
|
|
}
|
|
</style>
|