2022-09-06 12:03:37 +00:00
|
|
|
<template>
|
2023-05-29 09:09:48 +00:00
|
|
|
<li
|
|
|
|
v-if="visible()"
|
|
|
|
:id="id"
|
2023-05-30 11:06:57 +00:00
|
|
|
:class="[cx('menuitem'), item.class]"
|
2023-05-29 09:09:48 +00:00
|
|
|
role="menuitem"
|
|
|
|
:style="item.style"
|
|
|
|
:aria-label="label()"
|
|
|
|
:aria-disabled="disabled()"
|
|
|
|
v-bind="getPTOptions('menuitem')"
|
|
|
|
:data-p-focused="isItemFocused()"
|
|
|
|
:data-p-disabled="disabled() || false"
|
|
|
|
>
|
2023-05-30 11:06:57 +00:00
|
|
|
<div :class="cx('content')" @click="onItemClick($event)" v-bind="getPTOptions('content')">
|
2023-04-17 06:05:55 +00:00
|
|
|
<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>
|
2023-05-30 11:06:57 +00:00
|
|
|
<a v-ripple :href="href" :class="cx('action', { isActive, isExactActive })" tabindex="-1" aria-hidden="true" @click="onItemActionClick($event, navigate)" v-bind="getPTOptions('action')">
|
|
|
|
<component v-if="templates.itemicon" :is="templates.itemicon" :item="item" :class="[cx('icon'), item.icon]" />
|
|
|
|
<span v-else-if="item.icon" :class="[cx('icon'), item.icon]" v-bind="getPTOptions('icon')" />
|
|
|
|
<span :class="cx('label')" v-bind="getPTOptions('label')">{{ label() }}</span>
|
2022-12-08 11:04:25 +00:00
|
|
|
</a>
|
|
|
|
</router-link>
|
2023-05-30 11:06:57 +00:00
|
|
|
<a v-else v-ripple :href="item.url" :class="cx('action')" :target="item.target" tabindex="-1" aria-hidden="true" v-bind="getPTOptions('action')">
|
|
|
|
<component v-if="templates.itemicon" :is="templates.itemicon" :item="item" :class="[cx('icon'), item.icon]" />
|
|
|
|
<span v-else-if="item.icon" :class="[cx('icon'), item.icon]" v-bind="getPTOptions('icon')" />
|
|
|
|
<span :class="cx('label')" v-bind="getPTOptions('label')">{{ label() }}</span>
|
2022-09-06 12:03:37 +00:00
|
|
|
</a>
|
2022-12-08 11:04:25 +00:00
|
|
|
</template>
|
2023-04-17 06:05:55 +00:00
|
|
|
<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>
|
2023-05-30 11:06:57 +00:00
|
|
|
import BaseComponent from 'primevue/basecomponent';
|
2022-09-06 12:03:37 +00:00
|
|
|
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',
|
2023-07-04 06:29:36 +00:00
|
|
|
hostName: 'Menu',
|
2023-05-30 11:06:57 +00:00
|
|
|
extends: BaseComponent,
|
2022-09-06 12:03:37 +00:00
|
|
|
inheritAttrs: false,
|
2022-12-08 11:04:25 +00:00
|
|
|
emits: ['item-click'],
|
2022-09-06 12:03:37 +00:00
|
|
|
props: {
|
|
|
|
item: null,
|
2023-04-17 06:05:55 +00:00
|
|
|
templates: null,
|
2022-12-08 11:04:25 +00:00
|
|
|
exact: null,
|
|
|
|
id: null,
|
2023-07-25 09:11:23 +00:00
|
|
|
focusedOptionId: null,
|
|
|
|
index: 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
|
|
|
},
|
2023-04-27 14:16:09 +00:00
|
|
|
getPTOptions(key) {
|
|
|
|
return this.ptm(key, {
|
2023-04-28 10:15:44 +00:00
|
|
|
context: {
|
2023-07-25 09:11:23 +00:00
|
|
|
item: this.item,
|
|
|
|
index: this.index,
|
2023-04-27 14:16:09 +00:00
|
|
|
focused: this.isItemFocused()
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
isItemFocused() {
|
|
|
|
return this.focusedOptionId === this.id;
|
|
|
|
},
|
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 });
|
|
|
|
},
|
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
|
|
|
}
|
|
|
|
},
|
|
|
|
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>
|