mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
141 lines
2.9 KiB
Vue
141 lines
2.9 KiB
Vue
<template>
|
|
<div class="van-doc">
|
|
<doc-header
|
|
:lang="lang"
|
|
:config="config"
|
|
:versions="versions"
|
|
@switch-version="$emit('switch-version', $event)"
|
|
/>
|
|
<doc-nav :base="base" :nav-config="config.nav" />
|
|
<doc-container :has-simulator="!!(simulator || simulators.length)">
|
|
<doc-content>
|
|
<slot />
|
|
</doc-content>
|
|
</doc-container>
|
|
<doc-simulator v-if="simulator" :src="simulator" />
|
|
<doc-simulator
|
|
v-for="(url, index) in simulators"
|
|
v-show="index === currentSimulator"
|
|
:src="url"
|
|
:key="url"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import DocNav from './Nav';
|
|
import DocHeader from './Header';
|
|
import DocContent from './Content';
|
|
import DocContainer from './Container';
|
|
import DocSimulator from './Simulator';
|
|
|
|
export default {
|
|
name: 'van-doc',
|
|
|
|
components: {
|
|
DocNav,
|
|
DocHeader,
|
|
DocContent,
|
|
DocContainer,
|
|
DocSimulator
|
|
},
|
|
|
|
props: {
|
|
lang: String,
|
|
versions: Array,
|
|
currentSimulator: Number,
|
|
simulator: String,
|
|
config: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
simulators: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
base: {
|
|
type: String,
|
|
default: ''
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
nav: [],
|
|
currentPath: null,
|
|
leftNav: null,
|
|
rightNav: null
|
|
};
|
|
},
|
|
|
|
watch: {
|
|
// eslint-disable-next-line
|
|
'$route.path'() {
|
|
this.setNav();
|
|
this.updateNav();
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.setNav();
|
|
this.updateNav();
|
|
this.keyboardHandler();
|
|
},
|
|
|
|
methods: {
|
|
setNav() {
|
|
const { nav } = this.config;
|
|
for (let i = 0; i < nav.length; i++) {
|
|
const navItem = nav[i];
|
|
if (!navItem.groups) {
|
|
this.nav.push(nav[i]);
|
|
} else {
|
|
for (let j = 0; j < navItem.groups.length; j++) {
|
|
this.nav = this.nav.concat(navItem.groups[j].list);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
updateNav() {
|
|
let currentIndex;
|
|
this.currentPath = '/' + this.$route.path.split('/').pop();
|
|
for (let i = 0, len = this.nav.length; i < len; i++) {
|
|
if (this.nav[i].path === this.currentPath) {
|
|
currentIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
this.leftNav = this.nav[currentIndex - 1];
|
|
this.rightNav = this.nav[currentIndex + 1];
|
|
},
|
|
|
|
handleNavClick(direction) {
|
|
const nav = direction === 'prev' ? this.leftNav : this.rightNav;
|
|
if (nav.path) {
|
|
this.$router.push(this.base + nav.path);
|
|
} else if (nav.link) {
|
|
window.location.href = nav.link;
|
|
}
|
|
},
|
|
|
|
keyboardHandler() {
|
|
window.addEventListener('keyup', event => {
|
|
switch (event.keyCode) {
|
|
case 37: // left
|
|
this.handleNavClick('prev');
|
|
break;
|
|
case 39: // right
|
|
this.handleNavClick('next');
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import '../../common/style/index';
|
|
</style>
|