Files
swingmusic-extended/src/components/AlbumView/ArtistAlbums.vue
T
geoffrey45 fd863d188c remove remaining traces of hard coded Routes enum
+ fix play from album card
2023-01-13 18:13:49 +03:00

64 lines
1.2 KiB
Vue

<template>
<div class="artist-albums">
<h3>
<span>{{ title }} </span>
<span class="see-more" v-if="maxAbumCards <= albums.length">
<RouterLink :to="{ name: Routes.artistDiscography }"
>SEE ALL</RouterLink
>
</span>
</h3>
<div class="cards">
<AlbumCard v-for="a in albums.slice(0, maxAbumCards)" :album="a" />
</div>
</div>
</template>
<script setup lang="ts">
import AlbumCard from "../shared/AlbumCard.vue";
import { Album } from "@/interfaces";
import { maxAbumCards } from "@/stores/content-width";
import { Routes } from "@/router/routes";
defineProps<{
title: string;
albums: Album[];
}>();
</script>
<style lang="scss">
.artist-albums {
overflow: hidden;
h3 {
display: grid;
grid-template-columns: 1fr max-content;
align-items: center;
padding: 0 $medium;
margin-bottom: $small;
.see-more {
font-size: $medium;
a:hover {
text-decoration: underline;
cursor: pointer !important;
}
}
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
gap: 5rem 0;
}
.album-card {
&:hover {
background-color: $gray;
}
}
}
</style>