Files
swingmusic-extended/src/components/nav/Titles/Folder.vue
T
2022-06-09 09:30:43 +03:00

137 lines
2.7 KiB
Vue

<template>
<div id="folder-nav-title">
<div class="folder" v-motion-slide-from-left-100>
<div class="fname">
<div class="icon image"></div>
<div class="paths">
<div
class="path"
v-for="path in subPaths"
:key="path.path"
:class="{ inthisfolder: path.active }"
v-motion-slide-from-left-100
@click="
$router.push({ name: 'FolderView', params: { path: path.path } })
"
>
<span class="text">{{ path.name }}</span>
</div>
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { focusElem } from "@/composables/perks";
import { subPath } from "@/interfaces";
import { onUpdated } from "vue";
defineProps<{
subPaths: subPath[];
}>();
onUpdated(() => {
focusElem("inthisfolder");
});
</script>
<style lang="scss">
#folder-nav-title {
.folder {
display: flex;
gap: $small;
.playbtnrect {
height: 2.25rem;
}
.drop-btn {
width: 2.25rem;
.drop-icon {
height: 2.25rem;
width: 2.25rem;
}
}
.fname {
background-color: $gray4;
border-radius: $small;
height: 2.25rem;
display: flex;
align-items: center;
margin-left: $smaller;
overflow: auto;
padding-right: $smaller;
color: rgba(255, 255, 255, 0.678);
.icon {
height: 2rem;
aspect-ratio: 1;
background-image: url("../../../assets/icons/folder.fill.svg");
background-size: 1.5rem;
margin-left: $smaller;
background-position: 65% 50%;
}
.paths {
display: flex;
gap: $smaller;
overflow: auto;
height: 100%;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
.path {
white-space: nowrap;
display: flex;
align-items: center;
cursor: default;
.text {
padding: $smaller;
border-radius: $smaller;
}
&::before {
content: "";
height: $medium;
margin-right: $smaller;
border-right: solid 1px $white;
transform: rotate(20deg);
}
&:first-child {
&::before {
display: none;
}
}
&:last-child {
padding-right: $smaller;
}
&:hover {
.text {
background-color: $gray;
}
}
}
.inthisfolder > .text {
color: #fff;
font-weight: bold;
background-color: $gray;
transition: all 0.5s;
}
}
}
}
}
</style>