2018-02-14 07:53:52 +02:00
|
|
|
<template>
|
2018-08-30 16:10:29 +03:00
|
|
|
<div class="header" ref="root">
|
|
|
|
<p class="warn" v-if="env != 'production'">%i18n:common.do-not-use-in-production%</p>
|
2018-02-14 07:53:52 +02:00
|
|
|
<mk-special-message/>
|
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-02-21 22:30:37 +02:00
|
|
|
<button class="nav" @click="$parent.isDrawerOpening = true">%fa:bars%</button>
|
2018-05-28 19:22:39 +03:00
|
|
|
<template v-if="hasUnreadNotification || hasUnreadMessagingMessage || hasGameInvitation">%fa:circle%</template>
|
2018-02-15 10:50:19 +02:00
|
|
|
<h1>
|
2018-08-19 15:07:18 +03:00
|
|
|
<slot>{{ os.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-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-02-21 19:37:04 +02:00
|
|
|
props: ['func'],
|
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
|
|
|
connectionId: null,
|
|
|
|
env: env
|
2018-02-14 07:53:52 +02:00
|
|
|
};
|
|
|
|
},
|
2018-05-28 19:22:39 +03:00
|
|
|
computed: {
|
|
|
|
hasUnreadNotification(): boolean {
|
|
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadNotification;
|
|
|
|
},
|
|
|
|
hasUnreadMessagingMessage(): boolean {
|
|
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.hasUnreadMessagingMessage;
|
|
|
|
}
|
|
|
|
},
|
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-02-18 05:35:18 +02:00
|
|
|
this.connection = (this as any).os.stream.getConnection();
|
|
|
|
this.connectionId = (this as any).os.stream.use();
|
2018-02-14 07:53:52 +02:00
|
|
|
|
2018-06-17 02:10:54 +03:00
|
|
|
this.connection.on('reversi_invited', this.onReversiInvited);
|
|
|
|
this.connection.on('reversi_no_invites', this.onReversiNoInvites);
|
2018-02-14 07:53:52 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
2018-05-27 07:49:09 +03:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
2018-06-17 02:10:54 +03:00
|
|
|
this.connection.off('reversi_invited', this.onReversiInvited);
|
|
|
|
this.connection.off('reversi_no_invites', this.onReversiNoInvites);
|
2018-02-18 05:35:18 +02:00
|
|
|
(this as any).os.stream.dispose(this.connectionId);
|
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-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-04-27 20:29:17 +03:00
|
|
|
box-shadow 0 1px 0 rgba(#000, 0.075)
|
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)
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
transition all 0.2s ease
|
|
|
|
|
|
|
|
> [data-fa].circle
|
|
|
|
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>
|