Files
AlgerMusicPlayer/src/renderer/views/album/index.vue
T

269 lines
7.8 KiB
Vue
Raw Normal View History

2026-02-04 20:14:44 +08:00
<template>
<sticky-tab-page
ref="pageRef"
:title="t('comp.newAlbum.title')"
:description="currentAreaName"
:model-value="currentArea"
:categories="areas"
label-key="name"
value-key="value"
@change="handleAreaChange"
@scroll="handleScroll"
>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6">
<!-- Loading State -->
<template v-if="loading && page === 0">
<div v-for="i in 15" :key="`loading-${i}`" class="space-y-3">
<div class="aspect-square skeleton-shimmer rounded-2xl" />
<div class="h-4 w-3/4 skeleton-shimmer rounded-lg" />
<div class="h-3 w-1/2 skeleton-shimmer rounded-lg" />
2026-02-04 20:14:44 +08:00
</div>
</template>
<!-- Content State -->
<template v-else>
<div
v-for="(album, index) in albumList"
:key="album.id"
class="list-card group cursor-pointer animate-item"
:style="{ animationDelay: calculateAnimationDelay(index % TOTAL_ITEMS, 0.05) }"
@click.stop="openAlbum(album)"
>
<!-- Cover Image -->
<div
class="relative aspect-square overflow-hidden rounded-2xl shadow-md group-hover:shadow-xl transition-all duration-500"
>
<img
:src="getImgUrl(album.picUrl, '400y400')"
:alt="album.name"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110"
loading="lazy"
crossorigin="anonymous"
/>
<!-- Play Overlay -->
2026-02-04 20:14:44 +08:00
<div
class="absolute inset-0 bg-transparent group-hover:bg-black/20 transition-colors duration-300 flex items-center justify-center"
2026-02-04 20:14:44 +08:00
>
<div
class="play-icon w-12 h-12 rounded-full bg-white/90 flex items-center justify-center opacity-0 scale-75 group-hover:opacity-100 group-hover:scale-100 transition-all duration-300 shadow-xl"
@click.stop="playAlbum(album)"
2026-02-04 20:14:44 +08:00
>
<i class="ri-play-fill text-2xl text-neutral-900 ml-1"></i>
2026-02-04 20:14:44 +08:00
</div>
</div>
2026-02-04 20:14:44 +08:00
<!-- Album Size Badge -->
<div
v-if="album.size"
class="absolute top-3 left-3 px-2 py-1 rounded-lg bg-black/40 backdrop-blur-md text-white text-[10px] font-bold flex items-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity duration-300"
>
<i class="ri-music-2-fill"></i>
{{ album.size }} {{ t('comp.playlistDrawer.count') }}
2026-02-04 20:14:44 +08:00
</div>
</div>
2026-02-04 20:14:44 +08:00
<!-- Info -->
<div class="mt-3 space-y-1">
<h3
class="text-sm md:text-base font-bold text-neutral-900 dark:text-white line-clamp-1 group-hover:text-primary transition-colors"
>
{{ album.name }}
</h3>
<p
v-if="getArtistNames(album)"
class="text-xs text-neutral-500 dark:text-neutral-400 line-clamp-1"
>
{{ getArtistNames(album) }}
</p>
</div>
2026-02-04 20:14:44 +08:00
</div>
</template>
</div>
<!-- 加载更多 -->
<div v-if="isLoadingMore" class="flex justify-center items-center py-8">
<n-spin size="small" />
<span class="ml-2 text-neutral-500">{{ t('comp.homeListItem.loading') }}</span>
</div>
<div v-if="!hasMore && albumList.length > 0" class="text-center py-8 text-neutral-500">
{{ t('comp.recommendSonglist.empty') }}
</div>
</sticky-tab-page>
2026-02-04 20:14:44 +08:00
</template>
<script lang="ts" setup>
2026-02-06 12:50:58 +08:00
import { computed, nextTick, onMounted, ref, watch } from 'vue';
2026-02-04 20:14:44 +08:00
import { useI18n } from 'vue-i18n';
import { useRoute, useRouter } from 'vue-router';
import { getNewAlbums } from '@/api/album';
import { getAlbum } from '@/api/list';
import { navigateToMusicList } from '@/components/common/MusicListNavigator';
import StickyTabPage from '@/components/common/StickyTabPage.vue';
import { playTrack } from '@/services/playbackController';
2026-02-04 20:14:44 +08:00
import { usePlaylistStore } from '@/store/modules/playlist';
2026-02-06 12:50:58 +08:00
import { calculateAnimationDelay, getImgUrl } from '@/utils';
2026-02-04 20:14:44 +08:00
defineOptions({
name: 'Album'
});
const { t } = useI18n();
const router = useRouter();
const route = useRoute();
const pageRef = ref();
2026-02-04 20:14:44 +08:00
const TOTAL_ITEMS = 30;
2026-02-04 20:14:44 +08:00
const areas = computed(() => [
{ name: t('comp.pages.album.area.all'), value: 'ALL' },
{ name: t('comp.pages.album.area.chinese'), value: 'ZH' },
{ name: t('comp.pages.album.area.western'), value: 'EA' },
{ name: t('comp.pages.album.area.korea'), value: 'KR' },
{ name: t('comp.pages.album.area.japan'), value: 'JP' }
]);
2026-02-04 20:14:44 +08:00
const albumList = ref<any[]>([]);
const page = ref(0);
const hasMore = ref(true);
const isLoadingMore = ref(false);
const loading = ref(false);
const currentArea = ref((route.query.area as string) || 'ALL');
const currentAreaName = computed(
() =>
areas.value.find((a) => a.value === currentArea.value)?.name || t('comp.pages.album.area.all')
2026-02-04 20:14:44 +08:00
);
2026-02-06 12:50:58 +08:00
const handleAreaChange = (value: string) => {
router.replace({ query: { area: value } });
loadList(value);
};
2026-02-04 20:14:44 +08:00
const loadList = async (area: string, isLoadMore = false) => {
if (!hasMore.value && isLoadMore) return;
if (isLoadMore) {
isLoadingMore.value = true;
} else {
loading.value = true;
page.value = 0;
albumList.value = [];
2026-02-06 12:50:58 +08:00
await nextTick();
pageRef.value?.scrollTo({ top: 0 });
2026-02-04 20:14:44 +08:00
}
try {
const params = {
area: area,
limit: TOTAL_ITEMS,
offset: page.value * TOTAL_ITEMS
};
const { data } = await getNewAlbums(params);
const albums = data.albums || [];
if (isLoadMore) {
albumList.value.push(...albums);
} else {
albumList.value = albums;
}
hasMore.value = albums.length === TOTAL_ITEMS;
page.value++;
} catch (error) {
console.error('加载专辑列表失败:', error);
} finally {
loading.value = false;
isLoadingMore.value = false;
}
};
const handleScroll = (e: any) => {
const { scrollTop, scrollHeight, clientHeight } = e.target;
if (scrollTop + clientHeight >= scrollHeight - 100 && !isLoadingMore.value && hasMore.value) {
loadList(currentArea.value, true);
}
};
const getArtistNames = (album: any) => {
if (album.artists) {
return album.artists.map((ar: any) => ar.name).join(' / ');
}
return '';
};
const openAlbum = async (album: any) => {
try {
navigateToMusicList(router, {
id: album.id,
type: 'album',
name: album.name,
listInfo: {
...album,
coverImgUrl: album.picUrl
},
canRemove: false
});
} catch (error) {
console.error('Failed to navigate to album:', error);
}
};
const playAlbum = async (album: any) => {
try {
const { data } = await getAlbum(album.id);
if (data.code === 200 && data.songs?.length > 0) {
const playlistStore = usePlaylistStore();
2026-02-06 20:35:04 +08:00
const albumCover = data.album?.picUrl || album.picUrl;
2026-02-04 20:14:44 +08:00
const playlist = data.songs.map((s: any) => ({
id: s.id,
name: s.name,
source: 'netease',
song: s,
...s,
2026-02-06 20:35:04 +08:00
picUrl: s.al?.picUrl || albumCover,
2026-02-04 20:14:44 +08:00
playLoading: false
}));
playlistStore.setPlayList(playlist, false, false);
await playTrack(playlist[0], true);
2026-02-04 20:14:44 +08:00
}
} catch (error) {
console.error('Failed to play album:', error);
}
};
onMounted(() => {
currentArea.value = (route.query.area as string) || 'ALL';
loadList(currentArea.value);
});
watch(
() => route.query.area,
(newArea) => {
if (newArea && newArea !== currentArea.value) {
currentArea.value = newArea as string;
loadList(newArea as string);
}
}
);
</script>
<style lang="scss" scoped>
.animate-item {
animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(24px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>