2022-09-06 12:03:37 +00:00
|
|
|
<template>
|
|
|
|
<transition name="p-contextmenusub" @enter="onEnter">
|
2022-09-14 11:26:01 +00:00
|
|
|
<ul v-if="root ? true : parentActive" ref="container" :class="containerClass" role="menu">
|
2022-09-06 12:03:37 +00:00
|
|
|
<template v-for="(item, i) of model" :key="label(item) + i.toString()">
|
2022-09-14 11:26:01 +00:00
|
|
|
<li v-if="visible(item) && !item.separator" role="none" :class="getItemClass(item)" :style="item.style" @mouseenter="onItemMouseEnter($event, item)">
|
2022-09-06 12:03:37 +00:00
|
|
|
<template v-if="!template">
|
2022-09-14 11:26:01 +00:00
|
|
|
<router-link v-if="item.to && !disabled(item)" v-slot="{ navigate, href, isActive, isExactActive }" :to="item.to" custom>
|
|
|
|
<a v-ripple :href="href" @click="onItemClick($event, item, navigate)" :class="linkClass(item, { isActive, isExactActive })" role="menuitem">
|
|
|
|
<span v-if="item.icon" :class="['p-menuitem-icon', item.icon]"></span>
|
|
|
|
<span class="p-menuitem-text">{{ label(item) }}</span>
|
2022-09-06 12:03:37 +00:00
|
|
|
</a>
|
|
|
|
</router-link>
|
2022-09-14 11:26:01 +00:00
|
|
|
<a
|
|
|
|
v-else
|
|
|
|
v-ripple
|
|
|
|
:href="item.url"
|
|
|
|
:class="linkClass(item)"
|
|
|
|
:target="item.target"
|
|
|
|
@click="onItemClick($event, item)"
|
|
|
|
:aria-haspopup="item.items != null"
|
|
|
|
:aria-expanded="item === activeItem"
|
|
|
|
role="menuitem"
|
|
|
|
:tabindex="disabled(item) ? null : '0'"
|
|
|
|
>
|
|
|
|
<span v-if="item.icon" :class="['p-menuitem-icon', item.icon]"></span>
|
|
|
|
<span class="p-menuitem-text">{{ label(item) }}</span>
|
|
|
|
<span v-if="item.items" class="p-submenu-icon pi pi-angle-right"></span>
|
2022-09-06 12:03:37 +00:00
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
<component v-else :is="template" :item="item"></component>
|
2022-09-14 11:26:01 +00:00
|
|
|
<ContextMenuSub v-if="visible(item) && item.items" :key="label(item) + '_sub_'" :model="item.items" :template="template" @leaf-click="onLeafClick" :parentActive="item === activeItem" :exact="exact" />
|
2022-09-06 12:03:37 +00:00
|
|
|
</li>
|
2022-09-14 11:26:01 +00:00
|
|
|
<li v-if="visible(item) && item.separator" :key="'separator' + i.toString()" :class="['p-menu-separator', item.class]" :style="item.style" role="separator"></li>
|
2022-09-06 12:03:37 +00:00
|
|
|
</template>
|
|
|
|
</ul>
|
|
|
|
</transition>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-09-14 11:26:01 +00:00
|
|
|
import { DomHandler } from 'primevue/utils';
|
2022-09-06 12:03:37 +00:00
|
|
|
import Ripple from 'primevue/ripple';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ContextMenuSub',
|
|
|
|
emits: ['leaf-click'],
|
|
|
|
props: {
|
|
|
|
model: {
|
|
|
|
type: Array,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
root: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
parentActive: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
template: {
|
|
|
|
type: Function,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
exact: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
}
|
|
|
|
},
|
2022-09-14 11:26:01 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
activeItem: null
|
|
|
|
};
|
|
|
|
},
|
2022-09-06 12:03:37 +00:00
|
|
|
watch: {
|
|
|
|
parentActive(newValue) {
|
|
|
|
if (!newValue) {
|
|
|
|
this.activeItem = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onItemMouseEnter(event, item) {
|
|
|
|
if (this.disabled(item)) {
|
|
|
|
event.preventDefault();
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.activeItem = item;
|
|
|
|
},
|
|
|
|
onItemClick(event, item, navigate) {
|
|
|
|
if (this.disabled(item)) {
|
|
|
|
event.preventDefault();
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item.command) {
|
|
|
|
item.command({
|
|
|
|
originalEvent: event,
|
|
|
|
item: item
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item.items) {
|
2022-09-14 11:26:01 +00:00
|
|
|
if (this.activeItem && item === this.activeItem) this.activeItem = null;
|
|
|
|
else this.activeItem = item;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!item.items) {
|
|
|
|
this.onLeafClick();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item.to && navigate) {
|
|
|
|
navigate(event);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onLeafClick() {
|
|
|
|
this.activeItem = null;
|
|
|
|
this.$emit('leaf-click');
|
|
|
|
},
|
|
|
|
onEnter() {
|
|
|
|
this.position();
|
|
|
|
},
|
|
|
|
position() {
|
|
|
|
const parentItem = this.$refs.container.parentElement;
|
2022-09-14 11:26:01 +00:00
|
|
|
const containerOffset = DomHandler.getOffset(this.$refs.container.parentElement);
|
2022-09-06 12:03:37 +00:00
|
|
|
const viewport = DomHandler.getViewport();
|
|
|
|
const sublistWidth = this.$refs.container.offsetParent ? this.$refs.container.offsetWidth : DomHandler.getHiddenElementOuterWidth(this.$refs.container);
|
|
|
|
const itemOuterWidth = DomHandler.getOuterWidth(parentItem.children[0]);
|
|
|
|
|
|
|
|
this.$refs.container.style.top = '0px';
|
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
if (parseInt(containerOffset.left, 10) + itemOuterWidth + sublistWidth > viewport.width - DomHandler.calculateScrollbarWidth()) {
|
2022-09-06 12:03:37 +00:00
|
|
|
this.$refs.container.style.left = -1 * sublistWidth + 'px';
|
2022-09-14 11:26:01 +00:00
|
|
|
} else {
|
2022-09-06 12:03:37 +00:00
|
|
|
this.$refs.container.style.left = itemOuterWidth + 'px';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
getItemClass(item) {
|
|
|
|
return [
|
2022-09-14 11:26:01 +00:00
|
|
|
'p-menuitem',
|
|
|
|
item.class,
|
|
|
|
{
|
2022-09-06 12:03:37 +00:00
|
|
|
'p-menuitem-active': this.activeItem === item
|
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
];
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
linkClass(item, routerProps) {
|
2022-09-14 11:26:01 +00:00
|
|
|
return [
|
|
|
|
'p-menuitem-link',
|
|
|
|
{
|
|
|
|
'p-disabled': this.disabled(item),
|
|
|
|
'router-link-active': routerProps && routerProps.isActive,
|
|
|
|
'router-link-active-exact': this.exact && routerProps && routerProps.isExactActive
|
|
|
|
}
|
|
|
|
];
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
visible(item) {
|
2022-09-14 11:26:01 +00:00
|
|
|
return typeof item.visible === 'function' ? item.visible() : item.visible !== false;
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
disabled(item) {
|
2022-09-14 11:26:01 +00:00
|
|
|
return typeof item.disabled === 'function' ? item.disabled() : item.disabled;
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
label(item) {
|
2022-09-14 11:26:01 +00:00
|
|
|
return typeof item.label === 'function' ? item.label() : item.label;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
containerClass() {
|
2022-09-14 11:26:01 +00:00
|
|
|
return { 'p-submenu-list': !this.root };
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
directives: {
|
2022-09-14 11:26:01 +00:00
|
|
|
ripple: Ripple
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
2022-09-06 12:03:37 +00:00
|
|
|
</script>
|