fix: empty state conditions

This commit is contained in:
Jannat Patel
2024-10-31 11:16:39 +05:30
parent ae4e5539d7
commit 22b1f22df4
4 changed files with 29 additions and 19 deletions

View File

@@ -87,7 +87,7 @@
</Tabs>
<div
v-else-if="
batches.fetched &&
!batches.loading &&
!hasBatches &&
(user.data?.is_instructor || user.data?.is_moderator)
"
@@ -117,7 +117,7 @@
</router-link>
</div>
<div
v-else-if="batches.fetched && !hasBatches"
v-else-if="!batches.loading && !hasBatches"
class="text-center p-5 text-gray-600 mt-52 w-3/4 md:w-1/2 mx-auto space-y-2"
>
<BookOpen class="size-10 mx-auto stroke-1 text-gray-500" />
@@ -165,13 +165,6 @@ const batches = createResource({
url: 'lms.lms.utils.get_batches',
cache: ['batches', user.data?.email],
auto: true,
onSuccess(data) {
Object.keys(data).forEach((section) => {
if (data[section].length) {
hasBatches.value = true
}
})
},
})
const categories = createResource({
@@ -231,6 +224,14 @@ const addToTabs = (label) => {
})
}
watch(batches, () => {
Object.keys(batches.data).forEach((key) => {
if (batches.data[key].length) {
hasBatches.value = true
}
})
})
watch(
() => currentCategory.value,
() => {