2016-11-06 11:10:20 -08:00
|
|
|
<template>
|
2020-10-19 09:38:49 -07:00
|
|
|
<div class="NavPanel">
|
2018-03-31 11:14:36 -07:00
|
|
|
<div class="panel panel-default">
|
|
|
|
<ul>
|
2020-07-07 08:20:37 -07:00
|
|
|
<li v-if="currentUser || !privateMode">
|
2020-07-03 02:56:31 -07:00
|
|
|
<router-link
|
2020-07-07 08:20:37 -07:00
|
|
|
:to="{ name: timelinesRoute }"
|
2020-07-03 02:56:31 -07:00
|
|
|
:class="onTimelineRoute && 'router-link-active'"
|
|
|
|
>
|
2020-10-19 09:38:49 -07:00
|
|
|
<FAIcon fixed-width size="lg" class="button-icon" icon="home" />
|
|
|
|
{{ $t("nav.timelines") }}
|
2016-11-06 11:10:20 -08:00
|
|
|
</router-link>
|
|
|
|
</li>
|
2019-07-05 00:17:44 -07:00
|
|
|
<li v-if="currentUser">
|
2020-07-02 08:03:02 -07:00
|
|
|
<router-link :to="{ name: 'interactions', params: { username: currentUser.screen_name } }">
|
2020-10-19 09:38:49 -07:00
|
|
|
<FAIcon fixed-width size="lg" class="button-icon" icon="bell" />
|
|
|
|
{{ $t("nav.interactions") }}
|
2018-11-13 11:34:56 -08:00
|
|
|
</router-link>
|
|
|
|
</li>
|
2020-05-07 06:10:53 -07:00
|
|
|
<li v-if="currentUser && pleromaChatMessagesAvailable">
|
|
|
|
<router-link :to="{ name: 'chats', params: { username: currentUser.screen_name } }">
|
|
|
|
<div
|
|
|
|
v-if="unreadChatCount"
|
|
|
|
class="badge badge-notification unread-chat-count"
|
|
|
|
>
|
|
|
|
{{ unreadChatCount }}
|
|
|
|
</div>
|
2020-10-19 09:38:49 -07:00
|
|
|
<FAIcon fixed-width size="lg" class="button-icon" icon="comments" />
|
|
|
|
{{ $t("nav.chats") }}
|
2020-05-07 06:10:53 -07:00
|
|
|
</router-link>
|
|
|
|
</li>
|
2019-07-05 00:17:44 -07:00
|
|
|
<li v-if="currentUser && currentUser.locked">
|
2018-12-28 11:39:54 -08:00
|
|
|
<router-link :to="{ name: 'friend-requests' }">
|
2020-10-19 09:38:49 -07:00
|
|
|
<FAIcon fixed-width size="lg" class="button-icon" icon="user-plus" />
|
|
|
|
{{ $t("nav.friend_requests") }}
|
2019-07-05 00:17:44 -07:00
|
|
|
<span
|
|
|
|
v-if="followRequestCount > 0"
|
|
|
|
class="badge follow-request-count"
|
|
|
|
>
|
|
|
|
{{ followRequestCount }}
|
2019-02-11 01:41:17 -08:00
|
|
|
</span>
|
2018-06-06 17:58:44 -07:00
|
|
|
</router-link>
|
|
|
|
</li>
|
2019-11-08 19:53:53 -08:00
|
|
|
<li>
|
|
|
|
<router-link :to="{ name: 'about' }">
|
2020-10-19 09:38:49 -07:00
|
|
|
<FAIcon fixed-width size="lg" class="button-icon" icon="info-circle" />{{ $t("nav.about") }}
|
2019-11-08 19:53:53 -08:00
|
|
|
</router-link>
|
|
|
|
</li>
|
2016-11-06 11:10:20 -08:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./nav_panel.js" ></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2018-03-31 19:28:20 -07:00
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
.NavPanel {
|
|
|
|
.panel {
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: var(--panelShadow);
|
|
|
|
}
|
2018-03-31 19:28:20 -07:00
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2018-04-07 09:30:27 -07:00
|
|
|
}
|
2018-03-31 19:28:20 -07:00
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
.follow-request-count {
|
|
|
|
margin: -6px 10px;
|
|
|
|
background-color: $fallback--bg;
|
|
|
|
background-color: var(--input, $fallback--faint);
|
2018-04-07 09:30:27 -07:00
|
|
|
}
|
2016-11-06 11:10:20 -08:00
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
li {
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
|
|
|
padding: 0;
|
2016-11-06 11:10:20 -08:00
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
&:first-child a {
|
|
|
|
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);
|
|
|
|
}
|
2018-03-31 19:28:20 -07:00
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
&:last-child a {
|
|
|
|
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 09:30:27 -07:00
|
|
|
}
|
2018-03-31 19:28:20 -07:00
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
li:last-child {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
padding: 0.8em 0.85em;
|
2018-03-31 19:28:20 -07:00
|
|
|
|
2018-04-07 09:30:27 -07:00
|
|
|
&:hover {
|
2020-10-19 09:38:49 -07:00
|
|
|
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-03-31 11:14:36 -07:00
|
|
|
}
|
2018-04-07 09:30:27 -07:00
|
|
|
}
|
2019-12-02 08:45:55 -08:00
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
.button-icon {
|
|
|
|
margin-left: -0.1em;
|
|
|
|
margin-right: 0.2em;
|
|
|
|
}
|
2020-09-29 04:13:42 -07:00
|
|
|
|
2020-10-19 09:38:49 -07:00
|
|
|
.button-icon:before {
|
|
|
|
width: 1.1em;
|
|
|
|
}
|
2019-12-02 08:45:55 -08:00
|
|
|
}
|
2016-11-06 11:10:20 -08:00
|
|
|
</style>
|