mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
99 lines
1.6 KiB
Vue
99 lines
1.6 KiB
Vue
<template>
|
|
<div class="options border rounded">
|
|
<div class="item info header">Filter by:</div>
|
|
<div
|
|
class="item"
|
|
v-for="option in options"
|
|
:key="option"
|
|
@click="addFilter(option.icon)"
|
|
>
|
|
<div>
|
|
<span class="icon">{{ option.icon }}</span>
|
|
<span class="title"> {{ option.title }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ["magic_flag"],
|
|
setup(props, { emit }) {
|
|
const options = [
|
|
{
|
|
title: "Track",
|
|
icon: "🎵",
|
|
},
|
|
{
|
|
title: "Album",
|
|
icon: "💿",
|
|
},
|
|
{
|
|
title: "Artist",
|
|
icon: "👤",
|
|
},
|
|
{
|
|
title: "Playlist",
|
|
icon: "🎧",
|
|
},
|
|
{
|
|
title: "Folder",
|
|
icon: "📁",
|
|
},
|
|
];
|
|
|
|
function addFilter(value) {
|
|
emit("addFilter", value);
|
|
}
|
|
|
|
return {
|
|
options,
|
|
addFilter,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.right-search .options {
|
|
display: flex;
|
|
margin-bottom: $small;
|
|
|
|
.item {
|
|
margin: $small;
|
|
width: 2.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
transition: all 0.2s ease-in-out;
|
|
position: relative;
|
|
|
|
.title {
|
|
position: absolute;
|
|
left: 1.5rem;
|
|
top: 0.5rem;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.icon {
|
|
position: absolute;
|
|
top: 0.5rem;
|
|
left: .75rem;
|
|
}
|
|
|
|
&:hover {
|
|
width: 5.5rem;
|
|
|
|
.title {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|
|
|
|
.header {
|
|
width: 5.5rem;
|
|
}
|
|
}
|
|
</style>
|