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

162 lines
2.9 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'">{{ $t('@.do-not-use-in-production') }} <a href="/assets/flush.html?force">Flush</a></p>
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"/>
2019-02-15 22:50:58 +01:00
<x-messaging v-if="$store.getters.isSignedIn"/>
2018-05-27 06:49:09 +02:00
<x-notifications v-if="$store.getters.isSignedIn"/>
<x-post v-if="$store.getters.isSignedIn"/>
2019-02-15 11:40:11 +01:00
<x-clock v-if="$store.state.settings.showClockOnHeader" class="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';
import i18n from '../../../i18n';
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';
2019-02-15 22:50:58 +01:00
import XMessaging from './ui.header.messaging.vue';
2018-02-20 14:53:34 +01:00
export default Vue.extend({
i18n: i18n(),
2018-02-20 14:53:34 +01:00
components: {
2018-02-20 17:39:51 +01:00
XNav,
XSearch,
XAccount,
XNotifications,
2019-02-15 22:50:58 +01:00
XMessaging,
2018-02-20 17:39:51 +01:00
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 {
2019-02-26 06:02:23 +01:00
'box-shadow': this.$store.state.device.useShadow ? '0 0px 8px rgba(0, 0, 0, 0.2)' : 'none'
2018-09-22 13:39:12 +02:00
};
}
},
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%
2019-02-14 22:06:13 +01:00
max-width 1208px
2018-02-12 13:10:16 +01:00
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
2018-09-28 13:11:11 +02:00
text-align center
2018-07-25 00:45:38 +02:00
cursor pointer
2018-09-28 13:11:11 +02:00
opacity 0.5
2018-02-25 15:31:41 +01:00
2018-09-28 13:03:14 +02:00
> svg
2018-09-28 13:11:11 +02:00
width 24px
height 48px
vertical-align top
fill var(--desktopHeaderFg)
2018-09-28 13:03:14 +02:00
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)
2019-02-15 11:40:11 +01:00
> .clock
2018-02-12 13:10:16 +01:00
display none
</style>