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

88 lines
1.6 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-06-08 14:34:44 +03:00
<x-header class="header" v-show="!zenMode"/>
2018-02-12 12:59:24 +02:00
<div class="content">
<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-02-12 12:59:24 +02:00
export default Vue.extend({
2018-02-20 15:53:34 +02:00
components: {
2018-02-20 18:39:51 +02:00
XHeader
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: {
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';
}
},
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-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-05-31 10:44:11 +03:00
> .header
@media (max-width 1000px)
display none
2018-06-05 15:36:21 +03:00
2018-05-31 10:44:11 +03:00
</style>