9f5dc2c0df
* wip * Rename * Clean up * Clean up * wip * wip * Enable tree shaking * ✌️ * ✌️ * wip * wip * Clean up
164 lines
3.5 KiB
Vue
164 lines
3.5 KiB
Vue
<template>
|
|
<div class="nav">
|
|
<ul>
|
|
<template v-if="$store.getters.isSignedIn">
|
|
<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>
|
|
</li>
|
|
<li class="home" :class="{ active: $route.name == 'home' }" @click="goToTop">
|
|
<router-link to="/home"><fa icon="home"/><p>%i18n:@home%</p></router-link>
|
|
</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>
|
|
</li>
|
|
<li class="deck" :class="{ active: $route.name == 'deck' }" @click="goToTop">
|
|
<router-link to="/deck"><fa icon="columns"/><p>%i18n:@deck%</p></router-link>
|
|
</li>
|
|
</template>
|
|
<li class="messaging">
|
|
<a @click="messaging">
|
|
<fa icon="comments"/>
|
|
<p>%i18n:@messaging%</p>
|
|
<template v-if="hasUnreadMessagingMessage"><fa icon="circle"/></template>
|
|
</a>
|
|
</li>
|
|
<li class="game">
|
|
<a @click="game">
|
|
<fa icon="gamepad"/>
|
|
<p>%i18n:@game%</p>
|
|
<template v-if="hasGameInvitations"><fa icon="circle"/></template>
|
|
</a>
|
|
</li>
|
|
</template>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import MkMessagingWindow from './messaging-window.vue';
|
|
import MkGameWindow from './game-window.vue';
|
|
|
|
export default Vue.extend({
|
|
data() {
|
|
return {
|
|
hasGameInvitations: false,
|
|
connection: null
|
|
};
|
|
},
|
|
computed: {
|
|
hasUnreadMessagingMessage(): boolean {
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadMessagingMessage;
|
|
}
|
|
},
|
|
mounted() {
|
|
if (this.$store.getters.isSignedIn) {
|
|
this.connection = (this as any).os.stream.useSharedConnection('main');
|
|
|
|
this.connection.on('reversiInvited', this.onReversiInvited);
|
|
this.connection.on('reversi_no_invites', this.onReversiNoInvites);
|
|
}
|
|
},
|
|
beforeDestroy() {
|
|
if (this.$store.getters.isSignedIn) {
|
|
this.connection.dispose();
|
|
}
|
|
},
|
|
methods: {
|
|
onReversiInvited() {
|
|
this.hasGameInvitations = true;
|
|
},
|
|
|
|
onReversiNoInvites() {
|
|
this.hasGameInvitations = false;
|
|
},
|
|
|
|
messaging() {
|
|
(this as any).os.new(MkMessagingWindow);
|
|
},
|
|
|
|
game() {
|
|
(this as any).os.new(MkGameWindow);
|
|
},
|
|
|
|
goToTop() {
|
|
window.scrollTo({
|
|
top: 0,
|
|
behavior: 'smooth'
|
|
});
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.nav
|
|
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
|
|
border-bottom solid 3px var(--primary)
|
|
|
|
> a
|
|
display inline-block
|
|
z-index 1
|
|
height 100%
|
|
padding 0 24px
|
|
font-size 13px
|
|
font-variant small-caps
|
|
color var(--desktopHeaderFg)
|
|
text-decoration none
|
|
transition none
|
|
cursor pointer
|
|
|
|
*
|
|
pointer-events none
|
|
|
|
&:hover
|
|
color var(--desktopHeaderHoverFg)
|
|
text-decoration none
|
|
|
|
> [data-icon]:first-child
|
|
margin-right 8px
|
|
|
|
> [data-icon]:last-child
|
|
margin-left 5px
|
|
font-size 10px
|
|
color var(--primary)
|
|
|
|
@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>
|