Files
swingmusic-extended/src/components/PlaylistsList/PlaylistCard.vue
T
2022-09-02 18:19:40 +03:00

90 lines
1.8 KiB
Vue

<template>
<router-link
:to="{ name: 'PlaylistView', params: { pid: props.playlist.playlistid } }"
:playlist="props.playlist"
class="p-card rounded noscroll"
>
<img :src="imguri + props.playlist.thumb" />
<div class="overlay pad-lg">
<div class="p-name">{{ playlist.name }}</div>
<div class="p-count">{{ playlist.count }} Tracks</div>
</div>
<!-- <div class="bottom">
<div class="name ellip">{{ props.playlist.name }}</div>
<div class="count">
<span v-if="props.playlist.count == 0">No Tracks</span>
<span v-else-if="props.playlist.count == 1"
>{{ props.playlist.count }} Track</span
>
<span v-else>{{ props.playlist.count }} Tracks</span>
</div>
</div> -->
</router-link>
</template>
<script setup lang="ts">
import play from "@/composables/usePlayFrom";
import { paths } from "../../config";
import { Playlist } from "../../interfaces";
const imguri = paths.images.playlist;
const props = defineProps<{
playlist: Playlist;
}>();
</script>
<style lang="scss">
.p-card {
transition: all 0.25s ease;
position: relative;
background-color: $playlist-card-bg;
height: 10rem;
img {
width: 100%;
height: 100%;
aspect-ratio: 1/1.2;
object-fit: cover;
border-radius: $medium;
}
.overlay {
position: absolute;
top: 0;
background-image: linear-gradient(
to top,
rgba(22, 22, 22, 0.507),
transparent 50%
);
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-end;
.p-count {
opacity: 0.75;
font-size: 0.75rem;
}
}
&:hover {
background-color: $darkestblue;
}
.bottom {
margin-top: $smaller;
.name {
font-weight: 900;
}
.count {
font-size: $medium;
opacity: 0.5;
}
}
}
</style>