mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
fix album and artist card search results responsiveness
This commit is contained in:
@@ -6,9 +6,6 @@
|
||||
<div class="disc-number" v-if="$route.name === Routes.folder">
|
||||
In this folder
|
||||
</div>
|
||||
<div class="disc-number" v-if="$route.name === Routes.playlist">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="songlist">
|
||||
<SongItem
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
<template>
|
||||
<div class="artists-results" v-if="search.artists.value.length">
|
||||
<div class="search-results-grid">
|
||||
<div class="artists-results">
|
||||
<div class="search-results-grid" v-if="album_grid == true">
|
||||
<AlbumCard v-for="a in search.albums.value" :key="a.albumid" :album="a" />
|
||||
</div>
|
||||
<div class="search-results-grid" v-else>
|
||||
<ArtistCard
|
||||
v-for="artist in search.artists.value"
|
||||
:key="artist.image"
|
||||
@@ -14,10 +17,17 @@
|
||||
|
||||
<script setup lang="ts">
|
||||
import useSearchStore from "../../../stores/search";
|
||||
|
||||
import AlbumCard from "@/components/shared/AlbumCard.vue";
|
||||
import ArtistCard from "../../shared/ArtistCard.vue";
|
||||
import LoadMore from "./LoadMore.vue";
|
||||
|
||||
const search = useSearchStore();
|
||||
|
||||
defineProps<{
|
||||
album_grid?: boolean;
|
||||
}>();
|
||||
|
||||
function loadMore() {
|
||||
search.updateLoadCounter("artists");
|
||||
search.loadArtists(search.loadCounter.artists);
|
||||
@@ -25,18 +35,14 @@ function loadMore() {
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.right-search .artists-results {
|
||||
.artists-results {
|
||||
display: grid;
|
||||
margin: 0 1rem;
|
||||
}
|
||||
|
||||
.xartist {
|
||||
background-color: $gray;
|
||||
|
||||
.artist-image {
|
||||
width: 7rem;
|
||||
height: 7rem;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
.search-results-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 0.75rem;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<TracksGrid />
|
||||
</Tab>
|
||||
<Tab name="albums">
|
||||
<AlbumGrid />
|
||||
<ArtistGrid :album_grid="true" />
|
||||
</Tab>
|
||||
<Tab name="artists">
|
||||
<ArtistGrid />
|
||||
@@ -15,7 +15,6 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import AlbumGrid from "./AlbumGrid.vue";
|
||||
import ArtistGrid from "./ArtistGrid.vue";
|
||||
import Tab from "./Tab.vue";
|
||||
import TabsWrapper from "./TabsWrapper.vue";
|
||||
@@ -36,11 +35,7 @@ import TracksGrid from "./TracksGrid.vue";
|
||||
font-size: 2rem;
|
||||
color: $white;
|
||||
}
|
||||
.search-results-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
|
||||
.input {
|
||||
display: flex;
|
||||
|
||||
@@ -6,17 +6,11 @@
|
||||
}"
|
||||
class="result-item"
|
||||
>
|
||||
<div class="img">
|
||||
<div
|
||||
class="album-art image"
|
||||
:style="{
|
||||
backgroundImage: `url("${imguri + album.image}")`,
|
||||
}"
|
||||
></div>
|
||||
<div class="play shadow-lg image"></div>
|
||||
<img class="rounded" :src="imguri + album.image" alt="" />
|
||||
<div>
|
||||
<h4 class="title ellip">{{ album.title }}</h4>
|
||||
<div class="artist ellip">{{ album.artist }}</div>
|
||||
</div>
|
||||
<div class="title ellip">{{ album.title }}</div>
|
||||
<div class="artistsx ellipsis">{{ album.artist }}</div>
|
||||
</router-link>
|
||||
</template>
|
||||
|
||||
@@ -32,60 +26,31 @@ defineProps<{
|
||||
|
||||
<style lang="scss">
|
||||
.result-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
display: grid;
|
||||
gap: $small;
|
||||
padding: $small;
|
||||
border-radius: 0.75rem;
|
||||
text-align: left !important;
|
||||
background-color: $gray4;
|
||||
color: #ffffffde !important;
|
||||
transition: all 0.5s ease;
|
||||
min-width: 8.5rem;
|
||||
border-radius: .7rem;
|
||||
|
||||
.img {
|
||||
position: relative;
|
||||
img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.play {
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
.play {
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
background-color: $gray;
|
||||
border-radius: 1rem;
|
||||
position: absolute;
|
||||
left: 2rem;
|
||||
bottom: 2.5rem;
|
||||
background-image: url("../../assets/icons/play.svg");
|
||||
background-size: 2rem;
|
||||
background-position: 60% 50%;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.album-art {
|
||||
height: 7.5rem;
|
||||
width: 7.5rem;
|
||||
border-radius: 0.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
h4 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.title {
|
||||
width: 7rem;
|
||||
margin-bottom: 0.25rem;
|
||||
margin-bottom: $smaller;
|
||||
font-size: 0.9rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.artistsx {
|
||||
width: 7rem;
|
||||
.artist {
|
||||
font-size: 0.8rem;
|
||||
text-align: left;
|
||||
color: #ffffffbd;
|
||||
opacity: .75;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
<img
|
||||
class="artist-image shadow-sm"
|
||||
:src="imguri + artist.image"
|
||||
alt=""
|
||||
loading="lazy"
|
||||
/>
|
||||
<div>
|
||||
@@ -30,13 +29,10 @@ defineProps<{
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
min-width: 8.5em;
|
||||
height: 11em;
|
||||
border-radius: 0.75rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
display: grid;
|
||||
justify-content: center;
|
||||
padding: 1rem $small;
|
||||
cursor: pointer;
|
||||
|
||||
.artist-image {
|
||||
@@ -66,5 +62,15 @@ defineProps<{
|
||||
|
||||
._is_on_sidebar {
|
||||
background-color: $gray4 !important;
|
||||
|
||||
.artist-image {
|
||||
width: 7rem;
|
||||
height: 7rem;
|
||||
|
||||
@include for-desktop-down {
|
||||
width: 6rem;
|
||||
height: 6rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user