169 lines
4.1 KiB
Vue
169 lines
4.1 KiB
Vue
<template>
|
|
<div class="p-panelmenu p-component">
|
|
<template v-for="(item, index) of model">
|
|
<div :key="item.label + '_' + index" :class="getPanelClass(item)" :style="item.style">
|
|
<div :class="getHeaderClass(item)" :style="item.style">
|
|
<a :href="item.url || '#'" class="p-panelmenu-header-link" @click="onItemClick($event, item)">
|
|
<span v-if="item.items" :class="getPanelToggleIcon(item)"></span>
|
|
<span v-if="item.icon" :class="getPanelIcon(item)"></span>
|
|
<span class="p-menuitem-text">{{item.label}}</span>
|
|
</a>
|
|
</div>
|
|
<transition name="p-panelmenu-content-wrapper">
|
|
<div class="p-panelmenu-content-wrapper" v-show="item === activeItem">
|
|
<div class="p-panelmenu-content" v-if="item.items">
|
|
<PanelMenuSub :model="item.items" class="p-panelmenu-root-submenu" />
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PanelMenuSub from './PanelMenuSub';
|
|
|
|
export default {
|
|
props: {
|
|
model: {
|
|
type: Array,
|
|
default: null
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
activeItem: null
|
|
}
|
|
},
|
|
methods: {
|
|
onItemClick(event, item) {
|
|
if (item.disabled) {
|
|
event.preventDefault();
|
|
return;
|
|
}
|
|
|
|
if (!item.url) {
|
|
event.preventDefault();
|
|
}
|
|
|
|
if (item.command) {
|
|
item.command({
|
|
originalEvent: event,
|
|
item: item
|
|
});
|
|
}
|
|
|
|
if (this.activeItem && this.activeItem === item)
|
|
this.activeItem = null;
|
|
else
|
|
this.activeItem = item;
|
|
},
|
|
getPanelClass(item) {
|
|
return ['p-panelmenu-panel', item.class, {'p-disabled': item.disabled}];
|
|
},
|
|
getPanelToggleIcon(item) {
|
|
const active = item === this.activeItem;
|
|
return ['p-panelmenu-icon pi pi-fw', {'pi-caret-right': !active,' pi-caret-down': active}];
|
|
},
|
|
getPanelIcon(item) {
|
|
return ['p-menuitem-icon', item.icon];
|
|
},
|
|
getHeaderClass(item) {
|
|
return ['p-component p-panelmenu-header', {'p-highlight': (item === this.activeItem)}];
|
|
}
|
|
},
|
|
computed: {
|
|
},
|
|
components: {
|
|
'PanelMenuSub': PanelMenuSub
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.p-panelmenu {
|
|
width: auto;
|
|
}
|
|
|
|
.p-panelmenu .p-menu-separator {
|
|
border-width: 1px 0 0 0;
|
|
}
|
|
|
|
.p-panelmenu .p-panelmenu-content-wrapper {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.p-panelmenu .p-panelmenu-header {
|
|
margin: -1px 0 0 0;
|
|
zoom: 1;
|
|
}
|
|
|
|
.p-panelmenu .p-panelmenu-header-link {
|
|
padding: .5em;
|
|
display: block;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.p-panelmenu .p-panelmenu-icon {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.p-panelmenu .p-menuitem-text {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.p-panelmenu .p-menuitem-icon {
|
|
margin-right: .25em;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.p-panelmenu .p-panelmenu-content {
|
|
padding: 0.25em;
|
|
border-top: 0;
|
|
margin-bottom: 1px;
|
|
}
|
|
|
|
.p-panelmenu .p-submenu-list {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
margin-left: 1.5em;
|
|
}
|
|
|
|
.p-panelmenu .p-panelmenu-content > .p-panelmenu-root-submenu.p-submenu-list {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.p-panelmenu .p-menuitem {
|
|
overflow: hidden;
|
|
margin: .125em 0;
|
|
}
|
|
|
|
.p-panelmenu .p-menuitem-link {
|
|
padding: .25em;
|
|
display: block;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.p-panelmenu-content-wrapper-enter,
|
|
.p-panelmenu-content-wrapper-leave-to {
|
|
max-height: 0;
|
|
}
|
|
|
|
.p-panelmenu-content-wrapper-enter-to,
|
|
.p-panelmenu-content-wrapper-leave {
|
|
max-height: 1000px;
|
|
}
|
|
|
|
.p-panelmenu-content-wrapper-leave-active {
|
|
overflow: hidden;
|
|
transition: max-height 0.45s cubic-bezier(0, 1, 0, 1);
|
|
}
|
|
|
|
.p-panelmenu-content-wrapper-enter-active {
|
|
overflow: hidden;
|
|
transition: max-height 1s ease-in-out;
|
|
}
|
|
</style>
|