misskey/src/client/ui/desktop.vue

75 lines
1.4 KiB
Vue
Raw Normal View History

2020-11-03 08:00:47 +00:00
<template>
<div class="mk-app" v-hotkey.global="keymap" :class="{ wallpaper }" @contextmenu.prevent="() => {}">
<XSidebar ref="nav" class="sidebar"/>
<XCommon/>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { host } from '@/config';
import { search } from '@/scripts/search';
import XCommon from './_common_/common.vue';
import * as os from '@/os';
import XSidebar from '@/components/sidebar.vue';
import { sidebarDef } from '@/sidebar';
export default defineComponent({
components: {
XCommon,
XSidebar
},
data() {
return {
host: host,
menuDef: sidebarDef,
wallpaper: localStorage.getItem('wallpaper') != null,
};
},
computed: {
keymap(): any {
return {
'd': () => {
if (this.$store.state.device.syncDeviceDarkMode) return;
this.$store.commit('device/set', { key: 'darkMode', value: !this.$store.state.device.darkMode });
},
'p': os.post,
'n': os.post,
's': () => search(),
'h|/': this.help
};
},
menu(): string[] {
return this.$store.state.deviceUser.menu;
},
},
created() {
if (window.innerWidth < 1024) {
localStorage.setItem('ui', 'default');
location.reload();
}
},
2020-11-03 08:00:47 +00:00
methods: {
help() {
this.$router.push('/docs/keyboard-shortcut');
},
}
});
</script>
<style lang="scss" scoped>
.mk-app {
2020-11-03 08:04:37 +00:00
height: 100vh;
width: 100vw;
2020-11-03 08:00:47 +00:00
}
</style>
<style lang="scss">
</style>