element/examples/components/side-nav.vue

272 lines
6.7 KiB
Vue
Raw Normal View History

2016-08-23 14:03:45 +08:00
<style>
2016-08-23 17:39:58 +08:00
.side-nav {
width: 100%;
box-sizing: border-box;
2016-09-18 22:01:26 +08:00
padding-right: 30px;
2016-08-23 17:39:58 +08:00
li {
list-style: none;
}
ul {
padding: 0;
2016-08-23 19:15:15 +08:00
margin: 0;
2016-08-25 15:54:45 +08:00
overflow: hidden;
2016-08-23 17:39:58 +08:00
}
2017-03-10 00:24:15 +08:00
2016-12-27 13:59:40 +08:00
.nav-dropdown {
margin-bottom: 6px;
width: 100%;
span {
display: block;
width: 100%;
font-size: 16px;
color: #5e6d82;
line-height: 40px;
transition: .2s;
2016-12-28 18:31:12 +08:00
padding-bottom: 6px;
2016-12-27 13:59:40 +08:00
border-bottom: 1px solid #eaeefb;
&:hover {
cursor: pointer;
}
}
i {
transition: .2s;
font-size: 12px;
color: #d3dce6;
}
@when active {
span, i {
color: #20a0ff;
}
i {
transform: rotateZ(180deg) translateY(2px);
}
}
&:hover {
span, i {
color: #20a0ff;
}
}
}
2016-08-23 17:39:58 +08:00
.nav-item {
a {
2016-09-13 20:02:33 +08:00
font-size: 16px;
color: #5e6d82;
line-height: 40px;
height: 40px;
2016-09-07 12:17:16 +08:00
margin: 0;
2016-09-13 20:02:33 +08:00
padding: 0;
2016-08-23 17:39:58 +08:00
text-decoration: none;
display: block;
2016-09-07 12:17:16 +08:00
position: relative;
transition: all .3s;
2016-08-23 17:39:58 +08:00
&.active {
color: #20a0ff;
}
}
.nav-item {
a {
2016-09-07 12:17:16 +08:00
display: block;
2016-09-13 20:02:33 +08:00
height: 40px;
line-height: 40px;
font-size: 13px;
padding-left: 24px;
2017-03-10 00:24:15 +08:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2016-09-07 12:17:16 +08:00
2016-08-23 17:39:58 +08:00
&:hover {
2016-09-07 12:17:16 +08:00
color: #20a0ff;
2016-08-23 17:39:58 +08:00
}
}
}
}
.nav-group__title {
2016-09-13 20:02:33 +08:00
font-size: 12px;
2016-08-23 17:39:58 +08:00
color: #99a9bf;
2016-09-13 20:02:33 +08:00
padding-left: 8px;
line-height: 26px;
margin-top: 10px;
2016-08-23 17:39:58 +08:00
}
}
2016-12-27 13:59:40 +08:00
.nav-dropdown-list {
width: 120px;
margin-top: -8px;
li {
font-size: 14px;
}
}
2016-08-23 14:03:45 +08:00
</style>
<template>
2016-11-18 16:49:07 +08:00
<div class="side-nav" :style="navStyle">
2016-12-27 13:59:40 +08:00
<el-dropdown
v-show="isComponentPage"
trigger="click"
class="nav-dropdown"
:class="{ 'is-active': dropdownVisible }">
<span>
{{ langConfig.dropdown }}{{ version }}
<i class="el-icon-caret-bottom el-icon--right"></i>
</span>
<el-dropdown-menu
slot="dropdown"
:offset="-80"
class="nav-dropdown-list"
@input="handleDropdownToggle">
<el-dropdown-item
v-for="item in Object.keys(versions)"
2017-04-28 14:03:42 +08:00
:key="item"
2016-12-27 13:59:40 +08:00
@click.native="switchVersion(item)">
{{ item }}
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
2016-08-23 14:03:45 +08:00
<ul>
2016-08-23 17:39:58 +08:00
<li class="nav-item" v-for="item in data">
2017-05-10 20:44:49 +08:00
<a v-if="!item.path && !item.href" @click="expandMenu">{{item.name}}</a>
<a v-if="item.href" :href="item.href" target="_blank">{{item.name}}</a>
2016-08-23 19:15:15 +08:00
<router-link
2017-05-10 20:44:49 +08:00
v-if="item.path"
2016-08-23 19:15:15 +08:00
active-class="active"
:to="base + item.path"
exact
v-text="item.title || item.name">
</router-link>
2016-08-23 17:39:58 +08:00
<ul class="pure-menu-list sub-nav" v-if="item.children">
<li class="nav-item" v-for="navItem in item.children">
<router-link
class=""
active-class="active"
2016-08-23 19:15:15 +08:00
:to="base + navItem.path"
2016-08-23 17:39:58 +08:00
exact
2016-08-23 19:15:15 +08:00
v-text="navItem.title || navItem.name">
2016-08-23 17:39:58 +08:00
</router-link>
</li>
</ul>
<template v-if="item.groups">
<div class="nav-group" v-for="group in item.groups">
2016-11-18 16:49:07 +08:00
<div class="nav-group__title" @click="expandMenu">{{group.groupName}}</div>
2016-08-23 17:39:58 +08:00
<ul class="pure-menu-list">
<li
class="nav-item"
2016-08-23 19:15:15 +08:00
v-for="navItem in group.list"
v-if="!navItem.disabled">
2016-08-23 17:39:58 +08:00
<router-link
active-class="active"
2016-08-23 19:15:15 +08:00
:to="base + navItem.path"
2016-08-23 17:39:58 +08:00
exact
2016-08-23 19:15:15 +08:00
v-text="navItem.title"></router-link>
2016-08-23 17:39:58 +08:00
</li>
</ul>
</div>
</template>
2016-08-23 14:03:45 +08:00
</li>
</ul>
</div>
</template>
<script>
2016-12-27 13:59:40 +08:00
import compoLang from '../i18n/component.json';
2016-12-27 18:38:16 +08:00
import { version } from 'main/index.js';
2016-12-27 13:59:40 +08:00
2016-08-23 14:03:45 +08:00
export default {
props: {
2016-08-23 19:15:15 +08:00
data: Array,
base: {
type: String,
default: ''
}
2016-08-23 14:03:45 +08:00
},
data() {
return {
highlights: [],
2016-11-18 16:49:07 +08:00
navState: [],
2016-12-27 13:59:40 +08:00
isSmallScreen: false,
versions: [],
2016-12-27 18:38:16 +08:00
version,
2016-12-27 13:59:40 +08:00
dropdownVisible: false
2016-08-23 14:03:45 +08:00
};
2016-11-18 16:49:07 +08:00
},
watch: {
'$route.path'() {
this.handlePathChange();
}
},
computed: {
navStyle() {
return this.isSmallScreen ? { 'padding-bottom': '60px' } : {};
2016-12-27 13:59:40 +08:00
},
isComponentPage() {
return /^component-/.test(this.$route.name);
},
langConfig() {
return compoLang.filter(config => config.lang === this.$route.meta.lang)[0]['nav'];
2016-11-18 16:49:07 +08:00
}
},
methods: {
2016-12-27 13:59:40 +08:00
switchVersion(version) {
if (version === this.version) return;
location.href = `${ location.origin }/${ this.versions[version] }/${ location.hash } `;
},
2016-11-18 16:49:07 +08:00
handleResize() {
this.isSmallScreen = document.documentElement.clientWidth < 768;
this.handlePathChange();
},
handlePathChange() {
if (!this.isSmallScreen) {
this.expandAllMenu();
return;
}
this.$nextTick(() => {
this.hideAllMenu();
let activeAnchor = this.$el.querySelector('a.active');
let ul = activeAnchor.parentNode;
while (ul.tagName !== 'UL') {
ul = ul.parentNode;
}
ul.style.height = 'auto';
});
},
hideAllMenu() {
[].forEach.call(this.$el.querySelectorAll('.pure-menu-list'), ul => {
ul.style.height = '0';
});
},
expandAllMenu() {
[].forEach.call(this.$el.querySelectorAll('.pure-menu-list'), ul => {
ul.style.height = 'auto';
});
},
expandMenu(event) {
if (!this.isSmallScreen) return;
let target = event.currentTarget;
if (!target.nextElementSibling || target.nextElementSibling.tagName !== 'UL') return;
this.hideAllMenu();
event.currentTarget.nextElementSibling.style.height = 'auto';
2016-12-27 13:59:40 +08:00
},
handleDropdownToggle(visible) {
this.dropdownVisible = visible;
2016-11-18 16:49:07 +08:00
}
},
2016-12-27 13:59:40 +08:00
created() {
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = _ => {
if (xhr.readyState === 4 && xhr.status === 200) {
this.versions = JSON.parse(xhr.responseText);
}
};
xhr.open('GET', '/versions.json');
xhr.send();
},
2016-11-18 16:49:07 +08:00
mounted() {
this.handleResize();
window.addEventListener('resize', this.handleResize);
},
beforeDestroy() {
window.removeEventListener('resize', this.handleResize);
2016-08-23 14:03:45 +08:00
}
};
</script>