parent
e169ee19e2
commit
11eb29b3b8
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,143 @@
|
|||||||
|
<template>
|
||||||
|
<div class="fm">
|
||||||
|
<img
|
||||||
|
class="cover"
|
||||||
|
:src="track.album && track.album.picUrl | resizeImage(512)"
|
||||||
|
@click="goToAlbum"
|
||||||
|
/>
|
||||||
|
<div class="right-part">
|
||||||
|
<div class="info">
|
||||||
|
<div class="title">{{ track.name }}</div>
|
||||||
|
<div class="artist"><ArtistsInLine :artists="track.artists" /></div>
|
||||||
|
</div>
|
||||||
|
<div class="controls">
|
||||||
|
<div class="buttons">
|
||||||
|
<button-icon @click.native="moveToFMTrash" title="不喜欢"
|
||||||
|
><svg-icon icon-class="thumbs-down" id="thumbs-down"
|
||||||
|
/></button-icon>
|
||||||
|
<button-icon
|
||||||
|
class="play"
|
||||||
|
@click.native="play"
|
||||||
|
:title="$t(isPlaying ? 'player.pause' : 'player.play')"
|
||||||
|
>
|
||||||
|
<svg-icon :iconClass="isPlaying ? 'pause' : 'play'"
|
||||||
|
/></button-icon>
|
||||||
|
<button-icon @click.native="next" :title="$t('player.next')"
|
||||||
|
><svg-icon icon-class="next" /></button-icon
|
||||||
|
></div>
|
||||||
|
<div class="card-name"><svg-icon icon-class="fm" />私人FM</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import ButtonIcon from "@/components/ButtonIcon.vue";
|
||||||
|
import ArtistsInLine from "@/components/ArtistsInLine.vue";
|
||||||
|
import { mapState } from "vuex";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "FMCard",
|
||||||
|
components: { ButtonIcon, ArtistsInLine },
|
||||||
|
computed: {
|
||||||
|
...mapState(["player"]),
|
||||||
|
track() {
|
||||||
|
return this.player.personalFMTrack;
|
||||||
|
},
|
||||||
|
isPlaying() {
|
||||||
|
return this.player.playing && this.player.isPersonalFM;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
play() {
|
||||||
|
this.player.playPersonalFM();
|
||||||
|
},
|
||||||
|
next() {
|
||||||
|
this.player.playNextTrack(true);
|
||||||
|
},
|
||||||
|
goToAlbum() {
|
||||||
|
if (this.track.album.id === 0) return;
|
||||||
|
this.$router.push({ path: "/album/" + this.track.album.id });
|
||||||
|
},
|
||||||
|
moveToFMTrash() {
|
||||||
|
this.player.moveToFMTrash();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.fm {
|
||||||
|
padding: 1rem;
|
||||||
|
background: var(--color-secondary-bg);
|
||||||
|
border-radius: 1rem;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.cover {
|
||||||
|
height: 164px;
|
||||||
|
clip-path: border-box;
|
||||||
|
border-radius: 0.75rem;
|
||||||
|
margin-right: 1.2rem;
|
||||||
|
border: 1px solid rgb(243, 243, 243);
|
||||||
|
cursor: pointer;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.right-part {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
color: var(--color-text);
|
||||||
|
width: 100%;
|
||||||
|
.title {
|
||||||
|
font-size: 1.6rem;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 0.6rem;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
overflow: hidden;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
.artist {
|
||||||
|
opacity: 0.68;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
overflow: hidden;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
.controls {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: baseline;
|
||||||
|
margin-left: -0.4rem;
|
||||||
|
.buttons {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.button-icon {
|
||||||
|
margin: 0 8px 0 0;
|
||||||
|
}
|
||||||
|
.svg-icon {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
.svg-icon#thumbs-down {
|
||||||
|
width: 22px;
|
||||||
|
height: 22px;
|
||||||
|
}
|
||||||
|
.card-name {
|
||||||
|
font-size: 1rem;
|
||||||
|
opacity: 0.18;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-weight: 600;
|
||||||
|
user-select: none;
|
||||||
|
.svg-icon {
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in new issue