mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 05:08:04 +00:00
167 lines
3.8 KiB
Vue
167 lines
3.8 KiB
Vue
<template>
|
|
<div class="home" v-show="show">
|
|
<div class="index-row" v-if="settings.showPlaylistsByAppleMusic !== false">
|
|
<div class="title"> by Apple Music </div>
|
|
<CoverRow
|
|
:type="'playlist'"
|
|
:items="byAppleMusic"
|
|
:subText="'appleMusic'"
|
|
:imageSize="1024"
|
|
/>
|
|
</div>
|
|
<div class="index-row">
|
|
<div class="title">
|
|
{{ $t("home.recommendPlaylist") }}
|
|
<router-link to="/explore?category=推荐歌单">{{
|
|
$t("home.seeMore")
|
|
}}</router-link>
|
|
</div>
|
|
<CoverRow
|
|
:type="'playlist'"
|
|
:items="recommendPlaylist.items"
|
|
:subText="'copywriter'"
|
|
/>
|
|
</div>
|
|
<div class="index-row">
|
|
<div class="title">{{ $t("home.recommendArtist") }}</div>
|
|
<CoverRow
|
|
type="artist"
|
|
:columnNumber="6"
|
|
:items="recommendArtists.items"
|
|
/>
|
|
</div>
|
|
<div class="index-row">
|
|
<div class="title">
|
|
{{ $t("home.newAlbum") }}
|
|
<router-link to="/new-album">{{ $t("home.seeMore") }}</router-link>
|
|
</div>
|
|
<CoverRow type="album" :items="newReleasesAlbum.items" subText="artist" />
|
|
</div>
|
|
<div class="index-row">
|
|
<div class="title">
|
|
{{ $t("home.charts") }}
|
|
<router-link to="/explore?category=排行榜">{{
|
|
$t("home.seeMore")
|
|
}}</router-link>
|
|
</div>
|
|
<CoverRow
|
|
type="playlist"
|
|
:items="topList.items"
|
|
:subText="'updateFrequency'"
|
|
:imageSize="1024"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { toplists, recommendPlaylist } from "@/api/playlist";
|
|
import { toplistOfArtists } from "@/api/artist";
|
|
import { byAppleMusic } from "@/utils/staticData";
|
|
import { newAlbums } from "@/api/album";
|
|
import NProgress from "nprogress";
|
|
import { mapState } from "vuex";
|
|
|
|
import CoverRow from "@/components/CoverRow.vue";
|
|
|
|
export default {
|
|
name: "Home",
|
|
components: { CoverRow },
|
|
data() {
|
|
return {
|
|
show: false,
|
|
recommendPlaylist: { items: [] },
|
|
newReleasesAlbum: { items: [] },
|
|
topList: {
|
|
items: [],
|
|
ids: [19723756, 180106, 60198, 3812895, 60131],
|
|
},
|
|
recommendArtists: {
|
|
items: [],
|
|
indexs: [],
|
|
},
|
|
};
|
|
},
|
|
computed: {
|
|
...mapState(["settings"]),
|
|
byAppleMusic() {
|
|
return byAppleMusic;
|
|
},
|
|
},
|
|
methods: {
|
|
loadData() {
|
|
if (!this.show) NProgress.start();
|
|
recommendPlaylist({
|
|
limit: 10,
|
|
}).then((data) => {
|
|
this.recommendPlaylist.items = data.result;
|
|
NProgress.done();
|
|
this.show = true;
|
|
});
|
|
newAlbums({
|
|
area: "EA",
|
|
limit: 10,
|
|
}).then((data) => {
|
|
this.newReleasesAlbum.items = data.albums;
|
|
});
|
|
toplistOfArtists(2).then((data) => {
|
|
let indexs = [];
|
|
while (indexs.length < 6) {
|
|
let tmp = ~~(Math.random() * 100);
|
|
if (!indexs.includes(tmp)) indexs.push(tmp);
|
|
}
|
|
this.recommendArtists.indexs = indexs;
|
|
this.recommendArtists.items = data.list.artists.filter((l, index) =>
|
|
indexs.includes(index)
|
|
);
|
|
});
|
|
toplists().then((data) => {
|
|
this.topList.items = data.list.filter((l) =>
|
|
this.topList.ids.includes(l.id)
|
|
);
|
|
});
|
|
},
|
|
},
|
|
activated() {
|
|
this.loadData();
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.index-row {
|
|
margin-top: 54px;
|
|
}
|
|
.playlists {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: {
|
|
right: -12px;
|
|
left: -12px;
|
|
}
|
|
.index-playlist {
|
|
margin: 12px 12px 24px 12px;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
margin-bottom: 20px;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: var(--color-text);
|
|
a {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
opacity: 0.68;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 48px;
|
|
}
|
|
</style>
|