You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
342 lines
7.1 KiB
342 lines
7.1 KiB
<template>
|
|
<div
|
|
class="track"
|
|
:class="trackClass"
|
|
:style="trackStyle"
|
|
:title="track.reason"
|
|
@mouseover="focus = true"
|
|
@mouseleave="focus = false"
|
|
>
|
|
<img :src="imgUrl | resizeImage(224)" v-if="!isAlbum" @click="goToAlbum" />
|
|
<div class="no" v-if="isAlbum">
|
|
<button
|
|
class="play-button"
|
|
v-show="focus && track.playable"
|
|
@click="playTrack"
|
|
>
|
|
<svg-icon icon-class="play"></svg-icon>
|
|
</button>
|
|
<span v-show="!focus || !track.playable">{{ track.no }}</span>
|
|
</div>
|
|
<div class="title-and-artist">
|
|
<div class="container">
|
|
<div class="title">
|
|
{{ track.name }}
|
|
<span class="featured" v-if="isAlbum && track.ar.length > 1">
|
|
-
|
|
<ArtistsInLine :artists="track.ar" :showFirstArtist="false"
|
|
/></span>
|
|
<span v-if="isAlbum && track.mark === 1318912" class="explicit-symbol"
|
|
><ExplicitSymbol
|
|
/></span>
|
|
</div>
|
|
<div class="artist" v-if="!isAlbum">
|
|
<span
|
|
v-if="track.mark === 1318912"
|
|
class="explicit-symbol before-artist"
|
|
><ExplicitSymbol :size="15"
|
|
/></span>
|
|
<ArtistsInLine :artists="artists" />
|
|
</div>
|
|
</div>
|
|
<div></div>
|
|
</div>
|
|
<div class="album" v-if="!isTracklist && !isAlbum">
|
|
<router-link :to="`/album/${track.al.id}`">{{
|
|
track.al.name
|
|
}}</router-link>
|
|
<div></div>
|
|
</div>
|
|
<div class="actions" v-if="!isTracklist">
|
|
<button v-if="isLoggedIn" @click="likeThisSong">
|
|
<svg-icon
|
|
icon-class="heart"
|
|
:style="{
|
|
visibility:
|
|
focus && !isLiked && track.playable ? 'visible' : 'hidden'
|
|
}"
|
|
></svg-icon>
|
|
<svg-icon icon-class="heart-solid" v-show="isLiked"></svg-icon>
|
|
</button>
|
|
</div>
|
|
<div class="time" v-if="!isTracklist">
|
|
{{ track.dt | formatTime }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { isLoggedIn } from "@/utils/auth";
|
|
|
|
import ArtistsInLine from "@/components/ArtistsInLine.vue";
|
|
import ExplicitSymbol from "@/components/ExplicitSymbol.vue";
|
|
|
|
export default {
|
|
name: "TrackListItem",
|
|
components: { ArtistsInLine, ExplicitSymbol },
|
|
props: {
|
|
track: Object
|
|
},
|
|
data() {
|
|
return { focus: false, trackStyle: {} };
|
|
},
|
|
computed: {
|
|
imgUrl() {
|
|
if (this.track.al !== undefined) return this.track.al.picUrl;
|
|
if (this.track.album !== undefined) return this.track.album.picUrl;
|
|
return "";
|
|
},
|
|
artists() {
|
|
if (this.track.ar !== undefined) return this.track.ar;
|
|
if (this.track.artists !== undefined) return this.track.artists;
|
|
return [];
|
|
},
|
|
type() {
|
|
return this.$parent.type;
|
|
},
|
|
isAlbum() {
|
|
return this.type === "album";
|
|
},
|
|
isTracklist() {
|
|
return this.type === "tracklist";
|
|
},
|
|
isPlaylist() {
|
|
return this.type === "playlist";
|
|
},
|
|
isLiked() {
|
|
return this.$parent.liked.songs.includes(this.track.id);
|
|
},
|
|
isPlaying() {
|
|
return this.$store.state.player.currentTrack.id === this.track.id;
|
|
},
|
|
trackClass() {
|
|
let trackClass = [this.type];
|
|
if (!this.track.playable) trackClass.push("disable");
|
|
if (this.isPlaying) trackClass.push("playing");
|
|
return trackClass;
|
|
},
|
|
isLoggedIn() {
|
|
return isLoggedIn();
|
|
}
|
|
},
|
|
methods: {
|
|
goToAlbum() {
|
|
this.$router.push({ path: "/album/" + this.track.al.id });
|
|
},
|
|
playTrack() {
|
|
this.$parent.playThisList(this.track.id);
|
|
},
|
|
likeThisSong() {
|
|
this.$parent.likeASong(this.track.id);
|
|
}
|
|
},
|
|
created() {
|
|
if (this.$parent.itemWidth !== -1)
|
|
this.trackStyle = { width: this.$parent.itemWidth + "px" };
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 8px;
|
|
background: transparent;
|
|
border-radius: 25%;
|
|
transition: transform 0.2s;
|
|
.svg-icon {
|
|
height: 16px;
|
|
width: 16px;
|
|
color: #335eea;
|
|
}
|
|
&:active {
|
|
transform: scale(0.92);
|
|
}
|
|
}
|
|
|
|
button.play-button {
|
|
opacity: 1;
|
|
.svg-icon {
|
|
height: 14px;
|
|
width: 14px;
|
|
color: #335eea;
|
|
}
|
|
}
|
|
|
|
.track {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8px;
|
|
border-radius: 12px;
|
|
user-select: none;
|
|
|
|
.no {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 8px;
|
|
margin: 0 20px 0 10px;
|
|
width: 12px;
|
|
color: rgba(0, 0, 0, 0.58);
|
|
cursor: default;
|
|
}
|
|
|
|
.explicit-symbol {
|
|
color: rgba(0, 0, 0, 0.28);
|
|
.svg-icon {
|
|
margin-bottom: -3px;
|
|
}
|
|
}
|
|
|
|
.explicit-symbol.before-artist {
|
|
margin-right: 2px;
|
|
.svg-icon {
|
|
margin-bottom: -3px;
|
|
}
|
|
}
|
|
|
|
img {
|
|
border-radius: 8px;
|
|
height: 56px;
|
|
width: 56px;
|
|
margin-right: 20px;
|
|
border: 1px solid rgba(0, 0, 0, 0.04);
|
|
cursor: pointer;
|
|
}
|
|
.title-and-artist {
|
|
flex: 1;
|
|
display: flex;
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: rgba(0, 0, 0, 0.88);
|
|
cursor: default;
|
|
padding-right: 16px;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
overflow: hidden;
|
|
word-break: break-all;
|
|
.featured {
|
|
margin-right: 2px;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
color: rgba(0, 0, 0, 0.72);
|
|
}
|
|
}
|
|
.artist {
|
|
margin-top: 2px;
|
|
font-size: 13px;
|
|
color: rgba(0, 0, 0, 0.68);
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
overflow: hidden;
|
|
a {
|
|
span {
|
|
margin-right: 3px;
|
|
color: rgba(0, 0, 0, 0.8);
|
|
}
|
|
&:hover {
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.album {
|
|
flex: 1;
|
|
display: flex;
|
|
font-size: 16px;
|
|
color: rgba(0, 0, 0, 0.88);
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
overflow: hidden;
|
|
}
|
|
.time {
|
|
font-size: 16px;
|
|
width: 50px;
|
|
cursor: default;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-right: 10px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
&:hover {
|
|
transition: all 0.3s;
|
|
background: #f5f5f7;
|
|
}
|
|
}
|
|
.track.disable {
|
|
img {
|
|
filter: grayscale(1) opacity(0.6);
|
|
}
|
|
.title,
|
|
.artist,
|
|
.album,
|
|
.time,
|
|
.featured {
|
|
color: rgba(0, 0, 0, 0.28) !important;
|
|
}
|
|
&:hover {
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
.track.tracklist {
|
|
width: 256px;
|
|
img {
|
|
height: 36px;
|
|
width: 36px;
|
|
border-radius: 6px;
|
|
margin-right: 14px;
|
|
cursor: pointer;
|
|
}
|
|
.title {
|
|
font-size: 16px;
|
|
}
|
|
.artist {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
.track.album {
|
|
height: 32px;
|
|
}
|
|
|
|
.actions {
|
|
width: 80px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.track.playing {
|
|
background: #eaeffd;
|
|
color: #335eea;
|
|
.title,
|
|
.album {
|
|
color: #335eea;
|
|
}
|
|
.title .featured,
|
|
.artist {
|
|
color: #335eea;
|
|
opacity: 0.88;
|
|
}
|
|
.no span {
|
|
color: #335eea;
|
|
opacity: 0.78;
|
|
}
|
|
.explicit-symbol {
|
|
color: #335eea;
|
|
opacity: 0.88;
|
|
}
|
|
}
|
|
</style>
|