primevue-mirror/components/lib/breadcrumb/BreadcrumbItem.vue

75 lines
3.0 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2023-04-26 09:57:16 +00:00
<li v-if="visible()" :class="containerClass()" v-bind="ptm('menuitem')">
<template v-if="!templates.item">
2022-09-14 11:26:01 +00:00
<router-link v-if="item.to" v-slot="{ navigate, href, isActive, isExactActive }" :to="item.to" custom>
2023-04-26 09:57:16 +00:00
<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" />
2023-04-26 09:57:16 +00:00
<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>
2022-09-06 12:03:37 +00:00
</a>
</router-link>
2023-04-26 09:57:16 +00:00
<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" />
2023-04-26 09:57:16 +00:00
<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>
2022-09-06 12:03:37 +00:00
</a>
</template>
<component v-else :is="templates.item" :item="item"></component>
2022-09-06 12:03:37 +00:00
</li>
</template>
<script>
2023-04-26 09:57:16 +00:00
import BaseComponent from 'primevue/basecomponent';
2022-09-06 12:03:37 +00:00
export default {
name: 'BreadcrumbItem',
2023-04-26 09:57:16 +00:00
extends: BaseComponent,
2022-09-06 12:03:37 +00:00
props: {
item: null,
templates: null,
2022-09-06 12:03:37 +00:00
exact: null
},
methods: {
onClick(event, navigate) {
if (this.item.command) {
this.item.command({
originalEvent: event,
item: this.item
});
}
if (this.item.to && navigate) {
navigate(event);
}
},
2022-12-08 11:04:25 +00:00
containerClass() {
return ['p-menuitem', { 'p-disabled': this.disabled() }, this.item.class];
2022-09-06 12:03:37 +00:00
},
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-12-08 11:04:25 +00:00
},
isCurrentUrl() {
const { to, url } = this.item;
let lastPath = this.$router ? this.$router.currentRoute.path : '';
return to === lastPath || url === lastPath ? 'page' : undefined;
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>