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