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

156 lines
2.7 KiB
Vue
Raw Normal View History

2018-02-12 13:10:16 +01:00
<template>
2018-09-22 13:39:12 +02:00
<div class="header" :style="style">
<p class="warn" v-if="env != 'production'">%i18n:common.do-not-use-in-production%</p>
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
<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">
2018-09-28 13:03:14 +02:00
<div class="icon" @click="goToTop">
<img svg-inline src="../../assets/header-icon.svg"/>
</div>
2018-07-23 07:35:00 +02:00
</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-08-25 15:24:58 +02:00
<x-clock v-if="$store.state.settings.showClockOnHeader"/>
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';
import { env } from '../../../config';
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
},
data() {
return {
env: env
};
2018-02-25 15:31:41 +01:00
},
2018-07-25 21:29:09 +02:00
2018-09-22 13:39:12 +02: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 15:31:41 +01:00
mounted() {
2018-09-22 12:59:37 +02:00
this.$store.commit('setUiHeaderHeight', this.$el.offsetHeight);
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-09-28 12:59:19 +02:00
.header
2018-09-22 12:59:37 +02:00
position fixed
2018-02-12 13:10:16 +01:00
top 0
2018-03-03 01:49:47 +01:00
z-index 1000
2018-02-12 13:10:16 +01:00
width 100%
> .warn
display block
margin 0
padding 4px
text-align center
font-size 12px
background #f00
color #fff
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-09-26 18:32:04 +02:00
background var(--desktopHeaderBg)
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
> .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-08-13 19:26:58 +02:00
> .center
right 0
2018-07-23 07:35:00 +02:00
> .icon
2018-08-12 18:58:15 +02:00
margin auto
2018-07-23 07:35:00 +02:00
display block
width 48px
height 48px
opacity 0.3
2018-07-25 00:45:38 +02:00
cursor pointer
2018-02-25 15:31:41 +01:00
2018-09-28 13:03:14 +02:00
> svg
fill currentColor
2018-08-12 17:16:39 +02:00
> .left,
> .center
left 0
2018-02-12 13:10:16 +01:00
2018-08-13 19:26:58 +02:00
> .right
2018-08-12 17:16:39 +02:00
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
</style>