sharkey/src/client/app/desktop/views/components/ui.header.nav.vue

142 lines
2.9 KiB
Vue
Raw Normal View History

2018-02-12 21:10:16 +09:00
<template>
2018-02-20 22:53:34 +09:00
<div class="nav">
2018-02-12 21:10:16 +09:00
<ul>
2019-02-18 00:41:05 +09:00
<li class="timeline" :class="{ active: $route.name == 'index' }" @click="goToTop">
2019-02-16 16:40:17 +09:00
<router-link to="/"><fa icon="home"/><p>{{ $t('@.timeline') }}</p></router-link>
2019-02-16 06:50:58 +09:00
</li>
2019-02-16 17:41:54 +09:00
<li class="featured" :class="{ active: $route.name == 'featured' }">
2019-02-15 06:31:03 +09:00
<router-link to="/featured"><fa :icon="faNewspaper"/><p>{{ $t('@.featured-notes') }}</p></router-link>
</li>
2019-02-18 11:20:20 +09:00
<li class="explore" :class="{ active: $route.name == 'explore' || $route.name == 'explore-tag' }">
2019-02-16 06:50:58 +09:00
<router-link to="/explore"><fa :icon="faHashtag"/><p>{{ $t('@.explore') }}</p></router-link>
</li>
2019-02-15 06:31:03 +09:00
<li class="game">
<a @click="game">
<fa icon="gamepad"/>
<p>{{ $t('game') }}</p>
<template v-if="hasGameInvitations"><fa icon="circle"/></template>
</a>
</li>
2018-02-12 21:10:16 +09:00
</ul>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-03-07 17:48:32 +09:00
import MkGameWindow from './game-window.vue';
2019-02-16 06:50:58 +09:00
import { faNewspaper, faHashtag } from '@fortawesome/free-solid-svg-icons';
2018-02-12 21:10:16 +09:00
export default Vue.extend({
i18n: i18n('desktop/views/components/ui.header.nav.vue'),
2018-02-12 21:10:16 +09:00
data() {
return {
2018-03-07 17:48:32 +09:00
hasGameInvitations: false,
2019-02-15 06:31:03 +09:00
connection: null,
2019-02-16 06:50:58 +09:00
faNewspaper, faHashtag
2018-02-12 21:10:16 +09:00
};
},
mounted() {
2018-05-27 13:49:09 +09:00
if (this.$store.getters.isSignedIn) {
2018-11-09 08:13:34 +09:00
this.connection = this.$root.stream.useSharedConnection('main');
2018-02-12 21:10:16 +09:00
this.connection.on('reversiInvited', this.onReversiInvited);
2018-12-09 23:10:02 +09:00
this.connection.on('reversiNoInvites', this.onReversiNoInvites);
2018-02-12 21:10:16 +09:00
}
},
beforeDestroy() {
2018-05-27 13:49:09 +09:00
if (this.$store.getters.isSignedIn) {
this.connection.dispose();
2018-02-12 21:10:16 +09:00
}
},
methods: {
2018-06-17 08:10:54 +09:00
onReversiInvited() {
2018-03-11 18:08:26 +09:00
this.hasGameInvitations = true;
},
2018-06-17 08:10:54 +09:00
onReversiNoInvites() {
2018-03-11 18:08:26 +09:00
this.hasGameInvitations = false;
2018-02-12 21:10:16 +09:00
},
2018-03-07 17:48:32 +09:00
game() {
2018-11-09 08:13:34 +09:00
this.$root.new(MkGameWindow);
2018-07-23 14:35:00 +09:00
},
2018-07-26 04:29:09 +09:00
goToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
2018-02-12 21:10:16 +09:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-27 15:19:11 +09:00
.nav
2018-02-12 21:10:16 +09: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 20:19:35 +09:00
border-bottom solid 3px var(--primary)
2018-02-12 21:10:16 +09:00
> a
display inline-block
z-index 1
height 100%
2019-02-15 15:00:20 +09:00
padding 0 20px
2018-02-12 21:10:16 +09:00
font-size 13px
font-variant small-caps
2018-09-27 15:19:11 +09:00
color var(--desktopHeaderFg)
2018-02-12 21:10:16 +09:00
text-decoration none
transition none
cursor pointer
*
pointer-events none
&:hover
2018-09-27 15:19:11 +09:00
color var(--desktopHeaderHoverFg)
2018-02-12 21:10:16 +09:00
text-decoration none
> [data-icon]:first-child
2018-02-12 21:10:16 +09:00
margin-right 8px
> [data-icon]:last-child
2018-02-12 21:10:16 +09:00
margin-left 5px
font-size 10px
2018-12-31 01:15:32 +09:00
color var(--notificationIndicator)
2018-02-12 21:10:16 +09: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>