mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
add filters to search
- move global to center
This commit is contained in:
@@ -1,14 +1,55 @@
|
||||
<template>
|
||||
<div class="right-search">
|
||||
<input
|
||||
type="search"
|
||||
id="search"
|
||||
placeholder="find your music"
|
||||
v-model="query"
|
||||
/>
|
||||
<div
|
||||
class="right-search"
|
||||
@mouseenter="magic_flag = true"
|
||||
@mouseleave="toggleMagicFlag"
|
||||
>
|
||||
<div class="input">
|
||||
<div class="search-icon image"></div>
|
||||
<div class="filter">
|
||||
<div
|
||||
class="item"
|
||||
v-for="filter in filters"
|
||||
:key="filter"
|
||||
@click="removeFilter(filter)"
|
||||
>
|
||||
{{ filter }}<span class="cancel image"></span>
|
||||
</div>
|
||||
</div>
|
||||
<input
|
||||
type="search"
|
||||
id="search"
|
||||
placeholder="find your music"
|
||||
v-model="query"
|
||||
/>
|
||||
<div
|
||||
class="suggestions"
|
||||
:class="{
|
||||
v00: !filters.length && !query,
|
||||
v11: filters.length || query,
|
||||
}"
|
||||
>
|
||||
<div class="item">Kenny Rogers</div>
|
||||
<div class="item">Jim Reeves</div>
|
||||
<div class="item">Juice Wrld</div>
|
||||
<div class="item">Dolly Parton</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="separator no-border"></div>
|
||||
<div class="options" v-if="magic_flag || query || filters.length">
|
||||
<div class="item info">I'm looking for:</div>
|
||||
<div
|
||||
class="item"
|
||||
v-for="option in options"
|
||||
:key="option"
|
||||
@click="addFilter(option.icon)"
|
||||
>
|
||||
{{ option.title }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="scrollable" :class="{ v0: !is_hidden, v1: is_hidden }">
|
||||
<div class="tracks-results">
|
||||
<h3 class="heading">TRACKS<span class="more">SEE ALL</span></h3>
|
||||
<div class="heading">TRACKS<span class="more">SEE ALL</span></div>
|
||||
<div class="result-item" v-for="song in songs" :key="song">
|
||||
<div class="album-art image"></div>
|
||||
<div class="tags">
|
||||
@@ -20,31 +61,22 @@
|
||||
</div>
|
||||
<!-- -->
|
||||
<div class="albums-results">
|
||||
<h3 class="heading">ALBUMS <span class="more">SEE ALL</span></h3>
|
||||
<div class="heading">ALBUMS <span class="more">SEE ALL</span></div>
|
||||
<div class="grid">
|
||||
<div
|
||||
class="result-item result-item3"
|
||||
v-for="album in albums"
|
||||
:key="album"
|
||||
>
|
||||
<div class="result-item" v-for="album in albums" :key="album">
|
||||
<div class="album-art image"></div>
|
||||
<div class="title ellipsis">{{ album }}</div>
|
||||
<div class="title ellip">{{ album }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="separator no-border"></div>
|
||||
<!-- -->
|
||||
<div class="artists-results" v-if="artists">
|
||||
<h3 class="heading">
|
||||
ARTISTS <span class="more" v-if="artists.length > 3">SEE ALL</span>
|
||||
</h3>
|
||||
<div class="heading">ARTISTS <span class="more">SEE ALL</span></div>
|
||||
<div class="grid">
|
||||
<div
|
||||
class="result-item result-item3"
|
||||
v-for="artist in artists"
|
||||
:key="artist"
|
||||
>
|
||||
<div class="result-item" v-for="artist in artists" :key="artist">
|
||||
<div class="image"></div>
|
||||
<div class="name ellipsis">{{ artist }}</div>
|
||||
<div class="title ellip">{{ artist }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -69,19 +101,59 @@ export default {
|
||||
artist: "Michael jackson",
|
||||
},
|
||||
];
|
||||
|
||||
const options = [
|
||||
{
|
||||
title: "🎵 Track",
|
||||
icon: "🎵",
|
||||
},
|
||||
{
|
||||
title: "💿 Album",
|
||||
icon: "💿",
|
||||
},
|
||||
{
|
||||
title: "🙄 Artist",
|
||||
icon: "🙄",
|
||||
},
|
||||
{
|
||||
title: "😍 Playlist",
|
||||
icon: "😍",
|
||||
},
|
||||
{
|
||||
title: "📁 Folder",
|
||||
icon: "📁",
|
||||
},
|
||||
{
|
||||
title: "🈁 this page",
|
||||
icon: "🈁",
|
||||
},
|
||||
];
|
||||
const filters = ref([]);
|
||||
const albums = [
|
||||
"Smooth Criminal like wtf ... and im serious",
|
||||
"Xscape",
|
||||
"USA for Africa",
|
||||
];
|
||||
|
||||
const artists = ["Michael Jackson", "Jackson 5"];
|
||||
|
||||
const artists = ["Michael Jackson waihenya", "Jackson 5"];
|
||||
const query = ref(null);
|
||||
|
||||
const magic_flag = ref(false);
|
||||
const is_hidden = toRefs(props).search;
|
||||
|
||||
function addFilter(filter) {
|
||||
if (!filters.value.includes(filter)) {
|
||||
filters.value.push(filter);
|
||||
}
|
||||
}
|
||||
|
||||
function removeFilter(filter) {
|
||||
filters.value = filters.value.filter((f) => f !== filter);
|
||||
}
|
||||
|
||||
function toggleMagicFlag() {
|
||||
setTimeout(() => {
|
||||
magic_flag.value = false;
|
||||
}, 1000);
|
||||
}
|
||||
|
||||
watch(query, (new_query) => {
|
||||
if (new_query.length > 0) {
|
||||
emit("expandSearch");
|
||||
@@ -90,15 +162,24 @@ export default {
|
||||
}
|
||||
});
|
||||
|
||||
return { songs, albums, artists, query, is_hidden };
|
||||
return {
|
||||
addFilter,
|
||||
toggleMagicFlag,
|
||||
removeFilter,
|
||||
songs,
|
||||
albums,
|
||||
artists,
|
||||
query,
|
||||
is_hidden,
|
||||
magic_flag,
|
||||
options,
|
||||
filters,
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.right-search {
|
||||
z-index: 10;
|
||||
}
|
||||
<style lang="scss">
|
||||
.right-search .v0 {
|
||||
max-height: 0em;
|
||||
transition: max-height 0.5s ease;
|
||||
@@ -113,19 +194,111 @@ export default {
|
||||
position: relative;
|
||||
border-radius: 1rem;
|
||||
margin: 0.5rem 0 0 0;
|
||||
padding: 0.75rem;
|
||||
padding: $small $small 0 0;
|
||||
background-color: #131313b2;
|
||||
overflow: hidden;
|
||||
|
||||
.input {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
|
||||
.filter {
|
||||
display: flex;
|
||||
margin-left: 3rem;
|
||||
|
||||
.item {
|
||||
position: relative;
|
||||
background-color: rgb(39, 37, 37);
|
||||
padding: 0.5rem;
|
||||
border-radius: 0.5rem;
|
||||
cursor: pointer;
|
||||
margin: 0 $small 0 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
&:hover {
|
||||
background-color: rgb(170, 50, 50);
|
||||
width: 4rem;
|
||||
|
||||
.cancel {
|
||||
position: absolute;
|
||||
right: 0.5rem;
|
||||
width: 1.5rem;
|
||||
height: 1.5rem;
|
||||
background-image: url(../../assets/icons/a.svg);
|
||||
background-size: 70%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.search-icon {
|
||||
position: absolute;
|
||||
height: 2.5rem;
|
||||
width: 2.5rem;
|
||||
background-image: url(../../assets/icons/search.svg);
|
||||
background-size: 70%;
|
||||
}
|
||||
|
||||
.v11 {
|
||||
opacity: 0;
|
||||
transform: translateY(-3rem);
|
||||
transition: all 0.2s ease-in;
|
||||
}
|
||||
|
||||
.v00 {
|
||||
opacity: 1;
|
||||
max-height: 3rem;
|
||||
transition: all 0.2s ease-in;
|
||||
}
|
||||
|
||||
.suggestions {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
margin-left: 1rem;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
|
||||
.item {
|
||||
cursor: pointer;
|
||||
background-color: rgb(75, 70, 70);
|
||||
padding: $small;
|
||||
border-radius: $small;
|
||||
|
||||
&:hover {
|
||||
background-color: rgb(170, 50, 50);
|
||||
}
|
||||
}
|
||||
|
||||
.item::before {
|
||||
content: "#";
|
||||
color: grey;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.right-search .options {
|
||||
display: flex;
|
||||
|
||||
.item {
|
||||
background-color: rgb(39, 37, 37);
|
||||
padding: 0.5rem;
|
||||
border-radius: 0.5rem;
|
||||
cursor: pointer;
|
||||
margin: $small;
|
||||
|
||||
&:hover {
|
||||
background-color: rgb(170, 50, 50);
|
||||
}
|
||||
}
|
||||
}
|
||||
.right-search .scrollable {
|
||||
height: 26rem;
|
||||
overflow-y: scroll;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
.right-search .scrollable::-webkit-scrollbar {
|
||||
display: none;
|
||||
padding: 0 $small 0 0;
|
||||
}
|
||||
|
||||
.right-search .heading {
|
||||
@@ -144,16 +317,16 @@ export default {
|
||||
}
|
||||
|
||||
.right-search .heading .more:hover {
|
||||
background: rgb(62, 69, 77);
|
||||
background: $blue;
|
||||
border-radius: 0.5rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
.right-search input {
|
||||
width: 100%;
|
||||
height: 2.5rem;
|
||||
border: none;
|
||||
border-radius: 0.5rem;
|
||||
padding-left: 1rem;
|
||||
background-color: #4645456c;
|
||||
background-color: transparent;
|
||||
color: rgba(255, 255, 255, 0.479);
|
||||
font-size: 1rem;
|
||||
line-height: 3rem;
|
||||
@@ -163,43 +336,50 @@ export default {
|
||||
.right-search input:focus {
|
||||
transition: all 0.5s ease;
|
||||
color: rgb(255, 255, 255);
|
||||
outline: 0.1rem solid #fafafa52;
|
||||
}
|
||||
outline: none;
|
||||
|
||||
.right-search input::-webkit-search-cancel-button {
|
||||
position: relative;
|
||||
right: 1rem;
|
||||
cursor: pointer;
|
||||
&::placeholder {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
.right-search .tracks-results {
|
||||
border-radius: 0.5rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
background-color: rgba(8, 3, 1, 0.274);
|
||||
padding: $small;
|
||||
|
||||
.right-search .tracks-results .heading {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.result-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 4.5rem;
|
||||
width: 100%;
|
||||
background-color: rgba(20, 20, 20, 0.479);
|
||||
|
||||
.right-search .tracks-results .result-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 4.5rem;
|
||||
background-color: rgba(20, 20, 20, 0.733);
|
||||
}
|
||||
.album-art {
|
||||
width: 3.5rem;
|
||||
height: 3.5rem;
|
||||
background-color: rgb(27, 150, 74);
|
||||
border-radius: 0.5rem;
|
||||
margin: 0 $small 0 $small;
|
||||
background-image: url(../../assets/images/thriller.jpg);
|
||||
}
|
||||
|
||||
.right-search .tracks-results .result-item:nth-child(odd) {
|
||||
background-color: rgba(27, 26, 27, 0.589);
|
||||
}
|
||||
.right-search .tracks-results .result-item .album-art {
|
||||
width: 4rem;
|
||||
height: 4rem;
|
||||
background-color: rgb(27, 150, 74);
|
||||
border-radius: 0.5rem;
|
||||
margin: 0 0.5rem 0 0.25rem;
|
||||
background-image: url(../../assets/images/thriller.jpg);
|
||||
.tags .artist {
|
||||
font-size: small;
|
||||
color: rgba(255, 255, 255, 0.63);
|
||||
}
|
||||
|
||||
&:nth-child(odd) {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: $blue;
|
||||
border-radius: $small;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.right-search hr {
|
||||
@@ -207,42 +387,45 @@ export default {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.right-search .tracks-results .result-item .tags .artist {
|
||||
font-size: small;
|
||||
color: rgba(255, 255, 255, 0.63);
|
||||
}
|
||||
/* */
|
||||
|
||||
.right-search .albums-results {
|
||||
border-radius: 0.5rem;
|
||||
background-color: rgba(8, 3, 1, 0.274);
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.right-search .albums-results .grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
.grid {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding: 0 0 0 $small;
|
||||
gap: $small;
|
||||
|
||||
.right-search .result-item3 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.result-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: $small;
|
||||
border-radius: $small;
|
||||
background-color: rgb(24, 23, 23);
|
||||
margin-bottom: 1rem;
|
||||
|
||||
.right-search .albums-results .result-item .album-art {
|
||||
height: 7rem;
|
||||
width: 7rem;
|
||||
background-color: rgba(26, 26, 26, 0.452);
|
||||
border-radius: 0.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
background-image: url(../../assets/images/thriller.jpg);
|
||||
}
|
||||
.album-art {
|
||||
height: 7rem;
|
||||
width: 7rem;
|
||||
background-color: rgba(26, 26, 26, 0.452);
|
||||
border-radius: 0.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
background-image: url(../../assets/images/thriller.jpg);
|
||||
}
|
||||
|
||||
.right-search .albums-results .result-item .title {
|
||||
width: 7rem;
|
||||
text-align: center;
|
||||
margin-bottom: 0.5rem;
|
||||
.title {
|
||||
width: 7rem;
|
||||
text-align: center;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* */
|
||||
@@ -250,28 +433,39 @@ export default {
|
||||
.right-search .artists-results {
|
||||
border-radius: 0.5rem;
|
||||
background-color: rgba(8, 3, 1, 0.274);
|
||||
}
|
||||
|
||||
.right-search .artists-results .grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
.grid {
|
||||
padding: 0 0 0 $small;
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
|
||||
.right-search .artists-results .result-item .image {
|
||||
height: 7rem;
|
||||
width: 7rem;
|
||||
border-radius: 50%;
|
||||
background-color: rgba(16, 65, 14, 0.356);
|
||||
margin-bottom: 0.5rem;
|
||||
background-image: url(../../assets/icons/logo-small.svg);
|
||||
background-size: 50%;
|
||||
background-image: url(../../assets/images/thriller.jpg);
|
||||
background-size: cover;
|
||||
}
|
||||
.result-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: $small;
|
||||
border-radius: $small;
|
||||
background-color: rgb(24, 23, 23);
|
||||
margin-bottom: 1rem;
|
||||
|
||||
.right-search .artists-results .result-item .name {
|
||||
width: 7rem;
|
||||
text-align: center;
|
||||
margin-bottom: 0.5rem;
|
||||
.image {
|
||||
height: 7rem;
|
||||
width: 7rem;
|
||||
border-radius: 50%;
|
||||
background-color: rgba(16, 65, 14, 0.356);
|
||||
margin-bottom: 0.5rem;
|
||||
background-size: 50%;
|
||||
background-image: url(../../assets/images/thriller.jpg);
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.title {
|
||||
width: 7rem;
|
||||
text-align: center;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user