element/examples/components/side-nav.vue

254 lines
6.1 KiB
Vue
Raw Normal View History

2016-08-23 06:03:45 +00:00
<style>
2016-08-23 09:39:58 +00:00
.side-nav {
width: 100%;
box-sizing: border-box;
2016-09-18 14:01:26 +00:00
padding-right: 30px;
2016-08-23 09:39:58 +00:00
li {
list-style: none;
}
2017-09-28 12:15:00 +00:00
2016-08-23 09:39:58 +00:00
ul {
padding: 0;
2016-08-23 11:15:15 +00:00
margin: 0;
2016-08-25 07:54:45 +00:00
overflow: hidden;
2016-08-23 09:39:58 +00:00
}
2017-03-09 16:24:15 +00:00
2016-12-27 05:59:40 +00: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 10:31:12 +00:00
padding-bottom: 6px;
2016-12-27 05:59:40 +00:00
border-bottom: 1px solid #eaeefb;
&:hover {
cursor: pointer;
}
}
i {
transition: .2s;
font-size: 12px;
color: #d3dce6;
}
@when active {
span, i {
2017-09-28 12:15:00 +00:00
color: #1989FA;
2016-12-27 05:59:40 +00:00
}
i {
transform: rotateZ(180deg) translateY(2px);
}
}
&:hover {
span, i {
2017-09-28 12:15:00 +00:00
color: #1989FA;
2016-12-27 05:59:40 +00:00
}
}
}
2016-08-23 09:39:58 +00:00
.nav-item {
a {
2016-09-13 12:02:33 +00:00
font-size: 16px;
2017-09-28 12:15:00 +00:00
color: #333;
2016-09-13 12:02:33 +00:00
line-height: 40px;
height: 40px;
2016-09-07 04:17:16 +00:00
margin: 0;
2016-09-13 12:02:33 +00:00
padding: 0;
2016-08-23 09:39:58 +00:00
text-decoration: none;
display: block;
2016-09-07 04:17:16 +00:00
position: relative;
2017-09-28 12:15:00 +00:00
transition: .15s ease-out;
font-weight: bold;
2016-08-23 09:39:58 +00:00
&.active {
2017-09-28 12:15:00 +00:00
color: #1989FA;
2016-08-23 09:39:58 +00:00
}
}
2017-09-28 12:15:00 +00:00
2016-08-23 09:39:58 +00:00
.nav-item {
a {
2016-09-07 04:17:16 +00:00
display: block;
2016-09-13 12:02:33 +00:00
height: 40px;
2017-09-28 12:15:00 +00:00
color: #666;
2016-09-13 12:02:33 +00:00
line-height: 40px;
2017-09-28 12:15:00 +00:00
font-size: 14px;
2017-03-09 16:24:15 +00:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2017-09-28 12:15:00 +00:00
font-weight: normal;
2016-09-07 04:17:16 +00:00
2017-09-28 12:15:00 +00:00
&:hover,
&.active {
color: #1989FA;
2016-08-23 09:39:58 +00:00
}
}
}
}
2017-09-28 12:15:00 +00:00
2016-08-23 09:39:58 +00:00
.nav-group__title {
2016-09-13 12:02:33 +00:00
font-size: 12px;
2017-09-28 12:15:00 +00:00
color: #999;
2016-09-13 12:02:33 +00:00
line-height: 26px;
2017-09-28 12:15:00 +00:00
margin-top: 15px;
2016-08-23 09:39:58 +00:00
}
}
2016-12-27 05:59:40 +00:00
.nav-dropdown-list {
width: 120px;
margin-top: -8px;
li {
font-size: 14px;
}
}
2016-08-23 06:03:45 +00:00
</style>
<template>
2016-11-18 08:49:07 +00:00
<div class="side-nav" :style="navStyle">
2016-08-23 06:03:45 +00:00
<ul>
2016-08-23 09:39:58 +00:00
<li class="nav-item" v-for="item in data">
2017-05-10 12:44:49 +00: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 11:15:15 +00:00
<router-link
2017-05-10 12:44:49 +00:00
v-if="item.path"
2016-08-23 11:15:15 +00:00
active-class="active"
:to="base + item.path"
exact
v-text="item.title || item.name">
</router-link>
2016-08-23 09:39:58 +00: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 11:15:15 +00:00
:to="base + navItem.path"
2016-08-23 09:39:58 +00:00
exact
2016-08-23 11:15:15 +00:00
v-text="navItem.title || navItem.name">
2016-08-23 09:39:58 +00:00
</router-link>
</li>
</ul>
<template v-if="item.groups">
<div class="nav-group" v-for="group in item.groups">
2016-11-18 08:49:07 +00:00
<div class="nav-group__title" @click="expandMenu">{{group.groupName}}</div>
2016-08-23 09:39:58 +00:00
<ul class="pure-menu-list">
<li
class="nav-item"
2016-08-23 11:15:15 +00:00
v-for="navItem in group.list"
v-if="!navItem.disabled">
2016-08-23 09:39:58 +00:00
<router-link
active-class="active"
2016-08-23 11:15:15 +00:00
:to="base + navItem.path"
2016-08-23 09:39:58 +00:00
exact
2016-08-23 11:15:15 +00:00
v-text="navItem.title"></router-link>
2016-08-23 09:39:58 +00:00
</li>
</ul>
</div>
</template>
2016-08-23 06:03:45 +00:00
</li>
</ul>
</div>
</template>
<script>
2016-12-27 05:59:40 +00:00
import compoLang from '../i18n/component.json';
2016-12-27 10:38:16 +00:00
import { version } from 'main/index.js';
2016-12-27 05:59:40 +00:00
2016-08-23 06:03:45 +00:00
export default {
props: {
2016-08-23 11:15:15 +00:00
data: Array,
base: {
type: String,
default: ''
}
2016-08-23 06:03:45 +00:00
},
data() {
return {
highlights: [],
2016-11-18 08:49:07 +00:00
navState: [],
2016-12-27 05:59:40 +00:00
isSmallScreen: false,
versions: [],
2016-12-27 10:38:16 +00:00
version,
2016-12-27 05:59:40 +00:00
dropdownVisible: false
2016-08-23 06:03:45 +00:00
};
2016-11-18 08:49:07 +00:00
},
watch: {
'$route.path'() {
this.handlePathChange();
}
},
computed: {
navStyle() {
return this.isSmallScreen ? { 'padding-bottom': '60px' } : {};
2016-12-27 05:59:40 +00:00
},
isComponentPage() {
return /^component-/.test(this.$route.name);
},
langConfig() {
return compoLang.filter(config => config.lang === this.$route.meta.lang)[0]['nav'];
2016-11-18 08:49:07 +00:00
}
},
methods: {
2016-12-27 05:59:40 +00:00
switchVersion(version) {
if (version === this.version) return;
location.href = `${ location.origin }/${ this.versions[version] }/${ location.hash } `;
},
2016-11-18 08:49:07 +00: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 05:59:40 +00:00
},
handleDropdownToggle(visible) {
this.dropdownVisible = visible;
2016-11-18 08:49:07 +00:00
}
},
2016-12-27 05:59:40 +00: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 08:49:07 +00:00
mounted() {
this.handleResize();
window.addEventListener('resize', this.handleResize);
},
beforeDestroy() {
window.removeEventListener('resize', this.handleResize);
2016-08-23 06:03:45 +00:00
}
};
</script>