Files
AlgerMusicPlayer/src/views/favorite/index.vue
T

218 lines
5.3 KiB
Vue
Raw Normal View History

2024-12-09 21:55:08 +08:00
<template>
<div v-if="isComponent ? favoriteSongs.length : true" class="favorite-page">
2024-12-15 15:12:45 +08:00
<div class="favorite-header" :class="setAnimationClass('animate__fadeInLeft')">
2024-12-09 21:55:08 +08:00
<h2>我的收藏</h2>
<div class="favorite-count"> {{ favoriteList.length }} </div>
</div>
<div class="favorite-main" :class="setAnimationClass('animate__bounceInRight')">
2024-12-15 15:12:45 +08:00
<n-scrollbar ref="scrollbarRef" class="favorite-content" @scroll="handleScroll">
2024-12-09 21:55:08 +08:00
<div v-if="favoriteList.length === 0" class="empty-tip">
<n-empty description="还没有收藏歌曲" />
</div>
<div v-else class="favorite-list">
2024-12-15 15:12:45 +08:00
<song-item
v-for="(song, index) in favoriteSongs"
:key="song.id"
:item="song"
:favorite="!isComponent"
:class="setAnimationClass('animate__bounceInLeft')"
:style="getItemAnimationDelay(index)"
@play="handlePlay"
/>
<div v-if="isComponent" class="favorite-list-more text-center">
<n-button text type="primary" @click="handleMore">查看更多</n-button>
</div>
2024-12-09 21:55:08 +08:00
<div v-if="loading" class="loading-wrapper">
<n-spin size="large" />
</div>
2024-12-15 15:12:45 +08:00
<div v-if="noMore" class="no-more-tip">没有更多了</div>
2024-12-09 21:55:08 +08:00
</div>
</n-scrollbar>
</div>
</div>
</template>
<script setup lang="ts">
import { computed, onMounted, ref, watch } from 'vue';
import { useRouter } from 'vue-router';
import { useStore } from 'vuex';
import { getMusicDetail } from '@/api/music';
import SongItem from '@/components/common/SongItem.vue';
import type { SongResult } from '@/type/music';
import { setAnimationClass, setAnimationDelay } from '@/utils';
const store = useStore();
const favoriteList = computed(() => store.state.favoriteList);
const favoriteSongs = ref<SongResult[]>([]);
const loading = ref(false);
2024-12-15 15:12:45 +08:00
const noMore = ref(false);
const scrollbarRef = ref();
2024-12-09 21:55:08 +08:00
2024-12-15 15:12:45 +08:00
// 无限滚动相关
2024-12-09 21:55:08 +08:00
const pageSize = 16;
const currentPage = ref(1);
2024-12-15 15:12:45 +08:00
const props = defineProps({
2024-12-09 21:55:08 +08:00
isComponent: {
type: Boolean,
default: false,
},
});
// 获取当前页的收藏歌曲ID
const getCurrentPageIds = () => {
const reversedList = [...favoriteList.value];
const startIndex = (currentPage.value - 1) * pageSize;
const endIndex = startIndex + pageSize;
return reversedList.slice(startIndex, endIndex);
};
// 获取收藏歌曲详情
const getFavoriteSongs = async () => {
if (favoriteList.value.length === 0) {
favoriteSongs.value = [];
return;
}
2024-12-15 15:12:45 +08:00
if (props.isComponent && favoriteSongs.value.length >= 16) {
return;
}
2024-12-09 21:55:08 +08:00
loading.value = true;
try {
const currentIds = getCurrentPageIds();
const res = await getMusicDetail(currentIds);
if (res.data.songs) {
2024-12-15 15:12:45 +08:00
const newSongs = res.data.songs.map((song: SongResult) => ({
...song,
picUrl: song.al?.picUrl || '',
}));
// 追加新数据而不是替换
if (currentPage.value === 1) {
favoriteSongs.value = newSongs;
} else {
favoriteSongs.value = [...favoriteSongs.value, ...newSongs];
}
// 判断是否还有更多数据
noMore.value = favoriteSongs.value.length >= favoriteList.value.length;
2024-12-09 21:55:08 +08:00
}
} catch (error) {
console.error('获取收藏歌曲失败:', error);
} finally {
loading.value = false;
}
};
2024-12-15 15:12:45 +08:00
// 处理滚动事件
const handleScroll = (e: any) => {
const { scrollTop, scrollHeight, offsetHeight } = e.target;
const threshold = 100; // 距离底部多少像素时加载更多
if (!loading.value && !noMore.value && scrollHeight - (scrollTop + offsetHeight) < threshold) {
currentPage.value++;
getFavoriteSongs();
}
2024-12-09 21:55:08 +08:00
};
onMounted(() => {
getFavoriteSongs();
});
// 监听收藏列表变化
watch(
favoriteList,
() => {
currentPage.value = 1;
2024-12-15 15:12:45 +08:00
noMore.value = false;
2024-12-09 21:55:08 +08:00
getFavoriteSongs();
},
{ deep: true, immediate: true },
);
const handlePlay = () => {
store.commit('setPlayList', favoriteSongs.value);
};
const getItemAnimationDelay = (index: number) => {
2024-12-15 15:12:45 +08:00
return setAnimationDelay(index, 30);
2024-12-09 21:55:08 +08:00
};
const router = useRouter();
const handleMore = () => {
router.push('/favorite');
};
</script>
<style lang="scss" scoped>
.favorite-page {
2024-12-15 15:12:45 +08:00
@apply h-full flex flex-col pt-2;
@apply bg-light dark:bg-black;
2024-12-09 21:55:08 +08:00
.favorite-header {
2024-12-15 15:12:45 +08:00
@apply flex items-center justify-between flex-shrink-0 px-4;
2024-12-09 21:55:08 +08:00
h2 {
2024-12-15 15:12:45 +08:00
@apply text-xl font-bold pb-2;
@apply text-gray-900 dark:text-white;
2024-12-09 21:55:08 +08:00
}
.favorite-count {
@apply text-gray-500 dark:text-gray-400 text-sm;
2024-12-09 21:55:08 +08:00
}
}
.favorite-main {
@apply flex flex-col flex-grow min-h-0;
.favorite-content {
@apply flex-grow min-h-0;
.empty-tip {
@apply h-full flex items-center justify-center;
@apply text-gray-500 dark:text-gray-400;
2024-12-09 21:55:08 +08:00
}
.favorite-list {
2024-12-15 15:12:45 +08:00
@apply space-y-2 pb-4 px-4;
&-more {
@apply mt-4;
.n-button {
@apply text-green-500 hover:text-green-600;
}
}
2024-12-09 21:55:08 +08:00
}
}
}
}
.loading-wrapper {
@apply flex justify-center items-center py-20;
}
2024-12-15 15:12:45 +08:00
.no-more-tip {
@apply text-center py-4 text-sm;
@apply text-gray-500 dark:text-gray-400;
2024-12-09 21:55:08 +08:00
}
.mobile {
.favorite-page {
@apply p-4;
.favorite-header {
@apply mb-4;
h2 {
@apply text-xl;
}
}
}
}
</style>