FoundKey/src/client/ui/desktop.vue

71 lines
1.2 KiB
Vue
Raw Normal View History

2020-11-03 08:00:47 +00:00
<template>
2020-12-27 08:04:41 +00:00
<div class="mk-app" :class="{ wallpaper }" @contextmenu.prevent="() => {}">
2020-11-03 08:00:47 +00:00
<XSidebar ref="nav" class="sidebar"/>
<XCommon/>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
2021-03-23 08:30:14 +00:00
import { host } from '@client/config';
import { search } from '@client/scripts/search';
2020-11-03 08:00:47 +00:00
import XCommon from './_common_/common.vue';
2021-03-23 08:30:14 +00:00
import * as os from '@client/os';
import XSidebar from '@client/ui/_common_/sidebar.vue';
2021-07-19 02:36:35 +00:00
import { menuDef } from '@client/menu';
2021-03-23 08:30:14 +00:00
import { ColdDeviceStorage } from '@client/store';
2020-11-03 08:00:47 +00:00
export default defineComponent({
components: {
XCommon,
XSidebar
},
2020-12-27 09:13:50 +00:00
provide() {
return {
navHook: (url) => {
os.pageWindow(url);
}
};
},
2020-11-03 08:00:47 +00:00
data() {
return {
host: host,
2021-07-19 02:36:35 +00:00
menuDef: menuDef,
2020-11-03 08:00:47 +00:00
wallpaper: localStorage.getItem('wallpaper') != null,
};
},
computed: {
menu(): string[] {
return this.$store.state.menu;
2020-11-03 08:00:47 +00:00
},
},
created() {
if (window.innerWidth < 1024) {
localStorage.setItem('ui', 'default');
location.reload();
}
},
2020-11-03 08:00:47 +00:00
methods: {
help() {
window.open(`https://misskey-hub.net/docs/keyboard-shortcut.md`, '_blank');
2020-11-03 08:00:47 +00:00
},
}
});
</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>