element/examples/components/side-nav.vue

275 lines
6.2 KiB
Vue
Raw Normal View History

<style lang="scss">
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;
transition: opacity .3s;
&.is-fade {
transition: opacity 3s;
2017-09-29 07:37:50 +00:00
}
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
}
> ul > .nav-item > a {
margin-top: 15px;
}
2017-03-09 16:24:15 +00:00
2017-11-01 10:17:14 +00:00
> ul > .nav-item:nth-child(-n + 4) > a {
margin-top: 0;
}
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 {
color: #409EFF;
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;
color: #444;
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: #409EFF;
2016-08-23 09:39:58 +00:00
}
}
}
2018-01-31 06:21:30 +00:00
&.sponsors {
& > .sub-nav {
margin-top: -10px;
}
& > a {
color: #777;
font-weight: 300;
font-size: 14px;
}
.nav-item {
display: inline-block;
a {
height: auto;
display: inline-block;
vertical-align: middle;
margin: 8px 12px 12px 0;
img {
width: 42px;
2018-01-31 06:21:30 +00:00
}
}
&:first-child a img {
width: 36px;
2018-01-31 06:21:30 +00:00
}
}
}
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
}
#code-sponsor-widget {
margin: 0 0 0 -20px;
}
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>
2017-09-29 07:37:50 +00:00
<div
class="side-nav"
@mouseenter="isFade = false"
:class="{ 'is-fade': isFade }"
2017-09-29 07:37:50 +00:00
:style="navStyle">
2016-08-23 06:03:45 +00:00
<ul>
<li
class="nav-item"
v-for="(item, key) in data"
:key="key">
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, key) in item.children"
:key="key">
2016-08-23 09:39:58 +00:00
<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, key) in item.groups"
:key="key"
>
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"
v-for="(navItem, key) in group.list"
v-show="!navItem.disabled"
:key="key">
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 id="code-sponsor-widget"></div>-->
2016-08-23 06:03:45 +00:00
</div>
</template>
<script>
2017-09-29 07:37:50 +00:00
import bus from '../bus';
2016-12-27 05:59:40 +00:00
import compoLang from '../i18n/component.json';
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,
2017-09-29 07:37:50 +00:00
isFade: false
2016-08-23 06:03:45 +00:00
};
2016-11-18 08:49:07 +00:00
},
watch: {
'$route.path'() {
this.handlePathChange();
2017-09-29 07:37:50 +00:00
},
isFade(val) {
bus.$emit('navFade', val);
2016-11-18 08:49:07 +00:00
}
},
computed: {
navStyle() {
2017-09-29 07:37:50 +00:00
const style = {};
if (this.isSmallScreen) {
style.paddingBottom = '60px';
}
style.opacity = this.isFade ? '0.5' : '1';
2017-09-29 07:37:50 +00:00
return style;
2016-12-27 05:59:40 +00:00
},
lang() {
return this.$route.meta.lang;
},
2016-12-27 05:59:40 +00:00
langConfig() {
return compoLang.filter(config => config.lang === this.lang)[0]['nav'];
2016-11-18 08:49:07 +00:00
}
},
methods: {
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
created() {
2017-09-29 07:37:50 +00:00
bus.$on('fadeNav', () => {
this.isFade = true;
});
2016-12-27 05:59:40 +00:00
},
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>