iceshrimp-legacy/src/client/app/desktop/views/components/ui.header.vue

199 lines
3.8 KiB
Vue
Raw Normal View History

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-08-06 21:58:09 +02:00
<p ref="welcomeback" v-if="$store.getters.isSignedIn">%i18n:@welcome-back%<b>{{ $store.state.i | userName }}</b>%i18n:@adjective%</p>
2018-02-25 15:31:41 +01:00
<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>
2018-07-23 07:35:00 +02:00
<div class="center">
<div class="icon" @click="goToTop"></div>
</div>
2018-02-12 13:10:16 +01:00
<div class="right">
2018-02-20 14:53:34 +01:00
<x-search/>
2018-05-27 06:49:09 +02:00
<x-account v-if="$store.getters.isSignedIn"/>
<x-notifications v-if="$store.getters.isSignedIn"/>
<x-post v-if="$store.getters.isSignedIn"/>
2018-02-20 14:53:34 +01:00
<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
},
2018-07-25 21:29:09 +02:00
2018-02-25 15:31:41 +01:00
mounted() {
this.$store.commit('setUiHeaderHeight', 48);
2018-05-27 06:49:09 +02:00
if (this.$store.getters.isSignedIn) {
const ago = (new Date().getTime() - new Date(this.$store.state.i.lastUsedAt).getTime()) / 1000;
2018-02-25 15:31:41 +01:00
const isHisasiburi = ago >= 3600;
2018-05-27 06:49:09 +02:00
this.$store.state.i.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-07-25 21:29:09 +02:00
},
methods: {
goToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
},
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%
2018-04-29 01:51:17 +02:00
box-shadow 0 1px 1px rgba(#000, 0.075)
2018-02-12 13:10:16 +01:00
> .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
2018-04-29 14:28:45 +02:00
color isDark ? #fff : #888
2018-02-25 15:31:41 +01:00
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-08-12 17:16:39 +02:00
> *
position absolute
height 48px
2018-07-23 07:35:00 +02:00
> .center
margin auto
2018-07-25 00:45:38 +02:00
2018-07-23 07:35:00 +02:00
> .icon
display block
width 48px
height 48px
background-image isDark ? url('/assets/desktop/header-icon.dark.svg') : url('/assets/desktop/header-icon.light.svg')
background-size 24px
background-position center
background-repeat no-repeat
opacity 0.3
2018-07-25 00:45:38 +02:00
cursor pointer
2018-02-25 15:31:41 +01:00
2018-08-12 17:16:39 +02:00
> .left,
> .center
left 0
2018-02-12 13:10:16 +01:00
2018-08-12 17:16:39 +02:00
> .right,
> .center
right 0
2018-02-12 13:10:16 +01:00
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-19 20:41:24 +02:00
.header[data-darkmode]
2018-04-01 08:58:32 +02:00
root(true)
2018-04-19 20:41:24 +02:00
.header:not([data-darkmode])
2018-04-01 08:58:32 +02:00
root(false)
2018-02-12 13:10:16 +01:00
</style>