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}`">
|
|
|
|
<img class="avatar" :src="`${$store.state.i.avatarUrl}?thumbnail&size=128`" alt="avatar"/>
|
|
|
|
<p class="name">{{ $store.state.i | userName }}</p>
|
2018-02-23 08:30:30 -06:00
|
|
|
</router-link>
|
|
|
|
<div class="links">
|
|
|
|
<ul>
|
2018-04-27 12:29:17 -05:00
|
|
|
<li><router-link to="/" :data-active="$route.name == 'index'">%fa:home%%i18n:@home%%fa:angle-right%</router-link></li>
|
|
|
|
<li><router-link to="/i/notifications" :data-active="$route.name == 'notifications'">%fa:R bell%%i18n:@notifications%<template v-if="hasUnreadNotifications">%fa:circle%</template>%fa:angle-right%</router-link></li>
|
|
|
|
<li><router-link to="/i/messaging" :data-active="$route.name == 'messaging'">%fa:R comments%%i18n:@messaging%<template v-if="hasUnreadMessagingMessages">%fa:circle%</template>%fa:angle-right%</router-link></li>
|
|
|
|
<li><router-link to="/othello" :data-active="$route.name == 'othello'">%fa:gamepad%ゲーム<template v-if="hasGameInvitations">%fa:circle%</template>%fa:angle-right%</router-link></li>
|
2018-02-23 08:30:30 -06:00
|
|
|
</ul>
|
|
|
|
<ul>
|
2018-05-17 02:24:01 -05:00
|
|
|
<li><router-link to="/i/widgets" :data-active="$route.name == 'widgets'">%fa:quidditch%%i18n:@widgets%%fa:angle-right%</router-link></li>
|
2018-04-27 12:29:17 -05:00
|
|
|
<li><router-link to="/i/drive" :data-active="$route.name == 'drive'">%fa:cloud%%i18n:@drive%%fa:angle-right%</router-link></li>
|
2018-02-23 08:30:30 -06:00
|
|
|
</ul>
|
|
|
|
<ul>
|
2018-04-14 11:04:40 -05:00
|
|
|
<li><a @click="search">%fa:search%%i18n:@search%%fa:angle-right%</a></li>
|
2018-02-23 08:30:30 -06:00
|
|
|
</ul>
|
|
|
|
<ul>
|
2018-05-21 21:31:06 -05:00
|
|
|
<li><router-link to="/i/settings" :data-active="$route.name == 'settings'">%fa:cog%%i18n:@settings%%fa:angle-right%</router-link></li>
|
2018-05-23 15:28:46 -05:00
|
|
|
<li @click="dark"><p><template v-if="$store.state.device.darkmode">%fa:moon%</template><template v-else>%fa:R moon%</template><span>ダークモード</span></p></li>
|
2018-02-23 08:30:30 -06:00
|
|
|
</ul>
|
|
|
|
</div>
|
2018-04-14 11:04:40 -05:00
|
|
|
<a :href="aboutUrl"><p class="about">%i18n:@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-04-09 04:52:29 -05:00
|
|
|
import { docsUrl, lang } from '../../../config';
|
2018-02-13 23:53:52 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-02-21 16:06:47 -06:00
|
|
|
props: ['isOpen'],
|
2018-02-13 23:53:52 -06:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
hasUnreadNotifications: false,
|
|
|
|
hasUnreadMessagingMessages: false,
|
2018-03-11 04:08:26 -05:00
|
|
|
hasGameInvitations: false,
|
2018-02-13 23:53:52 -06:00
|
|
|
connection: null,
|
2018-02-21 16:06:47 -06:00
|
|
|
connectionId: null,
|
2018-04-09 04:52:29 -05:00
|
|
|
aboutUrl: `${docsUrl}/${lang}/about`
|
2018-02-13 23:53:52 -06:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-05-26 23:49:09 -05:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
2018-02-17 21:35:18 -06:00
|
|
|
this.connection = (this as any).os.stream.getConnection();
|
|
|
|
this.connectionId = (this as any).os.stream.use();
|
2018-02-13 23:53:52 -06:00
|
|
|
|
|
|
|
this.connection.on('read_all_notifications', this.onReadAllNotifications);
|
|
|
|
this.connection.on('unread_notification', this.onUnreadNotification);
|
|
|
|
this.connection.on('read_all_messaging_messages', this.onReadAllMessagingMessages);
|
|
|
|
this.connection.on('unread_messaging_message', this.onUnreadMessagingMessage);
|
2018-03-11 04:08:26 -05:00
|
|
|
this.connection.on('othello_invited', this.onOthelloInvited);
|
|
|
|
this.connection.on('othello_no_invites', this.onOthelloNoInvites);
|
2018-02-13 23:53:52 -06:00
|
|
|
|
|
|
|
// Fetch count of unread notifications
|
2018-02-17 21:35:18 -06:00
|
|
|
(this as any).api('notifications/get_unread_count').then(res => {
|
2018-02-13 23:53:52 -06:00
|
|
|
if (res.count > 0) {
|
|
|
|
this.hasUnreadNotifications = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Fetch count of unread messaging messages
|
2018-02-17 21:35:18 -06:00
|
|
|
(this as any).api('messaging/unread').then(res => {
|
2018-02-13 23:53:52 -06:00
|
|
|
if (res.count > 0) {
|
|
|
|
this.hasUnreadMessagingMessages = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
2018-05-26 23:49:09 -05:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
2018-02-13 23:53:52 -06:00
|
|
|
this.connection.off('read_all_notifications', this.onReadAllNotifications);
|
|
|
|
this.connection.off('unread_notification', this.onUnreadNotification);
|
|
|
|
this.connection.off('read_all_messaging_messages', this.onReadAllMessagingMessages);
|
|
|
|
this.connection.off('unread_messaging_message', this.onUnreadMessagingMessage);
|
2018-03-11 04:08:26 -05:00
|
|
|
this.connection.off('othello_invited', this.onOthelloInvited);
|
|
|
|
this.connection.off('othello_no_invites', this.onOthelloNoInvites);
|
2018-02-17 21:35:18 -06:00
|
|
|
(this as any).os.stream.dispose(this.connectionId);
|
2018-02-13 23:53:52 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
search() {
|
2018-05-20 06:26:38 -05:00
|
|
|
const query = window.prompt('%i18n:@search%');
|
2018-02-13 23:53:52 -06:00
|
|
|
if (query == null || query == '') return;
|
2018-02-21 12:11:24 -06:00
|
|
|
this.$router.push('/search?q=' + encodeURIComponent(query));
|
2018-02-13 23:53:52 -06:00
|
|
|
},
|
|
|
|
onReadAllNotifications() {
|
|
|
|
this.hasUnreadNotifications = false;
|
|
|
|
},
|
|
|
|
onUnreadNotification() {
|
|
|
|
this.hasUnreadNotifications = true;
|
|
|
|
},
|
|
|
|
onReadAllMessagingMessages() {
|
|
|
|
this.hasUnreadMessagingMessages = false;
|
|
|
|
},
|
|
|
|
onUnreadMessagingMessage() {
|
|
|
|
this.hasUnreadMessagingMessages = true;
|
2018-03-11 04:08:26 -05:00
|
|
|
},
|
|
|
|
onOthelloInvited() {
|
|
|
|
this.hasGameInvitations = true;
|
|
|
|
},
|
|
|
|
onOthelloNoInvites() {
|
|
|
|
this.hasGameInvitations = false;
|
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-03-02 22:47:55 -06:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-27 12:29:17 -05:00
|
|
|
root(isDark)
|
|
|
|
$color = isDark ? #c9d2e0 : #777
|
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
.backdrop
|
|
|
|
position fixed
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
z-index 1025
|
|
|
|
width 100%
|
|
|
|
height 100%
|
2018-04-27 12:29:17 -05:00
|
|
|
background isDark ? rgba(#000, 0.7) : rgba(#000, 0.2)
|
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-04-27 12:29:17 -05:00
|
|
|
background isDark ? #16191f : #fff
|
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
|
|
|
|
|
|
|
|
li
|
|
|
|
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]
|
|
|
|
color $theme-color-foreground
|
|
|
|
background $theme-color
|
|
|
|
|
|
|
|
> [data-fa]:last-child
|
|
|
|
color $theme-color-foreground
|
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
> [data-fa]:first-child
|
|
|
|
margin-right 0.5em
|
|
|
|
|
|
|
|
> [data-fa].circle
|
|
|
|
margin-left 6px
|
|
|
|
font-size 10px
|
|
|
|
color $theme-color
|
|
|
|
|
|
|
|
> [data-fa]:last-child
|
|
|
|
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
|
|
|
|
|
|
|
.about
|
|
|
|
margin 0
|
|
|
|
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-04-27 12:29:17 -05:00
|
|
|
.nav[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.nav:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-13 23:53:52 -06:00
|
|
|
</style>
|