2018-02-12 13:10:16 +01:00
|
|
|
<template>
|
2018-02-20 14:53:34 +01:00
|
|
|
<div class="header">
|
2018-02-12 13:10:16 +01:00
|
|
|
<mk-special-message/>
|
2018-02-25 15:31:41 +01:00
|
|
|
<div class="main" ref="main">
|
2018-02-12 13:10:16 +01:00
|
|
|
<div class="backdrop"></div>
|
|
|
|
<div class="main">
|
2018-02-25 15:31:41 +01:00
|
|
|
<p ref="welcomeback" v-if="os.isSignedIn">おかえりなさい、<b>{{ os.i.name }}</b>さん</p>
|
|
|
|
<div class="container" ref="mainContainer">
|
2018-02-12 13:10:16 +01:00
|
|
|
<div class="left">
|
2018-02-20 14:53:34 +01:00
|
|
|
<x-nav/>
|
2018-02-12 13:10:16 +01:00
|
|
|
</div>
|
|
|
|
<div class="right">
|
2018-02-20 14:53:34 +01:00
|
|
|
<x-search/>
|
|
|
|
<x-account v-if="os.isSignedIn"/>
|
|
|
|
<x-notifications v-if="os.isSignedIn"/>
|
|
|
|
<x-post v-if="os.isSignedIn"/>
|
|
|
|
<x-clock/>
|
2018-02-12 13:10:16 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-20 14:53:34 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-25 15:31:41 +01:00
|
|
|
import * as anime from 'animejs';
|
2018-02-20 14:53:34 +01:00
|
|
|
|
|
|
|
import XNav from './ui.header.nav.vue';
|
|
|
|
import XSearch from './ui.header.search.vue';
|
|
|
|
import XAccount from './ui.header.account.vue';
|
|
|
|
import XNotifications from './ui.header.notifications.vue';
|
|
|
|
import XPost from './ui.header.post.vue';
|
|
|
|
import XClock from './ui.header.clock.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
2018-02-20 17:39:51 +01:00
|
|
|
XNav,
|
|
|
|
XSearch,
|
|
|
|
XAccount,
|
|
|
|
XNotifications,
|
|
|
|
XPost,
|
|
|
|
XClock,
|
2018-02-25 15:31:41 +01:00
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
if ((this as any).os.isSignedIn) {
|
2018-03-29 07:48:47 +02:00
|
|
|
const ago = (new Date().getTime() - new Date((this as any).os.i.account.lastUsedAt).getTime()) / 1000
|
2018-02-25 15:31:41 +01:00
|
|
|
const isHisasiburi = ago >= 3600;
|
2018-03-29 07:48:47 +02:00
|
|
|
(this as any).os.i.account.lastUsedAt = new Date();
|
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-20 14:53:34 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2018-02-12 13:10:16 +01:00
|
|
|
<style lang="stylus" scoped>
|
2018-04-01 08:58:32 +02:00
|
|
|
root(isDark)
|
2018-02-12 13:10:16 +01:00
|
|
|
position -webkit-sticky
|
|
|
|
position sticky
|
|
|
|
top 0
|
2018-03-03 01:49:47 +01:00
|
|
|
z-index 1000
|
2018-02-12 13:10:16 +01:00
|
|
|
width 100%
|
|
|
|
box-shadow 0 1px 1px rgba(0, 0, 0, 0.075)
|
|
|
|
|
|
|
|
> .main
|
2018-02-25 15:31:41 +01:00
|
|
|
height 48px
|
2018-02-12 13:10:16 +01:00
|
|
|
|
|
|
|
> .backdrop
|
|
|
|
position absolute
|
|
|
|
top 0
|
2018-03-03 01:49:47 +01:00
|
|
|
z-index 1000
|
2018-02-12 13:10:16 +01:00
|
|
|
width 100%
|
|
|
|
height 48px
|
2018-04-01 08:58:32 +02:00
|
|
|
background isDark ? #313543 : #f7f7f7
|
2018-02-12 13:10:16 +01:00
|
|
|
|
|
|
|
> .main
|
2018-03-03 01:49:47 +01:00
|
|
|
z-index 1001
|
2018-02-12 13:10:16 +01:00
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
background-clip content-box
|
|
|
|
font-size 0.9rem
|
|
|
|
user-select none
|
|
|
|
|
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
|
|
|
|
top 48px
|
|
|
|
width 100%
|
|
|
|
line-height 48px
|
|
|
|
margin 0
|
|
|
|
text-align center
|
|
|
|
color #888
|
|
|
|
opacity 0
|
|
|
|
|
2018-02-12 13:10:16 +01:00
|
|
|
> .container
|
2018-02-13 13:01:39 +01:00
|
|
|
display flex
|
2018-02-12 13:10:16 +01:00
|
|
|
width 100%
|
|
|
|
max-width 1300px
|
|
|
|
margin 0 auto
|
|
|
|
|
2018-02-25 15:31:41 +01:00
|
|
|
&:before
|
|
|
|
content ""
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
display block
|
|
|
|
width 100%
|
|
|
|
height 48px
|
|
|
|
background-image url(/assets/desktop/header-logo.svg)
|
|
|
|
background-size 46px
|
|
|
|
background-position center
|
|
|
|
background-repeat no-repeat
|
|
|
|
opacity 0.3
|
|
|
|
|
2018-02-12 13:10:16 +01:00
|
|
|
> .left
|
2018-02-13 13:01:39 +01:00
|
|
|
margin 0 auto 0 0
|
|
|
|
height 48px
|
2018-02-12 13:10:16 +01:00
|
|
|
|
|
|
|
> .right
|
2018-02-13 13:01:39 +01:00
|
|
|
margin 0 0 0 auto
|
2018-02-12 13:10:16 +01:00
|
|
|
height 48px
|
|
|
|
|
2018-02-13 13:01:39 +01:00
|
|
|
> *
|
|
|
|
display inline-block
|
|
|
|
vertical-align top
|
|
|
|
|
2018-02-12 13:10:16 +01:00
|
|
|
@media (max-width 1100px)
|
2018-02-13 13:01:39 +01:00
|
|
|
> .mk-ui-header-search
|
2018-02-12 13:10:16 +01:00
|
|
|
display none
|
|
|
|
|
2018-04-01 08:58:32 +02:00
|
|
|
.header[data-is-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.header
|
|
|
|
root(false)
|
|
|
|
|
2018-02-12 13:10:16 +01:00
|
|
|
</style>
|