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