76 lines
3.1 KiB
Vue
Executable File
76 lines
3.1 KiB
Vue
Executable File
<template>
|
|
<li v-if="visible()" :class="containerClass()" v-bind="ptm('menuitem')">
|
|
<template v-if="!templates.item">
|
|
<router-link v-if="item.to" v-slot="{ navigate, href, isActive, isExactActive }" :to="item.to" custom>
|
|
<a :href="href" :class="linkClass({ isActive, isExactActive })" :aria-current="isCurrentUrl()" @click="onClick($event, navigate)" v-bind="ptm('action')">
|
|
<component v-if="templates.itemicon" :is="templates.itemicon" :item="item" class="p-menuitem-icon" />
|
|
<span v-else-if="item.icon" :class="['p-menuitem-icon', item.icon]" v-bind="ptm('icon')" />
|
|
<span v-if="item.label" class="p-menuitem-text" v-bind="ptm('label')">{{ label() }}</span>
|
|
</a>
|
|
</router-link>
|
|
<a v-else :href="item.url || '#'" :class="linkClass()" :target="item.target" :aria-current="isCurrentUrl()" @click="onClick" v-bind="ptm('action')">
|
|
<component v-if="templates.itemicon" :is="templates.itemicon" :item="item" class="p-menuitem-icon" />
|
|
<span v-else-if="item.icon" :class="['p-menuitem-icon', item.icon]" v-bind="ptm('icon')" />
|
|
<span v-if="item.label" class="p-menuitem-text" v-bind="ptm('label')">{{ label() }}</span>
|
|
</a>
|
|
</template>
|
|
<component v-else :is="templates.item" :item="item"></component>
|
|
</li>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
|
|
export default {
|
|
name: 'BreadcrumbItem',
|
|
extends: BaseComponent,
|
|
props: {
|
|
item: null,
|
|
templates: null,
|
|
exact: null,
|
|
index: null
|
|
},
|
|
methods: {
|
|
onClick(event, navigate) {
|
|
if (this.item.command) {
|
|
this.item.command({
|
|
originalEvent: event,
|
|
item: this.item
|
|
});
|
|
}
|
|
|
|
if (this.item.to && navigate) {
|
|
navigate(event);
|
|
}
|
|
},
|
|
containerClass() {
|
|
return ['p-menuitem', { 'p-disabled': this.disabled() }, this.item.class];
|
|
},
|
|
linkClass(routerProps) {
|
|
return [
|
|
'p-menuitem-link',
|
|
{
|
|
'router-link-active': routerProps && routerProps.isActive,
|
|
'router-link-active-exact': this.exact && routerProps && routerProps.isExactActive
|
|
}
|
|
];
|
|
},
|
|
visible() {
|
|
return typeof this.item.visible === 'function' ? this.item.visible() : this.item.visible !== false;
|
|
},
|
|
disabled() {
|
|
return typeof this.item.disabled === 'function' ? this.item.disabled() : this.item.disabled;
|
|
},
|
|
label() {
|
|
return typeof this.item.label === 'function' ? this.item.label() : this.item.label;
|
|
},
|
|
isCurrentUrl() {
|
|
const { to, url } = this.item;
|
|
let lastPath = this.$router ? this.$router.currentRoute.path : '';
|
|
|
|
return to === lastPath || url === lastPath ? 'page' : undefined;
|
|
}
|
|
}
|
|
};
|
|
</script>
|