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

75 lines
1.3 KiB
Vue
Raw Normal View History

2018-02-10 05:56:33 +00:00
<template>
<div class="mk-ui" :style="style" v-hotkey.global="keymap">
2018-06-08 11:34:44 +00:00
<x-header class="header" v-show="!zenMode"/>
2018-02-12 10:59:24 +00:00
<div class="content">
<slot></slot>
</div>
2018-05-27 04:49:09 +00:00
<mk-stream-indicator v-if="$store.getters.isSignedIn"/>
2018-02-10 05:56:33 +00:00
</div>
</template>
2018-02-12 10:59:24 +00:00
<script lang="ts">
import Vue from 'vue';
2018-02-20 13:53:34 +00:00
import XHeader from './ui.header.vue';
2018-02-12 10:59:24 +00:00
export default Vue.extend({
2018-02-20 13:53:34 +00:00
components: {
2018-02-20 16:39:51 +00:00
XHeader
2018-02-20 13:53:34 +00:00
},
2018-06-08 11:34:44 +00:00
data() {
return {
zenMode: false
};
},
2018-06-06 20:14:37 +00: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 20:14:37 +00:00
}
},
2018-02-12 10:59:24 +00:00
methods: {
post() {
(this as any).apis.post();
},
2018-06-08 11:34:44 +00:00
toggleZenMode() {
this.zenMode = !this.zenMode;
2018-02-12 10:59:24 +00:00
}
}
});
</script>
2018-05-31 07:44:11 +00:00
<style lang="stylus" scoped>
.mk-ui
2018-06-05 12:36:21 +00:00
display flex
flex-direction column
flex 1
2018-06-06 20:14:37 +00:00
background-size cover
background-position center
background-attachment fixed
2018-06-05 12:36:21 +00:00
2018-05-31 07:44:11 +00:00
> .header
@media (max-width 1000px)
display none
2018-06-05 12:36:21 +00:00
> .content
display flex
flex-direction column
flex 1
2018-06-06 17:06:32 +00:00
overflow hidden
2018-05-31 07:44:11 +00:00
</style>