akkoma-fe/src/components/nav_panel/nav_panel.vue

216 lines
5.7 KiB
Vue
Raw Normal View History

2016-11-06 19:10:20 +00:00
<template>
<div class="NavPanel">
<div class="panel panel-default">
<ul>
<li v-if="currentUser || !privateMode">
2021-02-22 14:24:04 +00:00
<button
class="button-unstyled menu-item"
@click="toggleTimelines"
>
2020-10-20 21:31:16 +00:00
<FAIcon
fixed-width
class="fa-scale-110"
2021-02-22 14:24:04 +00:00
icon="stream"
/>{{ $t("nav.timelines") }}
2021-02-22 14:24:04 +00:00
<FAIcon
class="timelines-chevron"
fixed-width
:icon="showTimelines ? 'chevron-up' : 'chevron-down'"
/>
</button>
<div
v-show="showTimelines"
class="timelines-background"
>
<TimelineMenuContent class="timelines" />
</div>
2016-11-06 19:10:20 +00:00
</li>
2022-06-14 20:53:51 +00:00
<li v-if="currentUser">
<router-link
class="menu-item"
:to="{ name: 'lists' }"
>
<FAIcon
fixed-width
class="fa-scale-110"
icon="list"
/>{{ $t("nav.lists") }}
</router-link>
</li>
2019-07-05 07:17:44 +00:00
<li v-if="currentUser">
2021-02-22 14:24:04 +00:00
<router-link
class="menu-item"
:to="{ name: 'interactions', params: { username: currentUser.screen_name } }"
>
2020-10-20 21:31:16 +00:00
<FAIcon
fixed-width
class="fa-scale-110"
2020-10-20 21:31:16 +00:00
icon="bell"
/>{{ $t("nav.interactions") }}
2018-11-13 19:34:56 +00:00
</router-link>
</li>
2019-07-05 07:17:44 +00:00
<li v-if="currentUser && currentUser.locked">
2021-02-22 14:24:04 +00:00
<router-link
class="menu-item"
:to="{ name: 'friend-requests' }"
>
2020-10-20 21:31:16 +00:00
<FAIcon
fixed-width
class="fa-scale-110"
2020-10-20 21:31:16 +00:00
icon="user-plus"
/>{{ $t("nav.friend_requests") }}
2019-07-05 07:17:44 +00:00
<span
v-if="followRequestCount > 0"
class="badge badge-notification"
2019-07-05 07:17:44 +00:00
>
{{ followRequestCount }}
</span>
2018-06-07 00:58:44 +00:00
</router-link>
</li>
2019-11-09 03:53:53 +00:00
<li>
2021-02-22 14:24:04 +00:00
<router-link
class="menu-item"
:to="{ name: 'about' }"
>
2020-10-20 21:31:16 +00:00
<FAIcon
fixed-width
class="fa-scale-110"
2020-10-20 21:31:16 +00:00
icon="info-circle"
/>{{ $t("nav.about") }}
2019-11-09 03:53:53 +00:00
</router-link>
</li>
<li v-if="currentUser">
<router-link
class="menu-item"
:to="{ name: 'announcements' }"
>
<FAIcon
fixed-width
class="fa-scale-110"
icon="bullhorn"
/>{{ $t('nav.announcements') }}
<span
v-if="unreadAnnouncementCount > 0"
class="badge badge-notification"
>
{{ unreadAnnouncementCount }}
</span>
</router-link>
</li>
2016-11-06 19:10:20 +00:00
</ul>
</div>
</div>
</template>
<script src="./nav_panel.js" ></script>
<style lang="scss">
@import '../../_variables.scss';
.NavPanel {
.panel {
overflow: hidden;
box-shadow: var(--panelShadow);
}
ul {
list-style: none;
margin: 0;
padding: 0;
2018-04-07 16:30:27 +00:00
}
li {
2020-10-31 11:59:58 +00:00
position: relative;
border-bottom: 1px solid;
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
padding: 0;
2016-11-06 19:10:20 +00:00
2021-02-22 14:24:04 +00:00
&:first-child .menu-item {
border-top-right-radius: $fallback--panelRadius;
border-top-right-radius: var(--panelRadius, $fallback--panelRadius);
border-top-left-radius: $fallback--panelRadius;
border-top-left-radius: var(--panelRadius, $fallback--panelRadius);
}
2021-02-22 14:24:04 +00:00
&:last-child .menu-item {
border-bottom-right-radius: $fallback--panelRadius;
border-bottom-right-radius: var(--panelRadius, $fallback--panelRadius);
border-bottom-left-radius: $fallback--panelRadius;
border-bottom-left-radius: var(--panelRadius, $fallback--panelRadius);
}
2018-04-07 16:30:27 +00:00
}
li:last-child {
border: none;
}
2021-02-22 14:24:04 +00:00
.menu-item {
display: block;
2020-10-28 19:47:42 +00:00
box-sizing: border-box;
height: 3.5em;
line-height: 3.5em;
padding: 0 1em;
2021-02-22 14:24:04 +00:00
width: 100%;
color: $fallback--link;
color: var(--link, $fallback--link);
2018-04-07 16:30:27 +00:00
&:hover {
background-color: $fallback--lightBg;
background-color: var(--selectedMenu, $fallback--lightBg);
color: $fallback--link;
color: var(--selectedMenuText, $fallback--link);
--faint: var(--selectedMenuFaintText, $fallback--faint);
--faintLink: var(--selectedMenuFaintLink, $fallback--faint);
--lightText: var(--selectedMenuLightText, $fallback--lightText);
--icon: var(--selectedMenuIcon, $fallback--icon);
}
&.router-link-active {
font-weight: bolder;
background-color: $fallback--lightBg;
background-color: var(--selectedMenu, $fallback--lightBg);
color: $fallback--text;
color: var(--selectedMenuText, $fallback--text);
--faint: var(--selectedMenuFaintText, $fallback--faint);
--faintLink: var(--selectedMenuFaintLink, $fallback--faint);
--lightText: var(--selectedMenuLightText, $fallback--lightText);
--icon: var(--selectedMenuIcon, $fallback--icon);
&:hover {
text-decoration: underline;
}
}
2018-04-07 16:30:27 +00:00
}
2021-02-22 14:24:04 +00:00
.timelines-chevron {
margin-left: 0.8em;
font-size: 1.1em;
}
.timelines-background {
padding: 0 0 0 0.6em;
background-color: $fallback--lightBg;
background-color: var(--selectedMenu, $fallback--lightBg);
border-top: 1px solid;
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
}
.timelines {
background-color: $fallback--bg;
background-color: var(--bg, $fallback--bg);
}
.fa-scale-110 {
margin-right: 0.8em;
}
2020-10-31 11:59:58 +00:00
.badge {
2020-10-31 11:59:58 +00:00
position: absolute;
right: 0.6rem;
top: 1.25em;
}
}
2016-11-06 19:10:20 +00:00
</style>