mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
fd863d188c
+ fix play from album card
64 lines
1.2 KiB
Vue
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>
|