mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
751 lines
18 KiB
Vue
751 lines
18 KiB
Vue
<template>
|
|
<transition name="slide-up">
|
|
<div
|
|
class="lyrics-page"
|
|
:class="{ 'no-lyric': noLyric }"
|
|
:data-theme="theme"
|
|
>
|
|
<div
|
|
v-if="
|
|
(settings.lyricsBackground === 'blur') |
|
|
(settings.lyricsBackground === 'dynamic')
|
|
"
|
|
class="lyrics-background"
|
|
:class="{
|
|
'dynamic-background': settings.lyricsBackground === 'dynamic',
|
|
}"
|
|
>
|
|
<div
|
|
class="top-right"
|
|
:style="{ backgroundImage: `url(${bgImageUrl})` }"
|
|
/>
|
|
<div
|
|
class="bottom-left"
|
|
:style="{ backgroundImage: `url(${bgImageUrl})` }"
|
|
/>
|
|
</div>
|
|
<div
|
|
v-if="settings.lyricsBackground === true"
|
|
class="gradient-background"
|
|
:style="{ background }"
|
|
></div>
|
|
|
|
<div class="left-side">
|
|
<div>
|
|
<div class="cover">
|
|
<div class="cover-container">
|
|
<img :src="imageUrl" />
|
|
<div
|
|
class="shadow"
|
|
:style="{ backgroundImage: `url(${imageUrl})` }"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
<div class="controls">
|
|
<div class="top-part">
|
|
<div class="track-info">
|
|
<div class="title" :title="currentTrack.name">
|
|
<router-link
|
|
v-if="hasList()"
|
|
:to="`${getListPath()}`"
|
|
@click.native="toggleLyrics"
|
|
>{{ currentTrack.name }}
|
|
</router-link>
|
|
<span v-else>
|
|
{{ currentTrack.name }}
|
|
</span>
|
|
</div>
|
|
<div class="subtitle">
|
|
<router-link
|
|
:to="`/artist/${artist.id}`"
|
|
@click.native="toggleLyrics"
|
|
>{{ artist.name }}
|
|
</router-link>
|
|
<span v-if="album.id !== 0">
|
|
-
|
|
<router-link
|
|
:to="`/album/${album.id}`"
|
|
:title="album.name"
|
|
@click.native="toggleLyrics"
|
|
>{{ album.name }}
|
|
</router-link>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="buttons">
|
|
<button-icon
|
|
:title="$t('player.like')"
|
|
@click.native="likeATrack(player.currentTrack.id)"
|
|
>
|
|
<svg-icon
|
|
:icon-class="
|
|
player.isCurrentTrackLiked ? 'heart-solid' : 'heart'
|
|
"
|
|
/>
|
|
</button-icon>
|
|
<!-- <button-icon @click.native="openMenu" title="Menu"
|
|
><svg-icon icon-class="more"
|
|
/></button-icon> -->
|
|
</div>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<span>{{ formatTrackTime(player.progress) || '0:00' }}</span>
|
|
<div class="slider">
|
|
<vue-slider
|
|
v-model="player.progress"
|
|
:min="0"
|
|
:max="player.currentTrackDuration"
|
|
:interval="1"
|
|
:drag-on-click="true"
|
|
:duration="0"
|
|
:dot-size="12"
|
|
:height="2"
|
|
:tooltip-formatter="formatTrackTime"
|
|
:lazy="true"
|
|
:silent="true"
|
|
></vue-slider>
|
|
</div>
|
|
<span>{{ formatTrackTime(player.currentTrackDuration) }}</span>
|
|
</div>
|
|
<div class="media-controls">
|
|
<button-icon
|
|
v-show="!player.isPersonalFM"
|
|
:title="
|
|
player.repeatMode === 'one'
|
|
? $t('player.repeatTrack')
|
|
: $t('player.repeat')
|
|
"
|
|
:class="{ active: player.repeatMode !== 'off' }"
|
|
@click.native="player.switchRepeatMode"
|
|
>
|
|
<svg-icon
|
|
v-show="player.repeatMode !== 'one'"
|
|
icon-class="repeat"
|
|
/>
|
|
<svg-icon
|
|
v-show="player.repeatMode === 'one'"
|
|
icon-class="repeat-1"
|
|
/>
|
|
</button-icon>
|
|
<div class="middle">
|
|
<button-icon
|
|
v-show="!player.isPersonalFM"
|
|
:title="$t('player.previous')"
|
|
@click.native="player.playPrevTrack"
|
|
>
|
|
<svg-icon icon-class="previous" />
|
|
</button-icon>
|
|
<button-icon
|
|
v-show="player.isPersonalFM"
|
|
title="不喜欢"
|
|
@click.native="player.moveToFMTrash"
|
|
>
|
|
<svg-icon icon-class="thumbs-down" />
|
|
</button-icon>
|
|
<button-icon
|
|
id="play"
|
|
:title="$t(player.playing ? 'player.pause' : 'player.play')"
|
|
@click.native="player.playOrPause"
|
|
>
|
|
<svg-icon :icon-class="player.playing ? 'pause' : 'play'" />
|
|
</button-icon>
|
|
<button-icon
|
|
:title="$t('player.next')"
|
|
@click.native="player.playNextTrack"
|
|
>
|
|
<svg-icon icon-class="next" />
|
|
</button-icon>
|
|
</div>
|
|
<button-icon
|
|
v-show="!player.isPersonalFM"
|
|
:title="$t('player.shuffle')"
|
|
:class="{ active: player.shuffle }"
|
|
@click.native="player.switchShuffle"
|
|
>
|
|
<svg-icon icon-class="shuffle" />
|
|
</button-icon>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="right-side">
|
|
<transition name="slide-fade">
|
|
<div
|
|
v-show="!noLyric"
|
|
ref="lyricsContainer"
|
|
class="lyrics-container"
|
|
:style="lyricFontSize"
|
|
>
|
|
<div id="line-1" class="line"></div>
|
|
<div
|
|
v-for="(line, index) in lyricWithTranslation"
|
|
:id="`line${index}`"
|
|
:key="index"
|
|
class="line"
|
|
:class="{
|
|
highlight: highlightLyricIndex === index,
|
|
}"
|
|
@click="clickLyricLine(line.time)"
|
|
@dblclick="clickLyricLine(line.time, true)"
|
|
><span v-html="formatLine(line)"></span
|
|
></div>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
<div class="close-button" @click="toggleLyrics">
|
|
<button>
|
|
<svg-icon icon-class="arrow-down" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
|
|
<script>
|
|
// The lyrics page of Apple Music is so gorgeous, so I copy the design.
|
|
// Some of the codes are from https://github.com/sl1673495/vue-netease-music
|
|
|
|
import { mapState, mapMutations, mapActions } from 'vuex';
|
|
import VueSlider from 'vue-slider-component';
|
|
import { formatTrackTime } from '@/utils/common';
|
|
import { getLyric } from '@/api/track';
|
|
import { lyricParser } from '@/utils/lyrics';
|
|
import ButtonIcon from '@/components/ButtonIcon.vue';
|
|
import * as Vibrant from 'node-vibrant';
|
|
import Color from 'color';
|
|
import { hasListSource, getListSourcePath } from '@/utils/playList';
|
|
|
|
export default {
|
|
name: 'Lyrics',
|
|
components: {
|
|
VueSlider,
|
|
ButtonIcon,
|
|
},
|
|
data() {
|
|
return {
|
|
lyricsInterval: null,
|
|
lyric: [],
|
|
tlyric: [],
|
|
highlightLyricIndex: -1,
|
|
minimize: true,
|
|
background: '',
|
|
};
|
|
},
|
|
computed: {
|
|
...mapState(['player', 'settings', 'showLyrics']),
|
|
currentTrack() {
|
|
return this.player.currentTrack;
|
|
},
|
|
imageUrl() {
|
|
return this.player.currentTrack?.al?.picUrl + '?param=1024y1024';
|
|
},
|
|
bgImageUrl() {
|
|
return this.player.currentTrack?.al?.picUrl + '?param=512y512';
|
|
},
|
|
lyricWithTranslation() {
|
|
let ret = [];
|
|
// 空内容的去除
|
|
const lyricFiltered = this.lyric.filter(({ content }) =>
|
|
Boolean(content)
|
|
);
|
|
// content统一转换数组形式
|
|
if (lyricFiltered.length) {
|
|
lyricFiltered.forEach(l => {
|
|
const { rawTime, time, content } = l;
|
|
const lyricItem = { time, content, contents: [content] };
|
|
const sameTimeTLyric = this.tlyric.find(
|
|
({ rawTime: tLyricRawTime }) => tLyricRawTime === rawTime
|
|
);
|
|
if (sameTimeTLyric) {
|
|
const { content: tLyricContent } = sameTimeTLyric;
|
|
if (content) {
|
|
lyricItem.contents.push(tLyricContent);
|
|
}
|
|
}
|
|
ret.push(lyricItem);
|
|
});
|
|
} else {
|
|
ret = lyricFiltered.map(({ time, content }) => ({
|
|
time,
|
|
content,
|
|
contents: [content],
|
|
}));
|
|
}
|
|
return ret;
|
|
},
|
|
lyricFontSize() {
|
|
return {
|
|
fontSize: `${this.$store.state.settings.lyricFontSize || 28}px`,
|
|
};
|
|
},
|
|
noLyric() {
|
|
return this.lyric.length == 0;
|
|
},
|
|
artist() {
|
|
return this.currentTrack?.ar
|
|
? this.currentTrack.ar[0]
|
|
: { id: 0, name: 'unknown' };
|
|
},
|
|
album() {
|
|
return this.currentTrack?.al || { id: 0, name: 'unknown' };
|
|
},
|
|
theme() {
|
|
return this.settings.lyricsBackground === true ? 'dark' : 'auto';
|
|
},
|
|
},
|
|
watch: {
|
|
currentTrack() {
|
|
this.getLyric();
|
|
this.getCoverColor();
|
|
},
|
|
showLyrics(show) {
|
|
if (show) {
|
|
this.setLyricsInterval();
|
|
this.$store.commit('enableScrolling', false);
|
|
} else {
|
|
clearInterval(this.lyricsInterval);
|
|
this.$store.commit('enableScrolling', true);
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
this.getLyric();
|
|
this.getCoverColor();
|
|
},
|
|
destroyed() {
|
|
clearInterval(this.lyricsInterval);
|
|
},
|
|
methods: {
|
|
...mapMutations(['toggleLyrics']),
|
|
...mapActions(['likeATrack']),
|
|
getLyric() {
|
|
if (!this.currentTrack.id) return;
|
|
return getLyric(this.currentTrack.id).then(data => {
|
|
if (!data?.lrc?.lyric) {
|
|
this.lyric = [];
|
|
this.tlyric = [];
|
|
return false;
|
|
} else {
|
|
let { lyric, tlyric } = lyricParser(data);
|
|
this.lyric = lyric;
|
|
this.tlyric = tlyric;
|
|
return true;
|
|
}
|
|
});
|
|
},
|
|
formatTrackTime(value) {
|
|
return formatTrackTime(value);
|
|
},
|
|
clickLyricLine(value, startPlay = false) {
|
|
// TODO: 双击选择还会选中文字,考虑搞个右键菜单复制歌词
|
|
let jumpFlag = false;
|
|
this.lyric.filter(function (item) {
|
|
if (item.content == '纯音乐,请欣赏') {
|
|
jumpFlag = true;
|
|
}
|
|
});
|
|
if (window.getSelection().toString().length === 0 && !jumpFlag) {
|
|
this.player.seek(value);
|
|
}
|
|
if (startPlay === true) {
|
|
this.player.play();
|
|
}
|
|
},
|
|
setLyricsInterval() {
|
|
this.lyricsInterval = setInterval(() => {
|
|
const progress = this.player.seek() ?? 0;
|
|
let oldHighlightLyricIndex = this.highlightLyricIndex;
|
|
this.highlightLyricIndex = this.lyric.findIndex((l, index) => {
|
|
const nextLyric = this.lyric[index + 1];
|
|
return (
|
|
progress >= l.time && (nextLyric ? progress < nextLyric.time : true)
|
|
);
|
|
});
|
|
if (oldHighlightLyricIndex !== this.highlightLyricIndex) {
|
|
const el = document.getElementById(`line${this.highlightLyricIndex}`);
|
|
if (el)
|
|
el.scrollIntoView({
|
|
behavior: 'smooth',
|
|
block: 'center',
|
|
});
|
|
}
|
|
}, 50);
|
|
},
|
|
formatLine(line) {
|
|
const showLyricsTranslation = this.$store.state.settings
|
|
.showLyricsTranslation;
|
|
if (showLyricsTranslation && line.contents[1]) {
|
|
return `<span>${line.contents[0]}<br/>${line.contents[1]}</span>`;
|
|
} else if (line.contents[0] !== undefined) {
|
|
return `<span>${line.contents[0]}</span>`;
|
|
}
|
|
return 'unknown';
|
|
},
|
|
moveToFMTrash() {
|
|
this.player.moveToFMTrash();
|
|
},
|
|
getCoverColor() {
|
|
if (this.settings.lyricsBackground !== true) return;
|
|
const cover = this.currentTrack.al?.picUrl + '?param=1024y1024';
|
|
Vibrant.from(cover, { colorCount: 1 })
|
|
.getPalette()
|
|
.then(palette => {
|
|
const orignColor = Color.rgb(palette.DarkMuted._rgb);
|
|
const color = orignColor.darken(0.1).rgb().string();
|
|
const color2 = orignColor.lighten(0.28).rotate(-30).rgb().string();
|
|
this.background = `linear-gradient(to top left, ${color}, ${color2})`;
|
|
});
|
|
},
|
|
hasList() {
|
|
return hasListSource();
|
|
},
|
|
getListPath() {
|
|
return getListSourcePath();
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.lyrics-page {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 200;
|
|
background: var(--color-body-bg);
|
|
display: flex;
|
|
clip: rect(auto, auto, auto, auto);
|
|
}
|
|
|
|
.lyrics-background {
|
|
--contrast-lyrics-background: 75%;
|
|
--brightness-lyrics-background: 150%;
|
|
}
|
|
|
|
[data-theme='dark'] .lyrics-background {
|
|
--contrast-lyrics-background: 125%;
|
|
--brightness-lyrics-background: 50%;
|
|
}
|
|
|
|
.lyrics-background {
|
|
filter: blur(50px) contrast(var(--contrast-lyrics-background))
|
|
brightness(var(--brightness-lyrics-background));
|
|
position: absolute;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
.top-right,
|
|
.bottom-left {
|
|
z-index: 0;
|
|
width: 140vw;
|
|
height: 140vw;
|
|
opacity: 0.6;
|
|
position: absolute;
|
|
background-size: cover;
|
|
}
|
|
|
|
.top-right {
|
|
right: 0;
|
|
top: 0;
|
|
mix-blend-mode: luminosity;
|
|
}
|
|
|
|
.bottom-left {
|
|
left: 0;
|
|
bottom: 0;
|
|
animation-direction: reverse;
|
|
animation-delay: 10s;
|
|
}
|
|
}
|
|
|
|
.dynamic-background > div {
|
|
animation: rotate 150s linear infinite;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.gradient-background {
|
|
position: absolute;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
.left-side {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-right: 32px;
|
|
margin-top: 24px;
|
|
align-items: center;
|
|
transition: all 0.5s;
|
|
|
|
z-index: 1;
|
|
|
|
.controls {
|
|
max-width: 54vh;
|
|
margin-top: 24px;
|
|
color: var(--color-text);
|
|
|
|
.title {
|
|
margin-top: 8px;
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
opacity: 0.88;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.subtitle {
|
|
margin-top: 4px;
|
|
font-size: 1rem;
|
|
opacity: 0.58;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.top-part {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
button {
|
|
margin: 0 0 0 4px;
|
|
}
|
|
|
|
.svg-icon {
|
|
height: 18px;
|
|
width: 18px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.progress-bar {
|
|
margin-top: 22px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.slider {
|
|
width: 100%;
|
|
flex-grow: grow;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
span {
|
|
font-size: 15px;
|
|
opacity: 0.58;
|
|
min-width: 28px;
|
|
}
|
|
}
|
|
|
|
.media-controls {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 18px;
|
|
align-items: center;
|
|
|
|
button {
|
|
margin: 0;
|
|
}
|
|
|
|
.svg-icon {
|
|
opacity: 0.38;
|
|
height: 14px;
|
|
width: 14px;
|
|
}
|
|
|
|
.active .svg-icon {
|
|
opacity: 0.88;
|
|
}
|
|
|
|
.middle {
|
|
padding: 0 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
button {
|
|
margin: 0 8px;
|
|
}
|
|
|
|
button#play .svg-icon {
|
|
height: 28px;
|
|
width: 28px;
|
|
padding: 2px;
|
|
}
|
|
|
|
.svg-icon {
|
|
opacity: 0.88;
|
|
height: 22px;
|
|
width: 22px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.cover {
|
|
position: relative;
|
|
|
|
.cover-container {
|
|
position: relative;
|
|
}
|
|
|
|
img {
|
|
border-radius: 0.75em;
|
|
width: 54vh;
|
|
height: 54vh;
|
|
user-select: none;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.shadow {
|
|
position: absolute;
|
|
top: 12px;
|
|
height: 54vh;
|
|
width: 54vh;
|
|
filter: blur(16px) opacity(0.6);
|
|
transform: scale(0.92, 0.96);
|
|
z-index: -1;
|
|
background-size: cover;
|
|
border-radius: 0.75em;
|
|
}
|
|
}
|
|
|
|
.right-side {
|
|
flex: 1;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
margin-right: 24px;
|
|
z-index: 0;
|
|
|
|
.lyrics-container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-left: 78px;
|
|
max-width: 460px;
|
|
overflow-y: auto;
|
|
transition: 0.5s;
|
|
scrollbar-width: none; // firefox
|
|
|
|
.line {
|
|
padding: 18px;
|
|
transition: 0.2s;
|
|
border-radius: 12px;
|
|
|
|
&:hover {
|
|
background: var(--color-secondary-bg-for-transparent);
|
|
}
|
|
|
|
span {
|
|
opacity: 0.28;
|
|
cursor: default;
|
|
}
|
|
}
|
|
|
|
.line#line-1:hover {
|
|
background: unset;
|
|
}
|
|
|
|
.highlight span {
|
|
opacity: 0.98;
|
|
transition: 0.5s;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.lyrics-container .line:first-child {
|
|
margin-top: 50vh;
|
|
}
|
|
|
|
.lyrics-container .line:last-child {
|
|
margin-bottom: calc(50vh - 128px);
|
|
}
|
|
}
|
|
|
|
.close-button {
|
|
position: fixed;
|
|
top: 24px;
|
|
right: 24px;
|
|
z-index: 300;
|
|
border-radius: 0.75rem;
|
|
height: 44px;
|
|
width: 44px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
opacity: 0.28;
|
|
transition: 0.2s;
|
|
-webkit-app-region: no-drag;
|
|
|
|
.svg-icon {
|
|
color: var(--color-text);
|
|
padding-top: 5px;
|
|
height: 22px;
|
|
width: 22px;
|
|
}
|
|
|
|
&:hover {
|
|
background: var(--color-secondary-bg-for-transparent);
|
|
opacity: 0.88;
|
|
}
|
|
}
|
|
|
|
.lyrics-page.no-lyric {
|
|
.left-side {
|
|
transition: all 0.5s;
|
|
transform: translateX(27vh);
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-aspect-ratio: 10/9) {
|
|
.left-side {
|
|
display: none;
|
|
}
|
|
.right-side .lyrics-container {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
.slide-up-enter-active,
|
|
.slide-up-leave-active {
|
|
transition: all 0.4s;
|
|
}
|
|
|
|
.slide-up-enter, .slide-up-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
|
transform: translateY(100%);
|
|
}
|
|
|
|
.slide-fade-enter-active {
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
.slide-fade-leave-active {
|
|
transition: all 0.5s cubic-bezier(0.2, 0.2, 0, 1);
|
|
}
|
|
|
|
.slide-fade-enter,
|
|
.slide-fade-leave-to {
|
|
transform: translateX(27vh);
|
|
opacity: 0;
|
|
}
|
|
</style>
|