95 lines
1.9 KiB
Vue
95 lines
1.9 KiB
Vue
<template>
|
|
<aside class="counselor-sidebar">
|
|
<div class="counselor-sidebar__logo">
|
|
<img :src="logo" alt="banu" />
|
|
</div>
|
|
<nav class="counselor-sidebar__nav">
|
|
<ul>
|
|
<li v-for="item in menuItems" :key="item.title" class="counselor-sidebar__item">
|
|
<component
|
|
:is="item.to ? 'RouterLink' : 'div'"
|
|
:to="item.to"
|
|
class="counselor-sidebar__link"
|
|
:class="{ 'counselor-sidebar__link--active': item.active }"
|
|
>
|
|
<SvgIcon v-if="item.icon" :name="item.icon" :size="22" />
|
|
<span>{{ item.title }}</span>
|
|
</component>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</aside>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { gallery } from '@/utils/gallery'
|
|
import SvgIcon from '@/components/icons/SvgIcon.vue'
|
|
|
|
defineProps({
|
|
menuItems: { type: Array, default: () => [] },
|
|
})
|
|
|
|
const logo = gallery.logoPinkishRed
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.counselor-sidebar {
|
|
height: 100%;
|
|
width: 100%;
|
|
background: #fff;
|
|
padding: 1.5rem 1rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
border-radius: 1rem;
|
|
|
|
&__logo {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
img {
|
|
height: 3.5rem;
|
|
object-fit: contain;
|
|
}
|
|
}
|
|
|
|
&__nav {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
}
|
|
}
|
|
|
|
&__link {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.625rem;
|
|
padding: 0.625rem 0.875rem;
|
|
border-radius: 9999px;
|
|
font-family: var(--font-family-fa);
|
|
font-size: 0.875rem;
|
|
color: #4b5563;
|
|
text-decoration: none;
|
|
transition: background-color 0.15s, color 0.15s;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: var(--color-primary);
|
|
color: #fff;
|
|
}
|
|
|
|
&--active {
|
|
background: var(--color-primary);
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
</style>
|