2018-02-13 23:53:52 -06:00
|
|
|
<template>
|
2018-02-23 08:30:30 -06:00
|
|
|
<div class="nav">
|
|
|
|
<transition name="back">
|
|
|
|
<div class="backdrop"
|
|
|
|
v-if="isOpen"
|
|
|
|
@click="$parent.isDrawerOpening = false"
|
|
|
|
@touchstart="$parent.isDrawerOpening = false"
|
|
|
|
></div>
|
|
|
|
</transition>
|
|
|
|
<transition name="nav">
|
|
|
|
<div class="body" v-if="isOpen">
|
2018-05-26 23:49:09 -05:00
|
|
|
<router-link class="me" v-if="$store.getters.isSignedIn" :to="`/@${$store.state.i.username}`">
|
2018-07-24 09:43:14 -05:00
|
|
|
<img class="avatar" :src="$store.state.i.avatarUrl" alt="avatar"/>
|
2018-05-26 23:49:09 -05:00
|
|
|
<p class="name">{{ $store.state.i | userName }}</p>
|
2018-02-23 08:30:30 -06:00
|
|
|
</router-link>
|
|
|
|
<div class="links">
|
|
|
|
<ul>
|
2018-11-08 12:44:35 -06:00
|
|
|
<li><router-link to="/" :data-active="$route.name == 'index'"><i><fa icon="home"/></i>{{ $t('timeline') }}<i><fa icon="angle-right"/></i></router-link></li>
|
|
|
|
<li><router-link to="/i/notifications" :data-active="$route.name == 'notifications'"><i><fa :icon="['far', 'bell']"/></i>{{ $t('notifications') }}<i v-if="hasUnreadNotification" class="circle"><fa icon="circle"/></i><i><fa icon="angle-right"/></i></router-link></li>
|
|
|
|
<li><router-link to="/i/messaging" :data-active="$route.name == 'messaging'"><i><fa :icon="['far', 'comments']"/></i>{{ $t('@.messaging') }}<i v-if="hasUnreadMessagingMessage" class="circle"><fa icon="circle"/></i><i><fa icon="angle-right"/></i></router-link></li>
|
|
|
|
<li v-if="$store.getters.isSignedIn && ($store.state.i.isLocked || $store.state.i.carefulBot)"><router-link to="/i/received-follow-requests" :data-active="$route.name == 'received-follow-requests'"><i><fa :icon="['far', 'envelope']"/></i>{{ $t('follow-requests') }}<i v-if="$store.getters.isSignedIn && $store.state.i.pendingReceivedFollowRequestsCount" class="circle"><fa icon="circle"/></i><i><fa icon="angle-right"/></i></router-link></li>
|
|
|
|
<li><router-link to="/reversi" :data-active="$route.name == 'reversi'"><i><fa icon="gamepad"/></i>{{ $t('game') }}<i v-if="hasGameInvitation" class="circle"><fa icon="circle"/></i><i><fa icon="angle-right"/></i></router-link></li>
|
2018-02-23 08:30:30 -06:00
|
|
|
</ul>
|
|
|
|
<ul>
|
2018-11-08 12:44:35 -06:00
|
|
|
<li><router-link to="/i/widgets" :data-active="$route.name == 'widgets'"><i><fa :icon="['far', 'calendar-alt']"/></i>{{ $t('widgets') }}<i><fa icon="angle-right"/></i></router-link></li>
|
|
|
|
<li><router-link to="/i/favorites" :data-active="$route.name == 'favorites'"><i><fa icon="star"/></i>{{ $t('favorites') }}<i><fa icon="angle-right"/></i></router-link></li>
|
|
|
|
<li><router-link to="/i/lists" :data-active="$route.name == 'user-lists'"><i><fa icon="list"/></i>{{ $t('user-lists') }}<i><fa icon="angle-right"/></i></router-link></li>
|
|
|
|
<li><router-link to="/i/drive" :data-active="$route.name == 'drive'"><i><fa icon="cloud"/></i>{{ $t('@.drive') }}<i><fa icon="angle-right"/></i></router-link></li>
|
2018-02-23 08:30:30 -06:00
|
|
|
</ul>
|
|
|
|
<ul>
|
2018-11-08 12:44:35 -06:00
|
|
|
<li><a @click="search"><i><fa icon="search"/></i>{{ $t('search') }}<i><fa icon="angle-right"/></i></a></li>
|
|
|
|
<li><router-link to="/i/settings" :data-active="$route.name == 'settings'"><i><fa icon="cog"/></i>{{ $t('settings') }}<i><fa icon="angle-right"/></i></router-link></li>
|
2018-11-14 13:15:42 -06:00
|
|
|
<li v-if="$store.getters.isSignedIn && ($store.state.i.isAdmin || $store.state.i.isModerator)"><a href="/admin"><i><fa icon="terminal"/></i><span>{{ $t('admin') }}</span><i><fa icon="angle-right"/></i></a></li>
|
2018-11-08 12:44:35 -06:00
|
|
|
<li @click="dark"><p><template v-if="$store.state.device.darkmode"><i><fa icon="moon"/></i></template><template v-else><i><fa :icon="['far', 'moon']"/></i></template><span>{{ $t('darkmode') }}</span></p></li>
|
2018-02-23 08:30:30 -06:00
|
|
|
</ul>
|
|
|
|
</div>
|
2018-09-06 10:52:13 -05:00
|
|
|
<div class="announcements" v-if="announcements && announcements.length > 0">
|
2018-09-05 03:43:31 -05:00
|
|
|
<article v-for="announcement in announcements">
|
|
|
|
<span v-html="announcement.title" class="title"></span>
|
|
|
|
<div v-html="announcement.text"></div>
|
|
|
|
</article>
|
|
|
|
</div>
|
2018-11-08 12:44:35 -06:00
|
|
|
<a :href="aboutUrl"><p class="about">{{ $t('about') }}</p></a>
|
2018-02-13 23:53:52 -06:00
|
|
|
</div>
|
2018-02-23 08:30:30 -06:00
|
|
|
</transition>
|
2018-02-13 23:53:52 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 12:44:35 -06:00
|
|
|
import i18n from '../../../i18n';
|
2018-08-21 19:31:35 -05:00
|
|
|
import { lang } from '../../../config';
|
2018-02-13 23:53:52 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('mobile/views/components/ui.nav.vue'),
|
2018-02-21 16:06:47 -06:00
|
|
|
props: ['isOpen'],
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2018-05-28 11:22:39 -05:00
|
|
|
hasGameInvitation: false,
|
2018-02-13 23:53:52 -06:00
|
|
|
connection: null,
|
2018-09-05 03:43:31 -05:00
|
|
|
aboutUrl: `/docs/${lang}/about`,
|
|
|
|
announcements: []
|
2018-02-13 23:53:52 -06:00
|
|
|
};
|
|
|
|
},
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-05-28 11:22:39 -05:00
|
|
|
computed: {
|
|
|
|
hasUnreadNotification(): boolean {
|
|
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadNotification;
|
|
|
|
},
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-05-28 11:22:39 -05:00
|
|
|
hasUnreadMessagingMessage(): boolean {
|
|
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadMessagingMessage;
|
|
|
|
}
|
|
|
|
},
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
mounted() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.getMeta().then(meta => {
|
2018-09-05 03:43:31 -05:00
|
|
|
this.announcements = meta.broadcasts;
|
|
|
|
});
|
|
|
|
|
2018-05-26 23:49:09 -05:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.connection = this.$root.stream.useSharedConnection('main');
|
2018-02-13 23:53:52 -06:00
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
this.connection.on('reversiInvited', this.onReversiInvited);
|
2018-06-16 18:10:54 -05:00
|
|
|
this.connection.on('reversi_no_invites', this.onReversiNoInvites);
|
2018-02-13 23:53:52 -06:00
|
|
|
}
|
|
|
|
},
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
beforeDestroy() {
|
2018-05-26 23:49:09 -05:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.connection.dispose();
|
2018-02-13 23:53:52 -06:00
|
|
|
}
|
|
|
|
},
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
methods: {
|
|
|
|
search() {
|
2018-11-08 12:44:35 -06:00
|
|
|
const query = window.prompt(this.$t('search'));
|
2018-02-13 23:53:52 -06:00
|
|
|
if (query == null || query == '') return;
|
2018-09-01 09:12:51 -05:00
|
|
|
this.$router.push(`/search?q=${encodeURIComponent(query)}`);
|
2018-02-13 23:53:52 -06:00
|
|
|
},
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-06-16 18:10:54 -05:00
|
|
|
onReversiInvited() {
|
2018-05-28 11:22:39 -05:00
|
|
|
this.hasGameInvitation = true;
|
2018-03-11 04:08:26 -05:00
|
|
|
},
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-06-16 18:10:54 -05:00
|
|
|
onReversiNoInvites() {
|
2018-05-28 11:22:39 -05:00
|
|
|
this.hasGameInvitation = false;
|
2018-04-27 12:29:17 -05:00
|
|
|
},
|
2018-09-05 03:43:31 -05:00
|
|
|
|
2018-04-27 12:29:17 -05:00
|
|
|
dark() {
|
2018-05-23 15:28:46 -05:00
|
|
|
this.$store.commit('device/set', {
|
|
|
|
key: 'darkmode',
|
|
|
|
value: !this.$store.state.device.darkmode
|
|
|
|
});
|
2018-02-13 23:53:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-27 21:23:30 -05:00
|
|
|
.nav
|
|
|
|
$color = var(--text)
|
2018-04-27 12:29:17 -05:00
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
.backdrop
|
|
|
|
position fixed
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
z-index 1025
|
|
|
|
width 100%
|
|
|
|
height 100%
|
2018-09-27 21:23:30 -05:00
|
|
|
background var(--mobileNavBackdrop)
|
2018-02-13 23:53:52 -06:00
|
|
|
|
|
|
|
.body
|
|
|
|
position fixed
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
z-index 1026
|
|
|
|
width 240px
|
|
|
|
height 100%
|
|
|
|
overflow auto
|
|
|
|
-webkit-overflow-scrolling touch
|
2018-09-27 21:23:30 -05:00
|
|
|
background var(--secondary)
|
2018-02-13 23:53:52 -06:00
|
|
|
|
|
|
|
.me
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
|
|
|
|
.avatar
|
|
|
|
display inline
|
|
|
|
max-width 64px
|
|
|
|
border-radius 32px
|
|
|
|
vertical-align middle
|
|
|
|
|
|
|
|
.name
|
|
|
|
display block
|
|
|
|
margin 0 16px
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 80px
|
|
|
|
padding 0
|
|
|
|
width calc(100% - 112px)
|
2018-04-27 12:29:17 -05:00
|
|
|
color $color
|
2018-02-13 23:53:52 -06:00
|
|
|
line-height 96px
|
|
|
|
overflow hidden
|
|
|
|
text-overflow ellipsis
|
|
|
|
white-space nowrap
|
|
|
|
|
|
|
|
ul
|
|
|
|
display block
|
|
|
|
margin 16px 0
|
|
|
|
padding 0
|
|
|
|
list-style none
|
|
|
|
|
|
|
|
&:first-child
|
|
|
|
margin-top 0
|
|
|
|
|
2018-05-29 14:45:27 -05:00
|
|
|
&:last-child
|
|
|
|
margin-bottom 0
|
|
|
|
|
|
|
|
> li
|
2018-02-13 23:53:52 -06:00
|
|
|
display block
|
|
|
|
font-size 1em
|
|
|
|
line-height 1em
|
|
|
|
|
2018-04-27 12:29:17 -05:00
|
|
|
a, p
|
2018-02-13 23:53:52 -06:00
|
|
|
display block
|
2018-04-27 12:29:17 -05:00
|
|
|
margin 0
|
2018-02-13 23:53:52 -06:00
|
|
|
padding 0 20px
|
|
|
|
line-height 3rem
|
|
|
|
line-height calc(1rem + 30px)
|
2018-04-27 12:29:17 -05:00
|
|
|
color $color
|
2018-02-13 23:53:52 -06:00
|
|
|
text-decoration none
|
|
|
|
|
2018-04-27 12:29:17 -05:00
|
|
|
&[data-active]
|
2018-09-26 06:19:35 -05:00
|
|
|
color var(--primaryForeground)
|
|
|
|
background var(--primary)
|
2018-04-27 12:29:17 -05:00
|
|
|
|
2018-11-05 10:40:11 -06:00
|
|
|
> i:last-child
|
2018-09-26 06:19:35 -05:00
|
|
|
color var(--primaryForeground)
|
2018-04-27 12:29:17 -05:00
|
|
|
|
2018-11-05 10:40:11 -06:00
|
|
|
> i:first-child
|
2018-02-13 23:53:52 -06:00
|
|
|
margin-right 0.5em
|
2018-05-29 05:03:03 -05:00
|
|
|
width 20px
|
|
|
|
text-align center
|
2018-02-13 23:53:52 -06:00
|
|
|
|
2018-11-05 10:40:11 -06:00
|
|
|
> i.circle
|
2018-02-13 23:53:52 -06:00
|
|
|
margin-left 6px
|
|
|
|
font-size 10px
|
2018-09-26 06:19:35 -05:00
|
|
|
color var(--primary)
|
2018-02-13 23:53:52 -06:00
|
|
|
|
2018-11-05 10:40:11 -06:00
|
|
|
> i:last-child
|
2018-02-13 23:53:52 -06:00
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right 0
|
|
|
|
padding 0 20px
|
|
|
|
font-size 1.2em
|
|
|
|
line-height calc(1rem + 30px)
|
2018-04-27 12:29:17 -05:00
|
|
|
color $color
|
2018-04-27 22:00:58 -05:00
|
|
|
opacity 0.5
|
2018-02-13 23:53:52 -06:00
|
|
|
|
2018-09-05 03:43:31 -05:00
|
|
|
.announcements
|
|
|
|
> article
|
2018-09-27 11:05:09 -05:00
|
|
|
background var(--mobileAnnouncement)
|
|
|
|
color var(--mobileAnnouncementFg)
|
2018-09-05 03:43:31 -05:00
|
|
|
padding 16px
|
|
|
|
margin 8px 0
|
|
|
|
font-size 12px
|
|
|
|
|
|
|
|
> .title
|
|
|
|
font-weight bold
|
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
.about
|
2018-05-29 14:45:27 -05:00
|
|
|
margin 0 0 8px 0
|
2018-02-13 23:53:52 -06:00
|
|
|
padding 1em 0
|
|
|
|
text-align center
|
|
|
|
font-size 0.8em
|
2018-04-27 12:29:17 -05:00
|
|
|
color $color
|
2018-02-13 23:53:52 -06:00
|
|
|
opacity 0.5
|
|
|
|
|
2018-02-23 08:30:30 -06:00
|
|
|
.nav-enter-active,
|
|
|
|
.nav-leave-active {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateX(0);
|
|
|
|
transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
|
|
}
|
|
|
|
.nav-enter,
|
|
|
|
.nav-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(-240px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.back-enter-active,
|
|
|
|
.back-leave-active {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
|
|
}
|
|
|
|
.back-enter,
|
|
|
|
.back-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
</style>
|