mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
30 lines
923 B
Vue
30 lines
923 B
Vue
<template>
|
|
<section>
|
|
<h1>New Songs</h1>
|
|
<ol v-if="loading" class="recently-added-song-list">
|
|
<li v-for="i in 3" :key="i">
|
|
<SongCardSkeleton />
|
|
</li>
|
|
</ol>
|
|
<template v-else>
|
|
<ol v-if="songs.length" class="recently-added-song-list">
|
|
<li v-for="song in songs" :key="song.id">
|
|
<SongCard :song="song" />
|
|
</li>
|
|
</ol>
|
|
<p v-else class="text-secondary">No songs added so far.</p>
|
|
</template>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { toRef, toRefs } from 'vue'
|
|
import { overviewStore } from '@/stores'
|
|
import SongCard from '@/components/song/SongCard.vue'
|
|
import SongCardSkeleton from '@/components/ui/skeletons/SongCardSkeleton.vue'
|
|
|
|
const props = withDefaults(defineProps<{ loading?: boolean }>(), { loading: false })
|
|
const { loading } = toRefs(props)
|
|
|
|
const songs = toRef(overviewStore.state, 'recentlyAddedSongs')
|
|
</script>
|