primevue-mirror/components/lib/menu/Menuitem.vue

81 lines
3.2 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2022-12-08 11:04:25 +00:00
<li v-if="visible()" :id="id" :class="containerClass()" role="menuitem" :style="item.style" :aria-label="label()" :aria-disabled="disabled()">
<div class="p-menuitem-content" @click="onItemClick($event)">
<template v-if="!templates.item">
2022-12-08 11:04:25 +00:00
<router-link v-if="item.to && !disabled()" v-slot="{ navigate, href, isActive, isExactActive }" :to="item.to" custom>
<a v-ripple :href="href" :class="linkClass({ isActive, isExactActive })" tabindex="-1" aria-hidden="true" @click="onItemActionClick($event, navigate)">
<component :is="templates.itemicon || (item.icon ? 'span' : undefined)" :item="item" :class="iconClass" />
2022-12-08 11:04:25 +00:00
<span class="p-menuitem-text">{{ label() }}</span>
</a>
</router-link>
<a v-else v-ripple :href="item.url" :class="linkClass()" :target="item.target" tabindex="-1" aria-hidden="true">
<component :is="templates.itemicon || (item.icon ? 'span' : undefined)" :item="item" :class="iconClass" />
2022-09-14 11:26:01 +00:00
<span class="p-menuitem-text">{{ label() }}</span>
2022-09-06 12:03:37 +00:00
</a>
2022-12-08 11:04:25 +00:00
</template>
<component v-else :is="templates.item" :item="item"></component>
2022-12-08 11:04:25 +00:00
</div>
2022-09-06 12:03:37 +00:00
</li>
</template>
<script>
import Ripple from 'primevue/ripple';
2022-12-08 11:04:25 +00:00
import { ObjectUtils } from 'primevue/utils';
2022-09-06 12:03:37 +00:00
export default {
name: 'Menuitem',
inheritAttrs: false,
2022-12-08 11:04:25 +00:00
emits: ['item-click'],
2022-09-06 12:03:37 +00:00
props: {
item: null,
templates: null,
2022-12-08 11:04:25 +00:00
exact: null,
id: null,
focusedOptionId: null
2022-09-06 12:03:37 +00:00
},
methods: {
2022-12-08 11:04:25 +00:00
getItemProp(processedItem, name) {
return processedItem && processedItem.item ? ObjectUtils.getItemValue(processedItem.item[name]) : undefined;
2022-09-06 12:03:37 +00:00
},
2022-12-08 11:04:25 +00:00
onItemActionClick(event, navigate) {
navigate && navigate(event);
},
onItemClick(event) {
const command = this.getItemProp(this.item, 'command');
command && command({ originalEvent: event, item: this.item.item });
this.$emit('item-click', { originalEvent: event, item: this.item, id: this.id });
},
containerClass() {
return ['p-menuitem', this.item.class, { 'p-focus': this.id === this.focusedOptionId, 'p-disabled': this.disabled() }];
},
linkClass(routerProps) {
2022-09-14 11:26:01 +00:00
return [
'p-menuitem-link',
{
'router-link-active': routerProps && routerProps.isActive,
'router-link-active-exact': this.exact && routerProps && routerProps.isExactActive
}
];
2022-09-06 12:03:37 +00:00
},
visible() {
2022-09-14 11:26:01 +00:00
return typeof this.item.visible === 'function' ? this.item.visible() : this.item.visible !== false;
2022-09-06 12:03:37 +00:00
},
2022-12-08 11:04:25 +00:00
disabled() {
return typeof this.item.disabled === 'function' ? this.item.disabled() : this.item.disabled;
2022-09-06 12:03:37 +00:00
},
label() {
2022-09-14 11:26:01 +00:00
return typeof this.item.label === 'function' ? this.item.label() : this.item.label;
2022-09-06 12:03:37 +00:00
}
},
computed: {
iconClass() {
return ['p-menuitem-icon', this.item.icon];
}
},
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>