iceshrimp-legacy/src/client/app/desktop/views/components/ui.header.nav.vue

164 lines
3.5 KiB
Vue
Raw Normal View History

2018-02-12 13:10:16 +01:00
<template>
2018-02-20 14:53:34 +01:00
<div class="nav">
2018-02-12 13:10:16 +01:00
<ul>
2018-05-27 06:49:09 +02:00
<template v-if="$store.getters.isSignedIn">
2018-10-19 04:10:49 +02:00
<template v-if="$store.state.device.deckDefault">
<li class="deck" :class="{ active: $route.name == 'deck' || $route.name == 'index' }" @click="goToTop">
<router-link to="/"><fa icon="columns"/><p>%i18n:@deck%</p></router-link>
2018-10-19 04:10:49 +02:00
</li>
<li class="home" :class="{ active: $route.name == 'home' }" @click="goToTop">
<router-link to="/home"><fa icon="home"/><p>%i18n:@home%</p></router-link>
2018-10-19 04:10:49 +02:00
</li>
</template>
<template v-else>
<li class="home" :class="{ active: $route.name == 'home' || $route.name == 'index' }" @click="goToTop">
<router-link to="/"><fa icon="home"/><p>%i18n:@home%</p></router-link>
2018-10-19 04:10:49 +02:00
</li>
<li class="deck" :class="{ active: $route.name == 'deck' }" @click="goToTop">
<router-link to="/deck"><fa icon="columns"/><p>%i18n:@deck%</p></router-link>
2018-10-19 04:10:49 +02:00
</li>
</template>
2018-02-12 13:10:16 +01:00
<li class="messaging">
<a @click="messaging">
<fa icon="comments"/>
2018-04-14 18:04:40 +02:00
<p>%i18n:@messaging%</p>
<template v-if="hasUnreadMessagingMessage"><fa icon="circle"/></template>
2018-02-12 13:10:16 +01:00
</a>
</li>
2018-03-07 09:48:32 +01:00
<li class="game">
<a @click="game">
<fa icon="gamepad"/>
2018-04-14 19:03:36 +02:00
<p>%i18n:@game%</p>
<template v-if="hasGameInvitations"><fa icon="circle"/></template>
2018-03-07 09:48:32 +01:00
</a>
</li>
2018-02-12 13:10:16 +01:00
</template>
</ul>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-18 15:51:41 +01:00
import MkMessagingWindow from './messaging-window.vue';
2018-03-07 09:48:32 +01:00
import MkGameWindow from './game-window.vue';
2018-02-12 13:10:16 +01:00
export default Vue.extend({
data() {
return {
2018-03-07 09:48:32 +01:00
hasGameInvitations: false,
connection: null
2018-02-12 13:10:16 +01:00
};
},
2018-05-28 19:31:32 +02:00
computed: {
hasUnreadMessagingMessage(): boolean {
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadMessagingMessage;
}
},
2018-02-12 13:10:16 +01:00
mounted() {
2018-05-27 06:49:09 +02:00
if (this.$store.getters.isSignedIn) {
this.connection = (this as any).os.stream.useSharedConnection('main');
2018-02-12 13:10:16 +01:00
this.connection.on('reversiInvited', this.onReversiInvited);
2018-06-17 01:10:54 +02:00
this.connection.on('reversi_no_invites', this.onReversiNoInvites);
2018-02-12 13:10:16 +01:00
}
},
beforeDestroy() {
2018-05-27 06:49:09 +02:00
if (this.$store.getters.isSignedIn) {
this.connection.dispose();
2018-02-12 13:10:16 +01:00
}
},
methods: {
2018-06-17 01:10:54 +02:00
onReversiInvited() {
2018-03-11 10:08:26 +01:00
this.hasGameInvitations = true;
},
2018-06-17 01:10:54 +02:00
onReversiNoInvites() {
2018-03-11 10:08:26 +01:00
this.hasGameInvitations = false;
2018-02-12 13:10:16 +01:00
},
messaging() {
2018-02-22 15:53:07 +01:00
(this as any).os.new(MkMessagingWindow);
2018-03-07 09:48:32 +01:00
},
game() {
(this as any).os.new(MkGameWindow);
2018-07-23 07:35:00 +02:00
},
2018-07-25 21:29:09 +02:00
goToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
2018-02-12 13:10:16 +01:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-27 08:19:11 +02:00
.nav
2018-02-12 13:10:16 +01:00
display inline-block
margin 0
padding 0
line-height 3rem
vertical-align top
> ul
display inline-block
margin 0
padding 0
vertical-align top
line-height 3rem
list-style none
> li
display inline-block
vertical-align top
height 48px
line-height 48px
&.active
> a
2018-09-26 13:19:35 +02:00
border-bottom solid 3px var(--primary)
2018-02-12 13:10:16 +01:00
> a
display inline-block
z-index 1
height 100%
padding 0 24px
font-size 13px
font-variant small-caps
2018-09-27 08:19:11 +02:00
color var(--desktopHeaderFg)
2018-02-12 13:10:16 +01:00
text-decoration none
transition none
cursor pointer
*
pointer-events none
&:hover
2018-09-27 08:19:11 +02:00
color var(--desktopHeaderHoverFg)
2018-02-12 13:10:16 +01:00
text-decoration none
> [data-icon]:first-child
2018-02-12 13:10:16 +01:00
margin-right 8px
> [data-icon]:last-child
2018-02-12 13:10:16 +01:00
margin-left 5px
font-size 10px
2018-09-26 13:19:35 +02:00
color var(--primary)
2018-02-12 13:10:16 +01:00
@media (max-width 1100px)
margin-left -5px
> p
display inline
margin 0
@media (max-width 1100px)
display none
@media (max-width 700px)
padding 0 12px
</style>