EDMS/components/layouts/Breadcrumb.vue
2025-05-27 04:00:34 +00:00

93 lines
2.4 KiB
Vue

<script setup>
const route = useRoute();
// Get breadcrumb from page meta
const breadcrumb = computed(() => {
let breadcrumb = null;
const matched = route.matched;
console.log("matched:", matched);
if (matched[matched.length - 1].meta?.breadcrumb) {
breadcrumb = matched[matched.length - 1].meta.breadcrumb;
} else {
// if no breadcrumb in page meta, get breadcrumb from route matched
breadcrumb = matched.map((item) => {
return {
name: item.name,
path: item.path,
};
});
return breadcrumb;
}
// if type current overwrite path to its own path
if (breadcrumb) {
breadcrumb.forEach((item) => {
if (item.type == "current") {
item.path = route.path;
} else if (item.type == "parent") {
item.path = route.path.split("/").slice(0, -item.parentNo).join("/");
}
});
}
return breadcrumb;
});
console.log("breadcrumb", breadcrumb);
// Get title from page meta
const title = computed(() => {
const matched = route.matched;
const title = matched[matched.length - 1].name;
return title;
});
async function navigateMenu(path) {
try {
await navigateTo(path);
} catch (e) {
return;
}
}
</script>
<template>
<div v-if="breadcrumb" class="mb-6">
<nav aria-label="Breadcrumb" class="mb-4">
<ol class="flex items-center text-sm">
<li class="flex items-center">
<NuxtLink to="/" class="text-gray-500 hover:text-gray-700">
<Icon name="mdi:home" size="16" />
</NuxtLink>
</li>
<li v-for="(item, index) in breadcrumb" :key="index" class="flex items-center">
<Icon
name="mdi:chevron-right"
size="16"
class="mx-2 text-gray-400"
aria-hidden="true"
/>
<a
@click="navigateMenu(item.path)"
class="cursor-pointer capitalize"
:class="{
'text-gray-500 hover:text-gray-700': index !== breadcrumb.length - 1,
'text-primary font-medium': index === breadcrumb.length - 1,
}"
:aria-current="index === breadcrumb.length - 1 ? 'page' : undefined"
>
{{ item.name }}
</a>
</li>
</ol>
</nav>
<!-- <div class="flex justify-between items-center">
<h1 class="text-2xl font-semibold text-gray-800">{{ title }}</h1>
<slot name="right"></slot>
</div> -->
</div>
</template>