2022-06-10 10:47:46 +00:00
|
|
|
<template>
|
2024-04-04 22:20:42 +00:00
|
|
|
<HomeScreenBlock>
|
|
|
|
<template #header>New Albums</template>
|
2022-07-30 15:08:20 +00:00
|
|
|
|
2024-04-04 22:20:42 +00:00
|
|
|
<ol v-if="loading" class="space-y-3">
|
2022-07-30 15:08:20 +00:00
|
|
|
<li v-for="i in 2" :key="i">
|
2022-12-02 16:17:37 +00:00
|
|
|
<AlbumCardSkeleton layout="compact" />
|
2022-06-10 10:47:46 +00:00
|
|
|
</li>
|
|
|
|
</ol>
|
2022-07-30 15:08:20 +00:00
|
|
|
<template v-else>
|
2024-04-04 22:20:42 +00:00
|
|
|
<ol v-if="albums.length" class="space-y-3">
|
2022-07-30 15:08:20 +00:00
|
|
|
<li v-for="album in albums" :key="album.id">
|
2022-12-02 16:17:37 +00:00
|
|
|
<AlbumCard :album="album" layout="compact" />
|
2022-07-30 15:08:20 +00:00
|
|
|
</li>
|
|
|
|
</ol>
|
2024-04-04 22:20:42 +00:00
|
|
|
<p v-else class="text-k-text-secondary">No albums added yet.</p>
|
2022-07-30 15:08:20 +00:00
|
|
|
</template>
|
2024-04-04 22:20:42 +00:00
|
|
|
</HomeScreenBlock>
|
2022-06-10 10:47:46 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-08-01 07:55:23 +00:00
|
|
|
import { toRef, toRefs } from 'vue'
|
2022-06-10 10:47:46 +00:00
|
|
|
import { overviewStore } from '@/stores'
|
2024-04-04 22:20:42 +00:00
|
|
|
|
2022-07-07 18:05:46 +00:00
|
|
|
import AlbumCard from '@/components/album/AlbumCard.vue'
|
2022-07-30 15:08:20 +00:00
|
|
|
import AlbumCardSkeleton from '@/components/ui/skeletons/ArtistAlbumCardSkeleton.vue'
|
2024-04-04 22:20:42 +00:00
|
|
|
import HomeScreenBlock from '@/components/screens/home/HomeScreenBlock.vue'
|
2022-06-10 10:47:46 +00:00
|
|
|
|
2022-08-01 09:38:32 +00:00
|
|
|
const props = withDefaults(defineProps<{ loading?: boolean }>(), { loading: false })
|
2022-08-01 07:55:23 +00:00
|
|
|
const { loading } = toRefs(props)
|
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
const albums = toRef(overviewStore.state, 'recentlyAddedAlbums')
|
|
|
|
</script>
|