build artist page

+ connect artist page to backend
~ bugs introduced as there are hashing changes in the backend

[will fix later]
This commit is contained in:
geoffrey45
2022-12-03 16:06:26 +03:00
committed by Mungai Njoroge
parent fff2c53801
commit 075765088f
17 changed files with 382 additions and 82 deletions
+114 -4
View File
@@ -1,9 +1,119 @@
<template>
<div class="artist-page-header">
This is the header
<div class="artist-page-header rounded no-scroll">
<div
class="artist-info"
:class="{
nocontrast: artist.info.colors ? isLight(artist.info.colors[0]) : false,
}"
>
<section class="text">
<div class="card-title">ARTIST</div>
<div class="artist-name">{{ artist.info.name }}</div>
<div class="stats">
{{ artist.info.trackcount }} Tracks
{{ artist.info.albumcount }} Albums
{{ formatSeconds(artist.info.duration, true) }}
</div>
</section>
<PlayBtnRect />
</div>
<div class="artist-img">
<img :src="paths.images.artist + artist.info.image" />
</div>
<div
class="gradient"
:style="{
backgroundImage: `linear-gradient(to left, transparent 10%,
${artist.info.colors[0]} 50%,
${artist.info.colors[0]} 100%)`,
}"
></div>
</div>
</template>
<script setup lang="ts"></script>
<script setup lang="ts">
import useArtistPageStore from "@/stores/pages/artist";
import PlayBtnRect from "../shared/PlayBtnRect.vue";
import formatSeconds from "@/utils/useFormatSeconds";
import { isLight } from "@/composables/colors/album";
import { paths } from "@/config";
<style lang="scss"></style>
const artist = useArtistPageStore();
</script>
<style lang="scss">
.artist-page-header {
height: 18rem;
display: grid;
grid-template-columns: 1fr 1fr;
position: relative;
.artist-img {
height: 18rem;
img {
height: 100%;
width: 100%;
object-fit: cover;
object-position: 0% 20%;
}
}
.gradient {
position: absolute;
background-image: linear-gradient(
to left,
transparent 10%,
#434142 50%,
#434142 100%
);
height: 100%;
width: 100%;
}
.artist-info {
z-index: 1;
padding: 1rem;
padding-right: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 1rem;
.text {
display: flex;
flex-direction: column;
gap: $small;
}
.card-title {
opacity: 0.5;
font-size: small;
}
.artist-name {
font-size: 3rem;
font-weight: bold;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.stats {
font-size: small;
}
.playbtnrect {
border-radius: 2rem;
}
}
.artist-info.nocontrast {
color: $black;
}
}
</style>