deemix-webui/src/components/pages/Artist.vue

185 lines
5.1 KiB
Vue
Raw Normal View History

<template>
<div class="relative image-header">
<header class="flex items-center" :style="headerStyle">
<h1 class="m-0">{{ artistName }}</h1>
<div
class="grid w-16 h-16 ml-auto rounded-full cursor-pointer bg-primary text-grayscale-870 place-items-center"
@click.stop="sendAddToQueue(downloadLink)"
aria-label="download"
role="button"
>
<i class="text-4xl material-icons" :title="$t('globals.download_hint')">get_app</i>
</div>
</header>
<BaseTabs>
<BaseTab
v-for="(item, name) in artistReleases"
2020-07-18 16:06:07 +00:00
:key="name"
@click="currentTab = name"
:class="{ active: currentTab === name }"
2020-07-18 16:06:07 +00:00
>
{{ $tc(`globals.listTabs.${name}`, 2) }}
</BaseTab>
</BaseTabs>
<table class="table">
<thead>
<tr>
<th
v-for="data in head"
:key="data.title"
@click="data.sortKey ? sortBy(data.sortKey) : null"
:style="{ width: data.width ? data.width : 'auto' }"
class="uppercase-first-letter"
:class="{
'sort-asc': data.sortKey === sortKey && sortOrder == 'asc',
'sort-desc': data.sortKey === sortKey && sortOrder == 'desc',
sortable: data.sortKey,
clickable: data.sortKey
}"
>
2020-07-18 16:06:07 +00:00
<!-- Need to change this behaviour for translations -->
{{ data.title }}
</th>
</tr>
</thead>
<tbody>
<tr v-for="release in sortedData" :key="release.releaseID">
<RouterLink
tag="td"
class="flex items-center clickable"
:data-cm-link="release.releaseLink"
:to="{ name: 'Album', params: { id: release.releaseID } }"
>
<img class="mr-4 rounded coverart" :src="release.releaseCover" style="width: 56px; height: 56px" />
<i v-if="release.isReleaseExplicit" class="material-icons title-icon title-icon--explicit">explicit</i>
<span class="hover:text-primary">{{ release.releaseTitle }}</span>
<i
v-if="checkNewRelease(release.releaseDate)"
class="material-icons title-icon title-icon--right title-icon--new"
>
fiber_new
</i>
</RouterLink>
<td class="w-32 text-center xl:w-40">{{ release.releaseDate }}</td>
<td class="w-20 text-center xl:w-32">{{ release.releaseTracksNumber }}</td>
<td
@click.stop="sendAddToQueue(release.releaseLink)"
:data-cm-link="release.releaseLink"
class="w-8 cursor-pointer"
>
<i class="material-icons hover:text-primary" :title="$t('globals.download_hint')">file_download</i>
</td>
</tr>
</tbody>
</table>
</div>
</template>
<script>
import { defineComponent, ref, unref, reactive, computed, onMounted, toRefs } from '@vue/composition-api'
import { orderBy } from 'lodash-es'
import { BaseTabs, BaseTab } from '@components/globals/BaseTabs'
import { socket } from '@/utils/socket'
import { sendAddToQueue } from '@/utils/downloads'
import { checkNewRelease } from '@/utils/dates'
import { formatArtistData, getArtistData } from '@/data/artist'
import { standardizeData } from '@/data/standardize'
export default defineComponent({
components: {
BaseTabs,
BaseTab
},
setup(props, ctx) {
const state = reactive({
currentTab: '',
sortKey: 'releaseDate',
sortOrder: 'desc',
artistReleases: {},
artistName: '',
artistPicture: '',
currentRelease: computed(() => state.artistReleases[state.currentTab])
})
const artistID = computed(() => ctx.root.$router.currentRoute.params.id)
const hasDataLoaded = ref(false)
getArtistData(unref(artistID))
.then(artistData => {
hasDataLoaded.value = true
const rawData = {
data: [artistData],
hasLoaded: unref(hasDataLoaded)
}
const {
data: [{ artistName, artistPictureXL, artistReleases }]
} = standardizeData(rawData, formatArtistData)
Object.assign(state, {
artistName,
artistPicture: artistPictureXL,
artistReleases,
currentTab: Object.keys(artistReleases)[0]
})
})
.catch(err => console.error(err))
const sortedData = computed(() => {
if (!unref(hasDataLoaded)) {
return []
}
let sortKey = state.sortKey
if (sortKey === 'releaseTracksNumber') {
sortKey = o => new Number(o.releaseTracksNumber)
}
return orderBy(state.currentRelease, sortKey, state.sortOrder)
})
return {
...toRefs(state),
downloadLink: computed(() => `https://www.deezer.com/artist/${unref(artistID)}`),
headerStyle: computed(() => ({
backgroundImage: `linear-gradient(to bottom, transparent 0%, var(--main-background) 100%), url(${state.artistPicture})`
})),
sortedData,
sendAddToQueue,
checkNewRelease
}
},
data() {
const $t = this.$t.bind(this)
const $tc = this.$tc.bind(this)
return {
head: [
{ title: $tc('globals.listTabs.title', 1), sortKey: 'releaseTitle' },
{ title: $t('globals.listTabs.releaseDate'), sortKey: 'releaseDate' },
{ title: $tc('globals.listTabs.track', 2), sortKey: 'releaseTracksNumber' },
// { title: '', width: '32px' }
{ title: '', width: null }
]
}
},
methods: {
sortBy(key) {
if (key === this.sortKey) {
this.sortOrder = this.sortOrder === 'asc' ? 'desc' : 'asc'
} else {
this.sortKey = key
this.sortOrder = 'asc'
}
}
}
})
</script>