2018-02-14 07:53:52 +02:00
|
|
|
<template>
|
2018-08-30 16:10:29 +03:00
|
|
|
<div class="header" ref="root">
|
2018-11-08 20:44:35 +02:00
|
|
|
<p class="warn" v-if="env != 'production'">{{ $t('@.do-not-use-in-production') }}</p>
|
2018-02-25 16:31:41 +02:00
|
|
|
<div class="main" ref="main">
|
2018-02-14 07:53:52 +02:00
|
|
|
<div class="backdrop"></div>
|
2018-02-25 16:31:41 +02:00
|
|
|
<div class="content" ref="mainContainer">
|
2018-11-05 18:40:11 +02:00
|
|
|
<button class="nav" @click="$parent.isDrawerOpening = true"><fa icon="bars"/></button>
|
|
|
|
<i v-if="hasUnreadNotification || hasUnreadMessagingMessage || hasGameInvitation" class="circle"><fa icon="circle"/></i>
|
2018-02-15 10:50:19 +02:00
|
|
|
<h1>
|
2018-11-09 09:00:29 +02:00
|
|
|
<slot>{{ $root.instanceName }}</slot>
|
2018-02-15 10:50:19 +02:00
|
|
|
</h1>
|
2018-02-23 19:46:09 +02:00
|
|
|
<slot name="func"></slot>
|
2018-02-14 07:53:52 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-17 17:53:55 +03:00
|
|
|
<div class="indicator" v-show="$store.state.indicate"></div>
|
2018-02-14 07:53:52 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 20:44:35 +02:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-25 16:31:41 +02:00
|
|
|
import * as anime from 'animejs';
|
2018-08-30 16:10:29 +03:00
|
|
|
import { env } from '../../../config';
|
2018-02-14 07:53:52 +02:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 20:44:35 +02:00
|
|
|
i18n: i18n(),
|
2018-02-21 19:37:04 +02:00
|
|
|
props: ['func'],
|
2018-10-07 05:06:17 +03:00
|
|
|
|
2018-02-14 07:53:52 +02:00
|
|
|
data() {
|
|
|
|
return {
|
2018-05-28 19:22:39 +03:00
|
|
|
hasGameInvitation: false,
|
2018-02-14 07:53:52 +02:00
|
|
|
connection: null,
|
2018-08-30 16:10:29 +03:00
|
|
|
env: env
|
2018-02-14 07:53:52 +02:00
|
|
|
};
|
|
|
|
},
|
2018-10-07 05:06:17 +03:00
|
|
|
|
2018-05-28 19:22:39 +03:00
|
|
|
computed: {
|
|
|
|
hasUnreadNotification(): boolean {
|
|
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadNotification;
|
|
|
|
},
|
2018-10-07 05:06:17 +03:00
|
|
|
|
2018-05-28 19:22:39 +03:00
|
|
|
hasUnreadMessagingMessage(): boolean {
|
|
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadMessagingMessage;
|
|
|
|
}
|
|
|
|
},
|
2018-10-07 05:06:17 +03:00
|
|
|
|
2018-02-14 07:53:52 +02:00
|
|
|
mounted() {
|
2018-08-30 16:10:29 +03:00
|
|
|
this.$store.commit('setUiHeaderHeight', this.$refs.root.offsetHeight);
|
2018-04-21 09:37:02 +03:00
|
|
|
|
2018-05-27 07:49:09 +03:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
2018-11-09 01:13:34 +02:00
|
|
|
this.connection = this.$root.stream.useSharedConnection('main');
|
2018-02-14 07:53:52 +02:00
|
|
|
|
2018-10-07 05:06:17 +03:00
|
|
|
this.connection.on('reversiInvited', this.onReversiInvited);
|
2018-06-17 02:10:54 +03:00
|
|
|
this.connection.on('reversi_no_invites', this.onReversiNoInvites);
|
2018-02-14 07:53:52 +02:00
|
|
|
}
|
|
|
|
},
|
2018-10-07 05:06:17 +03:00
|
|
|
|
2018-02-14 07:53:52 +02:00
|
|
|
beforeDestroy() {
|
2018-05-27 07:49:09 +03:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
2018-10-07 05:06:17 +03:00
|
|
|
this.connection.dispose();
|
2018-02-14 07:53:52 +02:00
|
|
|
}
|
|
|
|
},
|
2018-10-07 05:06:17 +03:00
|
|
|
|
2018-02-14 07:53:52 +02:00
|
|
|
methods: {
|
2018-06-17 02:10:54 +03:00
|
|
|
onReversiInvited() {
|
2018-05-28 19:22:39 +03:00
|
|
|
this.hasGameInvitation = true;
|
2018-03-11 11:08:26 +02:00
|
|
|
},
|
2018-10-07 05:06:17 +03:00
|
|
|
|
2018-06-17 02:10:54 +03:00
|
|
|
onReversiNoInvites() {
|
2018-05-28 19:22:39 +03:00
|
|
|
this.hasGameInvitation = false;
|
2018-02-14 07:53:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 05:40:47 +03:00
|
|
|
.header
|
2018-02-14 07:53:52 +02:00
|
|
|
$height = 48px
|
|
|
|
|
|
|
|
position fixed
|
|
|
|
top 0
|
|
|
|
z-index 1024
|
|
|
|
width 100%
|
2018-12-03 02:14:17 +02:00
|
|
|
box-shadow 0 0px 8px rgba(0, 0, 0, 0.25)
|
2018-02-14 07:53:52 +02:00
|
|
|
|
2018-04-20 06:55:18 +03:00
|
|
|
&, *
|
|
|
|
user-select none
|
|
|
|
|
2018-05-17 17:53:55 +03:00
|
|
|
> .indicator
|
|
|
|
height 3px
|
2018-09-26 14:19:35 +03:00
|
|
|
background var(--primary)
|
2018-05-17 17:53:55 +03:00
|
|
|
|
2018-08-30 16:10:29 +03:00
|
|
|
> .warn
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 4px
|
|
|
|
text-align center
|
|
|
|
font-size 12px
|
|
|
|
background #f00
|
|
|
|
color #fff
|
|
|
|
|
2018-02-14 07:53:52 +02:00
|
|
|
> .main
|
2018-09-28 05:40:47 +03:00
|
|
|
color var(--mobileHeaderFg)
|
2018-02-14 07:53:52 +02:00
|
|
|
|
|
|
|
> .backdrop
|
|
|
|
position absolute
|
|
|
|
top 0
|
2018-02-25 16:31:41 +02:00
|
|
|
z-index 1000
|
2018-02-14 07:53:52 +02:00
|
|
|
width 100%
|
|
|
|
height $height
|
|
|
|
-webkit-backdrop-filter blur(12px)
|
|
|
|
backdrop-filter blur(12px)
|
2018-09-28 05:40:47 +03:00
|
|
|
background-color var(--mobileHeaderBg)
|
2018-02-14 07:53:52 +02:00
|
|
|
|
|
|
|
> .content
|
2018-02-25 16:31:41 +02:00
|
|
|
z-index 1001
|
2018-02-14 07:53:52 +02:00
|
|
|
|
|
|
|
> h1
|
|
|
|
display block
|
|
|
|
margin 0 auto
|
|
|
|
padding 0
|
|
|
|
width 100%
|
|
|
|
max-width calc(100% - 112px)
|
|
|
|
text-align center
|
|
|
|
font-size 1.1em
|
|
|
|
font-weight normal
|
|
|
|
line-height $height
|
|
|
|
white-space nowrap
|
|
|
|
overflow hidden
|
|
|
|
text-overflow ellipsis
|
|
|
|
|
|
|
|
> img
|
|
|
|
display inline-block
|
|
|
|
vertical-align bottom
|
|
|
|
width ($height - 16px)
|
|
|
|
height ($height - 16px)
|
|
|
|
margin 8px
|
|
|
|
border-radius 6px
|
|
|
|
|
|
|
|
> .nav
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 0
|
2018-03-03 09:59:00 +02:00
|
|
|
padding 0
|
2018-02-14 07:53:52 +02:00
|
|
|
width $height
|
|
|
|
font-size 1.4em
|
|
|
|
line-height $height
|
|
|
|
border-right solid 1px rgba(#000, 0.1)
|
|
|
|
|
2018-11-05 18:40:11 +02:00
|
|
|
> [data-icon]
|
2018-02-14 07:53:52 +02:00
|
|
|
transition all 0.2s ease
|
|
|
|
|
2018-11-05 18:40:11 +02:00
|
|
|
> i.circle
|
2018-02-14 07:53:52 +02:00
|
|
|
position absolute
|
|
|
|
top 8px
|
|
|
|
left 8px
|
|
|
|
pointer-events none
|
|
|
|
font-size 10px
|
2018-09-26 14:19:35 +03:00
|
|
|
color var(--primary)
|
2018-02-14 07:53:52 +02:00
|
|
|
|
|
|
|
> button:last-child
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right 0
|
2018-03-03 09:59:00 +02:00
|
|
|
padding 0
|
2018-02-14 07:53:52 +02:00
|
|
|
width $height
|
|
|
|
text-align center
|
|
|
|
font-size 1.4em
|
|
|
|
color inherit
|
|
|
|
line-height $height
|
|
|
|
border-left solid 1px rgba(#000, 0.1)
|
|
|
|
|
|
|
|
</style>
|