119 lines
No EOL
2.8 KiB
Vue
119 lines
No EOL
2.8 KiB
Vue
<template>
|
|
<nav class="nav">
|
|
<div class="nav__inner">
|
|
<nuxt-link-locale
|
|
class="nav__item"
|
|
:class="[{ active: route.path.includes('settings') }]"
|
|
to="/profile/settings"
|
|
>
|
|
<icon name="ic:baseline-settings" size="20" />
|
|
{{ t('profile.settings.title') }}
|
|
</nuxt-link-locale>
|
|
<nuxt-link-locale
|
|
class="nav__item"
|
|
:class="[{ active: route.path.includes('orders') }]"
|
|
to="/profile/orders"
|
|
>
|
|
<icon name="material-symbols:order-approve-rounded" size="20" />
|
|
{{ t('profile.orders.title') }}
|
|
</nuxt-link-locale>
|
|
<!-- <nuxt-link-locale-->
|
|
<!-- class="nav__item"-->
|
|
<!-- :class="[{ active: route.path.includes('balance') }]"-->
|
|
<!-- to="/profile/balance"-->
|
|
<!-- >-->
|
|
<!-- <icon name="ic:outline-attach-money" size="20" />-->
|
|
<!-- {{ t('profile.balance.title') }}-->
|
|
<!-- </nuxt-link-locale>-->
|
|
<nuxt-link-locale
|
|
class="nav__item"
|
|
:class="[{ active: route.path.includes('promocodes') }]"
|
|
to="/profile/promocodes"
|
|
>
|
|
<icon name="fluent:ticket-20-filled" size="20" />
|
|
{{ t('profile.promocodes.title') }}
|
|
</nuxt-link-locale>
|
|
</div>
|
|
<div class="nav__logout" @click="logout">
|
|
<icon name="material-symbols:power-settings-new-outline" size="20" />
|
|
{{ t('profile.logout') }}
|
|
</div>
|
|
</nav>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {useLogout} from '@composables/auth';
|
|
|
|
const {t} = useI18n();
|
|
const route = useRoute();
|
|
|
|
const { logout } = useLogout();
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.nav {
|
|
position: sticky;
|
|
top: 116px;
|
|
width: 256px;
|
|
flex-shrink: 0;
|
|
height: fit-content;
|
|
|
|
&__inner {
|
|
background-color: $white;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid #e5e7eb;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&__item {
|
|
cursor: pointer;
|
|
padding: 16px 24px;
|
|
border-right: 2px solid transparent;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
transition: 0.2s;
|
|
|
|
color: #374151;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
|
|
@include hover {
|
|
color: $accentDark;
|
|
background-color: #f9fafb;
|
|
}
|
|
|
|
&.active {
|
|
border-right-color: #111827;
|
|
color: #111827;
|
|
background-color: #f9fafb;
|
|
}
|
|
}
|
|
|
|
&__logout {
|
|
cursor: pointer;
|
|
margin-top: 25px;
|
|
border-radius: $default_border_radius;
|
|
background-color: rgba($accent, 0.2);
|
|
border: 1px solid $accent;
|
|
padding: 7px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
transition: 0.2s;
|
|
|
|
color: $accent;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
|
|
@include hover {
|
|
background-color: $accent;
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
</style> |