Update various configuration files, components, and assets; enhance notification system and API endpoints; improve documentation and styles across the application.
This commit is contained in:
98
components/layouts/BreadcrumbV2.vue
Normal file
98
components/layouts/BreadcrumbV2.vue
Normal file
@@ -0,0 +1,98 @@
|
||||
<script setup>
|
||||
const route = useRoute();
|
||||
|
||||
// Get breadcrumb from page meta
|
||||
const breadcrumb = computed(() => {
|
||||
let breadcrumb = null;
|
||||
const matched = route.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.meta.title,
|
||||
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;
|
||||
});
|
||||
|
||||
// Get title from page meta
|
||||
const title = computed(() => {
|
||||
const matched = route.matched;
|
||||
const title = matched[matched.length - 1].meta.title;
|
||||
return title;
|
||||
});
|
||||
|
||||
async function navigateMenu(path) {
|
||||
try {
|
||||
await navigateTo(path);
|
||||
} catch (e) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-if="breadcrumb">
|
||||
<div class="flex flex-col md:flex-row items-stretch justify-between">
|
||||
<div
|
||||
class="flex items-center"
|
||||
v-if="breadcrumb && breadcrumb.length != 0"
|
||||
>
|
||||
<span
|
||||
v-for="(item, index) in breadcrumb"
|
||||
:key="index"
|
||||
class="flex items-center text-primary"
|
||||
>
|
||||
<Icon
|
||||
v-if="index != 0"
|
||||
name="ic:round-chevron-right"
|
||||
size="14"
|
||||
class="mr-1 text-gray-500"
|
||||
></Icon>
|
||||
<a
|
||||
@click="navigateMenu(item.path)"
|
||||
class="cursor-pointer hover:underline pr-1 font-normal text-sm text-gray-500"
|
||||
:class="{
|
||||
'!text-primary': breadcrumb.length - 1 == index,
|
||||
}"
|
||||
>{{ item.name }}</a
|
||||
>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<slot name="right"></slot>
|
||||
</div>
|
||||
|
||||
<div class="relative flex flex-col min-w-0 lg:mb-0 break-words w-full">
|
||||
<div class="rounded-t mb-5">
|
||||
<div class="flex flex-wrap items-center">
|
||||
<div>
|
||||
<div>
|
||||
<span class="text-xl font-semibold text-gray-600">
|
||||
{{ title }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user