2018-02-14 06:53:52 +01:00
|
|
|
<template>
|
2018-02-21 21:30:37 +01:00
|
|
|
<div class="header">
|
2018-02-14 06:53:52 +01:00
|
|
|
<mk-special-message/>
|
2018-02-25 15:31:41 +01:00
|
|
|
<div class="main" ref="main">
|
2018-02-14 06:53:52 +01:00
|
|
|
<div class="backdrop"></div>
|
2018-04-09 11:52:29 +02:00
|
|
|
<p ref="welcomeback" v-if="os.isSignedIn">おかえりなさい、<b>{{ os.i | userName }}</b>さん</p>
|
2018-02-25 15:31:41 +01:00
|
|
|
<div class="content" ref="mainContainer">
|
2018-02-21 21:30:37 +01:00
|
|
|
<button class="nav" @click="$parent.isDrawerOpening = true">%fa:bars%</button>
|
2018-03-11 10:08:26 +01:00
|
|
|
<template v-if="hasUnreadNotifications || hasUnreadMessagingMessages || hasGameInvitations">%fa:circle%</template>
|
2018-02-15 09:50:19 +01:00
|
|
|
<h1>
|
|
|
|
<slot>Misskey</slot>
|
|
|
|
</h1>
|
2018-02-23 18:46:09 +01:00
|
|
|
<slot name="func"></slot>
|
2018-02-14 06:53:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-17 16:53:55 +02:00
|
|
|
<div class="indicator" v-show="$store.state.indicate"></div>
|
2018-02-14 06:53:52 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-25 15:31:41 +01:00
|
|
|
import * as anime from 'animejs';
|
2018-02-14 06:53:52 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-02-21 18:37:04 +01:00
|
|
|
props: ['func'],
|
2018-02-14 06:53:52 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
hasUnreadNotifications: false,
|
|
|
|
hasUnreadMessagingMessages: false,
|
2018-03-11 10:08:26 +01:00
|
|
|
hasGameInvitations: false,
|
2018-02-14 06:53:52 +01:00
|
|
|
connection: null,
|
|
|
|
connectionId: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-04-21 08:37:02 +02:00
|
|
|
this.$store.commit('setUiHeaderHeight', 48);
|
|
|
|
|
2018-02-18 04:35:18 +01:00
|
|
|
if ((this as any).os.isSignedIn) {
|
|
|
|
this.connection = (this as any).os.stream.getConnection();
|
|
|
|
this.connectionId = (this as any).os.stream.use();
|
2018-02-14 06:53:52 +01:00
|
|
|
|
|
|
|
this.connection.on('read_all_notifications', this.onReadAllNotifications);
|
|
|
|
this.connection.on('unread_notification', this.onUnreadNotification);
|
|
|
|
this.connection.on('read_all_messaging_messages', this.onReadAllMessagingMessages);
|
|
|
|
this.connection.on('unread_messaging_message', this.onUnreadMessagingMessage);
|
2018-03-11 10:08:26 +01:00
|
|
|
this.connection.on('othello_invited', this.onOthelloInvited);
|
|
|
|
this.connection.on('othello_no_invites', this.onOthelloNoInvites);
|
2018-02-14 06:53:52 +01:00
|
|
|
|
|
|
|
// Fetch count of unread notifications
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('notifications/get_unread_count').then(res => {
|
2018-02-14 06:53:52 +01:00
|
|
|
if (res.count > 0) {
|
|
|
|
this.hasUnreadNotifications = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Fetch count of unread messaging messages
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('messaging/unread').then(res => {
|
2018-02-14 06:53:52 +01:00
|
|
|
if (res.count > 0) {
|
|
|
|
this.hasUnreadMessagingMessages = true;
|
|
|
|
}
|
|
|
|
});
|
2018-02-25 15:31:41 +01:00
|
|
|
|
2018-04-29 14:28:45 +02:00
|
|
|
const ago = (new Date().getTime() - new Date((this as any).os.i.lastUsedAt).getTime()) / 1000;
|
2018-02-25 15:31:41 +01:00
|
|
|
const isHisasiburi = ago >= 3600;
|
2018-04-07 20:58:11 +02:00
|
|
|
(this as any).os.i.lastUsedAt = new Date();
|
2018-04-29 14:28:45 +02:00
|
|
|
(this as any).os.bakeMe();
|
2018-02-25 15:31:41 +01:00
|
|
|
if (isHisasiburi) {
|
2018-02-25 17:36:36 +01:00
|
|
|
(this.$refs.welcomeback as any).style.display = 'block';
|
2018-02-25 15:31:41 +01:00
|
|
|
(this.$refs.main as any).style.overflow = 'hidden';
|
|
|
|
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.welcomeback,
|
|
|
|
top: '0',
|
|
|
|
opacity: 1,
|
|
|
|
delay: 1000,
|
|
|
|
duration: 500,
|
|
|
|
easing: 'easeOutQuad'
|
|
|
|
});
|
|
|
|
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.mainContainer,
|
|
|
|
opacity: 0,
|
|
|
|
delay: 1000,
|
|
|
|
duration: 500,
|
|
|
|
easing: 'easeOutQuad'
|
|
|
|
});
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.welcomeback,
|
|
|
|
top: '-48px',
|
|
|
|
opacity: 0,
|
|
|
|
duration: 500,
|
|
|
|
complete: () => {
|
|
|
|
(this.$refs.welcomeback as any).style.display = 'none';
|
|
|
|
(this.$refs.main as any).style.overflow = 'initial';
|
|
|
|
},
|
|
|
|
easing: 'easeInQuad'
|
|
|
|
});
|
|
|
|
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.mainContainer,
|
|
|
|
opacity: 1,
|
|
|
|
duration: 500,
|
|
|
|
easing: 'easeInQuad'
|
|
|
|
});
|
2018-02-26 10:57:52 +01:00
|
|
|
}, 2500);
|
2018-02-25 15:31:41 +01:00
|
|
|
}
|
2018-02-14 06:53:52 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
2018-02-18 04:35:18 +01:00
|
|
|
if ((this as any).os.isSignedIn) {
|
2018-02-14 06:53:52 +01:00
|
|
|
this.connection.off('read_all_notifications', this.onReadAllNotifications);
|
|
|
|
this.connection.off('unread_notification', this.onUnreadNotification);
|
|
|
|
this.connection.off('read_all_messaging_messages', this.onReadAllMessagingMessages);
|
|
|
|
this.connection.off('unread_messaging_message', this.onUnreadMessagingMessage);
|
2018-03-11 10:08:26 +01:00
|
|
|
this.connection.off('othello_invited', this.onOthelloInvited);
|
|
|
|
this.connection.off('othello_no_invites', this.onOthelloNoInvites);
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).os.stream.dispose(this.connectionId);
|
2018-02-14 06:53:52 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onReadAllNotifications() {
|
|
|
|
this.hasUnreadNotifications = false;
|
|
|
|
},
|
|
|
|
onUnreadNotification() {
|
|
|
|
this.hasUnreadNotifications = true;
|
|
|
|
},
|
|
|
|
onReadAllMessagingMessages() {
|
|
|
|
this.hasUnreadMessagingMessages = false;
|
|
|
|
},
|
|
|
|
onUnreadMessagingMessage() {
|
|
|
|
this.hasUnreadMessagingMessages = true;
|
2018-03-11 10:08:26 +01:00
|
|
|
},
|
|
|
|
onOthelloInvited() {
|
|
|
|
this.hasGameInvitations = true;
|
|
|
|
},
|
|
|
|
onOthelloNoInvites() {
|
|
|
|
this.hasGameInvitations = false;
|
2018-02-14 06:53:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-03 05:47:55 +01:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-27 14:06:28 +02:00
|
|
|
root(isDark)
|
2018-02-14 06:53:52 +01:00
|
|
|
$height = 48px
|
|
|
|
|
|
|
|
position fixed
|
|
|
|
top 0
|
|
|
|
z-index 1024
|
|
|
|
width 100%
|
2018-04-27 19:29:17 +02:00
|
|
|
box-shadow 0 1px 0 rgba(#000, 0.075)
|
2018-02-14 06:53:52 +01:00
|
|
|
|
2018-04-20 05:55:18 +02:00
|
|
|
&, *
|
|
|
|
user-select none
|
|
|
|
|
2018-05-17 16:53:55 +02:00
|
|
|
> .indicator
|
|
|
|
height 3px
|
|
|
|
background $theme-color
|
|
|
|
|
2018-02-14 06:53:52 +01:00
|
|
|
> .main
|
|
|
|
color rgba(#fff, 0.9)
|
|
|
|
|
|
|
|
> .backdrop
|
|
|
|
position absolute
|
|
|
|
top 0
|
2018-02-25 15:31:41 +01:00
|
|
|
z-index 1000
|
2018-02-14 06:53:52 +01:00
|
|
|
width 100%
|
|
|
|
height $height
|
|
|
|
-webkit-backdrop-filter blur(12px)
|
|
|
|
backdrop-filter blur(12px)
|
2018-03-03 08:41:43 +01:00
|
|
|
//background-color rgba(#1b2023, 0.75)
|
2018-04-27 14:06:28 +02:00
|
|
|
background-color isDark ? #313543 : #595f6f
|
2018-02-14 06:53:52 +01:00
|
|
|
|
2018-02-25 15:31:41 +01:00
|
|
|
> p
|
2018-02-25 17:36:36 +01:00
|
|
|
display none
|
2018-02-25 15:31:41 +01:00
|
|
|
position absolute
|
|
|
|
z-index 1002
|
|
|
|
top $height
|
|
|
|
width 100%
|
|
|
|
line-height $height
|
|
|
|
margin 0
|
|
|
|
text-align center
|
|
|
|
color #fff
|
|
|
|
opacity 0
|
|
|
|
|
2018-02-14 06:53:52 +01:00
|
|
|
> .content
|
2018-02-25 15:31:41 +01:00
|
|
|
z-index 1001
|
2018-02-14 06:53:52 +01: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
|
|
|
|
|
2018-03-03 03:26:46 +01:00
|
|
|
[data-fa], [data-icon]
|
2018-03-03 08:59:00 +01:00
|
|
|
margin-right 4px
|
2018-02-14 06:53:52 +01:00
|
|
|
|
|
|
|
> 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 08:59:00 +01:00
|
|
|
padding 0
|
2018-02-14 06:53:52 +01: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
|
|
|
|
color $theme-color
|
|
|
|
|
|
|
|
> button:last-child
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right 0
|
2018-03-03 08:59:00 +01:00
|
|
|
padding 0
|
2018-02-14 06:53:52 +01:00
|
|
|
width $height
|
|
|
|
text-align center
|
|
|
|
font-size 1.4em
|
|
|
|
color inherit
|
|
|
|
line-height $height
|
|
|
|
border-left solid 1px rgba(#000, 0.1)
|
|
|
|
|
2018-04-27 14:06:28 +02:00
|
|
|
.header[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.header:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-14 06:53:52 +01:00
|
|
|
</style>
|