Files
vue-bits/src/pages/CategoryPage.vue
2025-07-18 16:29:54 +03:00

71 lines
1.6 KiB
Vue

<template>
<div ref="scrollRef">
<div class="page-transition-fade">
<h2 class="sub-category">{{ decodedLabel }}</h2>
<Suspense>
<template #default>
<component :is="SubcategoryComponent" v-if="SubcategoryComponent" />
</template>
<template #fallback>
<div class="loading-placeholder"></div>
</template>
</Suspense>
</div>
<BackToTopButton />
</div>
</template>
<script setup lang="ts">
import { computed, watch, onMounted, nextTick, defineAsyncComponent, useTemplateRef } from 'vue';
import { useRoute } from 'vue-router';
import { componentMap } from '../constants/Components';
import { decodeLabel } from '../utils/utils';
import BackToTopButton from '@/components/common/BackToTopButton.vue';
const route = useRoute();
const scrollRef = useTemplateRef<HTMLDivElement>('scrollRef');
const subcategory = computed(() => route.params.subcategory as string);
const decodedLabel = computed(() => decodeLabel(subcategory.value));
const SubcategoryComponent = computed(() => {
if (!subcategory.value) {
return null;
}
const componentLoader = componentMap[subcategory.value as keyof typeof componentMap];
if (!componentLoader) {
return null;
}
return defineAsyncComponent(componentLoader);
});
watch(
decodedLabel,
label => {
if (label) {
document.title = `Vue Bits - ${label}`;
}
},
{ immediate: true }
);
watch(subcategory, async () => {
if (scrollRef.value) {
await nextTick();
scrollRef.value.scrollTo(0, 0);
}
});
onMounted(() => {
if (scrollRef.value) {
scrollRef.value.scrollTo(0, 0);
}
});
</script>