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

118 lines
4.5 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2023-05-29 09:09:48 +00:00
<li
v-if="visible()"
:id="id"
: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"
>
<div :class="cx('content')" @click="onItemClick($event)" v-bind="getPTOptions('content')">
<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="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>
<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-08-29 12:28:08 +00:00
<component v-else-if="templates.item" :is="templates.item" :item="item" :label="label()" :props="getMenuItemProps(item)"></component>
2022-12-08 11:04:25 +00:00
</div>
2022-09-06 12:03:37 +00:00
</li>
</template>
<script>
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';
2023-08-29 12:28:08 +00:00
import { mergeProps } from 'vue';
2022-09-06 12:03:37 +00:00
export default {
name: 'Menuitem',
2023-07-04 06:29:36 +00:00
hostName: 'Menu',
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,
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, {
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;
2023-08-29 12:28:08 +00:00
},
getMenuItemProps(item) {
return {
action: mergeProps(
{
class: this.cx('action'),
tabindex: '-1',
'aria-hidden': true
},
this.getPTOptions('action')
),
icon: mergeProps(
{
class: [this.cx('icon'), item.icon]
},
this.getPTOptions('icon')
),
label: mergeProps(
{
class: this.cx('label')
},
this.getPTOptions('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>