mirror of
https://github.com/atdunbg/Nekosonic-Music.git
synced 2026-06-22 00:58:51 +08:00
歌曲的艺术家现可点击查看其他歌曲,专辑和介绍 - **歌曲评论功能添加**: 添加歌曲的评论查看功能 - 修复私人漫游自动播放下一首调用多次问题 - 优化播放逻辑,歌曲列表在点击时候不在单首累加, 而是直接获取当前列表所有的歌曲作为播放内容
113 lines
4.0 KiB
Vue
113 lines
4.0 KiB
Vue
<template>
|
|
<div class="p-8 text-content flex flex-col items-center justify-center min-h-full">
|
|
<div v-if="!currentSong" class="text-center">
|
|
<p class="text-content-2 mb-4">私人漫游未启动</p>
|
|
<button
|
|
@click="startFm"
|
|
class="px-6 py-2 bg-muted hover:bg-emphasis rounded-full transition"
|
|
>
|
|
开始漫游
|
|
</button>
|
|
</div>
|
|
|
|
<template v-else>
|
|
<img
|
|
v-if="coverUrl && !coverError"
|
|
:src="coverUrl"
|
|
class="w-80 h-80 rounded-3xl object-cover shadow-2xl mb-8"
|
|
@error="coverError = true"
|
|
/>
|
|
<div
|
|
v-else
|
|
class="w-80 h-80 rounded-3xl bg-muted flex items-center justify-center shadow-2xl mb-8"
|
|
>
|
|
<svg width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="text-content-3"><path d="M9 18V5l12-2v13"/><circle cx="6" cy="18" r="3"/><circle cx="18" cy="16" r="3"/></svg>
|
|
</div>
|
|
|
|
<h1 class="text-3xl font-bold mb-2">{{ currentSong.name }}</h1>
|
|
<p class="text-lg text-content-2 mb-8">
|
|
<template v-for="(a, i) in currentSong.ar || []" :key="a.id || i">
|
|
<span v-if="i > 0" class="text-content-3">/</span>
|
|
<span class="hover:text-accent-text cursor-pointer transition" @click="a.id && router.push({ name: 'artist', params: { id: a.id } })">{{ a.name }}</span>
|
|
</template>
|
|
<template v-if="currentSong.al?.name">
|
|
<span class="text-content-3 mx-1">·</span>
|
|
<span class="hover:text-accent-text cursor-pointer transition" @click="currentSong.al.id && router.push({ name: 'album', params: { id: currentSong.al.id } })">{{ currentSong.al.name }}</span>
|
|
</template>
|
|
</p>
|
|
|
|
<div class="flex items-center gap-8">
|
|
<button
|
|
@click="player.toggle()"
|
|
class="w-16 h-16 flex items-center justify-center rounded-full bg-muted hover:bg-emphasis transition border border-emphasis"
|
|
>
|
|
<svg v-if="player.playing" width="28" height="28" viewBox="0 0 16 16" fill="currentColor">
|
|
<rect x="3" y="2" width="3" height="12" rx="0.5" />
|
|
<rect x="10" y="2" width="3" height="12" rx="0.5" />
|
|
</svg>
|
|
<svg v-else width="28" height="28" viewBox="0 0 16 16" fill="currentColor">
|
|
<path d="M4 2.5v11l9-5.5z" />
|
|
</svg>
|
|
</button>
|
|
<button
|
|
@click="nextSong"
|
|
class="text-content-2 hover:text-content transition"
|
|
>
|
|
<svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="5 4 15 12 5 20 5 4"/><line x1="19" y1="5" x2="19" y2="19"/></svg>
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, computed, watch, onMounted } from 'vue';
|
|
import { usePlayerStore } from '../stores/player';
|
|
import { invoke } from '@tauri-apps/api/core';
|
|
import { normalizeSong } from '../utils/song';
|
|
import { useRouter } from 'vue-router';
|
|
|
|
const player = usePlayerStore();
|
|
const router = useRouter();
|
|
const coverError = ref(false);
|
|
|
|
const currentSong = computed(() => {
|
|
if (player.isFmMode && player.currentSong) {
|
|
return player.currentSong;
|
|
}
|
|
return null;
|
|
});
|
|
|
|
const coverUrl = computed(() => {
|
|
if (!currentSong.value) return '';
|
|
return currentSong.value.al?.picUrl || currentSong.value.album?.picUrl || '';
|
|
});
|
|
|
|
watch(coverUrl, () => { coverError.value = false; });
|
|
|
|
onMounted(async () => {
|
|
if (!player.isFmMode || !player.currentSong) {
|
|
await startFm();
|
|
}
|
|
});
|
|
|
|
async function startFm() {
|
|
try {
|
|
const jsonStr: string = await invoke('personal_fm');
|
|
const data = JSON.parse(jsonStr);
|
|
const songs = data.data || data;
|
|
if (songs && songs.length > 0) {
|
|
const song = normalizeSong(songs[0]);
|
|
player.enableFmMode(nextSong);
|
|
await player.playFmSong(song);
|
|
}
|
|
} catch (e) {
|
|
console.error('启动漫游失败', e);
|
|
}
|
|
}
|
|
|
|
async function nextSong() {
|
|
await startFm();
|
|
}
|
|
</script>
|