Sharkey/src/client/app/desktop/views/components/ui.vue

111 lines
2.3 KiB
Vue
Raw Normal View History

2018-02-10 07:56:33 +02:00
<template>
2018-09-22 13:59:37 +03:00
<div class="mk-ui" v-hotkey.global="keymap">
<div class="bg" v-if="$store.getters.isSignedIn && $store.state.i.wallpaperUrl" :style="style"></div>
2018-10-14 13:44:30 +03:00
<x-header class="header" v-if="navbar == 'top'" v-show="!zenMode" ref="header"/>
2018-10-16 21:47:32 +03:00
<x-sidebar class="sidebar" v-if="navbar != 'top'" v-show="!zenMode" ref="sidebar"/>
<div class="content" :class="[{ sidebar: navbar != 'top', zen: zenMode }, navbar]">
2018-02-12 12:59:24 +02:00
<slot></slot>
</div>
2018-05-27 07:49:09 +03:00
<mk-stream-indicator v-if="$store.getters.isSignedIn"/>
2018-02-10 07:56:33 +02:00
</div>
</template>
2018-02-12 12:59:24 +02:00
<script lang="ts">
import Vue from 'vue';
2018-02-20 15:53:34 +02:00
import XHeader from './ui.header.vue';
2018-10-14 13:44:30 +03:00
import XSidebar from './ui.sidebar.vue';
2018-02-12 12:59:24 +02:00
export default Vue.extend({
2018-02-20 15:53:34 +02:00
components: {
2018-10-14 13:44:30 +03:00
XHeader,
XSidebar
2018-02-20 15:53:34 +02:00
},
2018-06-08 14:34:44 +03:00
data() {
return {
zenMode: false
};
},
2018-06-06 23:14:37 +03:00
computed: {
2018-10-14 13:44:30 +03:00
navbar(): string {
return this.$store.state.device.navbar;
},
2018-06-06 23:14:37 +03:00
style(): any {
if (!this.$store.getters.isSignedIn || this.$store.state.i.wallpaperUrl == null) return {};
return {
backgroundColor: this.$store.state.i.wallpaperColor && this.$store.state.i.wallpaperColor.length == 3 ? `rgb(${ this.$store.state.i.wallpaperColor.join(',') })` : null,
backgroundImage: `url(${ this.$store.state.i.wallpaperUrl })`
};
},
keymap(): any {
return {
'p': this.post,
'n': this.post,
'z': this.toggleZenMode
};
2018-06-06 23:14:37 +03:00
}
},
2018-02-12 12:59:24 +02:00
2018-09-22 13:59:37 +03:00
watch: {
'$store.state.uiHeaderHeight'() {
this.$el.style.paddingTop = this.$store.state.uiHeaderHeight + 'px';
2018-10-14 13:44:30 +03:00
},
navbar() {
if (this.navbar != 'top') {
this.$store.commit('setUiHeaderHeight', 0);
}
2018-09-22 13:59:37 +03:00
}
},
mounted() {
this.$el.style.paddingTop = this.$store.state.uiHeaderHeight + 'px';
},
methods: {
post() {
(this as any).apis.post();
},
2018-06-08 14:34:44 +03:00
toggleZenMode() {
this.zenMode = !this.zenMode;
2018-09-22 14:11:13 +03:00
this.$nextTick(() => {
2018-10-16 21:47:32 +03:00
if (this.$refs.header) {
this.$store.commit('setUiHeaderHeight', this.$refs.header.$el.offsetHeight);
}
2018-09-22 14:11:13 +03:00
});
2018-02-12 12:59:24 +02:00
}
}
});
</script>
2018-05-31 10:44:11 +03:00
<style lang="stylus" scoped>
.mk-ui
2018-09-22 13:59:37 +03:00
min-height 100vh
padding-top 48px
> .bg
position fixed
top 0
left 0
width 100%
height 100vh
background-size cover
background-position center
background-attachment fixed
opacity 0.3
2018-06-05 15:36:21 +03:00
2018-10-14 13:44:30 +03:00
> .content.sidebar.left
2018-10-15 00:03:15 +03:00
padding-left 68px
2018-10-14 13:44:30 +03:00
> .content.sidebar.right
2018-10-15 00:03:15 +03:00
padding-right 68px
2018-10-14 13:44:30 +03:00
2018-10-16 21:47:32 +03:00
> .content.zen
padding 0 !important
2018-05-31 10:44:11 +03:00
</style>