2018-02-12 12:10:16 +00:00
|
|
|
<template>
|
2018-09-22 11:39:12 +00:00
|
|
|
<div class="header" :style="style">
|
2018-11-08 18:44:35 +00:00
|
|
|
<p class="warn" v-if="env != 'production'">{{ $t('@.do-not-use-in-production') }}</p>
|
2018-02-25 14:31:41 +00:00
|
|
|
<div class="main" ref="main">
|
2018-02-12 12:10:16 +00:00
|
|
|
<div class="backdrop"></div>
|
|
|
|
<div class="main">
|
2018-02-25 14:31:41 +00:00
|
|
|
<div class="container" ref="mainContainer">
|
2018-02-12 12:10:16 +00:00
|
|
|
<div class="left">
|
2018-02-20 13:53:34 +00:00
|
|
|
<x-nav/>
|
2018-02-12 12:10:16 +00:00
|
|
|
</div>
|
2018-07-23 05:35:00 +00:00
|
|
|
<div class="center">
|
2018-09-28 11:03:14 +00:00
|
|
|
<div class="icon" @click="goToTop">
|
|
|
|
<img svg-inline src="../../assets/header-icon.svg"/>
|
|
|
|
</div>
|
2018-07-23 05:35:00 +00:00
|
|
|
</div>
|
2018-02-12 12:10:16 +00:00
|
|
|
<div class="right">
|
2018-02-20 13:53:34 +00:00
|
|
|
<x-search/>
|
2018-05-27 04:49:09 +00:00
|
|
|
<x-account v-if="$store.getters.isSignedIn"/>
|
|
|
|
<x-notifications v-if="$store.getters.isSignedIn"/>
|
|
|
|
<x-post v-if="$store.getters.isSignedIn"/>
|
2018-08-25 13:24:58 +00:00
|
|
|
<x-clock v-if="$store.state.settings.showClockOnHeader"/>
|
2018-02-12 12:10:16 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-20 13:53:34 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 18:44:35 +00:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-25 14:31:41 +00:00
|
|
|
import * as anime from 'animejs';
|
2018-08-30 13:10:29 +00:00
|
|
|
import { env } from '../../../config';
|
2018-02-20 13:53:34 +00: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({
|
2018-11-08 18:44:35 +00:00
|
|
|
i18n: i18n(),
|
2018-02-20 13:53:34 +00:00
|
|
|
components: {
|
2018-02-20 16:39:51 +00:00
|
|
|
XNav,
|
|
|
|
XSearch,
|
|
|
|
XAccount,
|
|
|
|
XNotifications,
|
|
|
|
XPost,
|
2018-08-30 13:10:29 +00:00
|
|
|
XClock
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
env: env
|
|
|
|
};
|
2018-02-25 14:31:41 +00:00
|
|
|
},
|
2018-07-25 19:29:09 +00:00
|
|
|
|
2018-09-22 11:39:12 +00:00
|
|
|
computed: {
|
|
|
|
style(): any {
|
|
|
|
return {
|
|
|
|
'box-shadow': this.$store.state.settings.useShadow ? '0 0px 8px rgba(0, 0, 0, 0.2)' : 'none'
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-25 14:31:41 +00:00
|
|
|
mounted() {
|
2018-09-22 10:59:37 +00:00
|
|
|
this.$store.commit('setUiHeaderHeight', this.$el.offsetHeight);
|
2018-07-25 19:29:09 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
goToTop() {
|
|
|
|
window.scrollTo({
|
|
|
|
top: 0,
|
|
|
|
behavior: 'smooth'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2018-02-20 13:53:34 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2018-02-12 12:10:16 +00:00
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 10:59:19 +00:00
|
|
|
.header
|
2018-09-22 10:59:37 +00:00
|
|
|
position fixed
|
2018-02-12 12:10:16 +00:00
|
|
|
top 0
|
2018-03-03 00:49:47 +00:00
|
|
|
z-index 1000
|
2018-02-12 12:10:16 +00:00
|
|
|
width 100%
|
|
|
|
|
2018-08-30 13:10:29 +00:00
|
|
|
> .warn
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 4px
|
|
|
|
text-align center
|
|
|
|
font-size 12px
|
|
|
|
background #f00
|
|
|
|
color #fff
|
|
|
|
|
2018-02-12 12:10:16 +00:00
|
|
|
> .main
|
2018-02-25 14:31:41 +00:00
|
|
|
height 48px
|
2018-02-12 12:10:16 +00:00
|
|
|
|
|
|
|
> .backdrop
|
|
|
|
position absolute
|
|
|
|
top 0
|
2018-03-03 00:49:47 +00:00
|
|
|
z-index 1000
|
2018-02-12 12:10:16 +00:00
|
|
|
width 100%
|
|
|
|
height 48px
|
2018-09-26 16:32:04 +00:00
|
|
|
background var(--desktopHeaderBg)
|
2018-02-12 12:10:16 +00:00
|
|
|
|
|
|
|
> .main
|
2018-03-03 00:49:47 +00:00
|
|
|
z-index 1001
|
2018-02-12 12:10:16 +00:00
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
background-clip content-box
|
|
|
|
font-size 0.9rem
|
|
|
|
user-select none
|
|
|
|
|
|
|
|
> .container
|
2018-02-13 12:01:39 +00:00
|
|
|
display flex
|
2018-02-12 12:10:16 +00:00
|
|
|
width 100%
|
|
|
|
max-width 1300px
|
|
|
|
margin 0 auto
|
|
|
|
|
2018-08-12 15:16:39 +00:00
|
|
|
> *
|
|
|
|
position absolute
|
|
|
|
height 48px
|
|
|
|
|
2018-08-13 17:26:58 +00:00
|
|
|
> .center
|
|
|
|
right 0
|
|
|
|
|
2018-07-23 05:35:00 +00:00
|
|
|
> .icon
|
2018-08-12 16:58:15 +00:00
|
|
|
margin auto
|
2018-07-23 05:35:00 +00:00
|
|
|
display block
|
|
|
|
width 48px
|
2018-09-28 11:11:11 +00:00
|
|
|
text-align center
|
2018-07-24 22:45:38 +00:00
|
|
|
cursor pointer
|
2018-09-28 11:11:11 +00:00
|
|
|
opacity 0.5
|
2018-02-25 14:31:41 +00:00
|
|
|
|
2018-09-28 11:03:14 +00:00
|
|
|
> svg
|
2018-09-28 11:11:11 +00:00
|
|
|
width 24px
|
|
|
|
height 48px
|
|
|
|
vertical-align top
|
|
|
|
fill var(--desktopHeaderFg)
|
2018-09-28 11:03:14 +00:00
|
|
|
|
2018-08-12 15:16:39 +00:00
|
|
|
> .left,
|
|
|
|
> .center
|
|
|
|
left 0
|
2018-02-12 12:10:16 +00:00
|
|
|
|
2018-08-13 17:26:58 +00:00
|
|
|
> .right
|
2018-08-12 15:16:39 +00:00
|
|
|
right 0
|
2018-02-12 12:10:16 +00:00
|
|
|
|
2018-02-13 12:01:39 +00:00
|
|
|
> *
|
|
|
|
display inline-block
|
|
|
|
vertical-align top
|
|
|
|
|
2018-02-12 12:10:16 +00:00
|
|
|
@media (max-width 1100px)
|
2018-02-13 12:01:39 +00:00
|
|
|
> .mk-ui-header-search
|
2018-02-12 12:10:16 +00:00
|
|
|
display none
|
|
|
|
|
|
|
|
</style>
|