summaryrefslogtreecommitdiff
path: root/packages/client/src/ui/desktop.vue
blob: 17783c58e3c6f4511ab197266213b3717409642e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<template>
<div class="mk-app" :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 '@/ui/_common_/sidebar.vue';
import { menuDef } from '@/menu';
import { ColdDeviceStorage } from '@/store';

export default defineComponent({
	components: {
		XCommon,
		XSidebar
	},

	provide() {
		return {
			navHook: (url) => {
				os.pageWindow(url);
			}
		};
	},

	data() {
		return {
			host: host,
			menuDef: menuDef,
			wallpaper: localStorage.getItem('wallpaper') != null,
		};
	},

	computed: {
		menu(): string[] {
			return this.$store.state.menu;
		},
	},

	created() {
		if (window.innerWidth < 1024) {
			localStorage.setItem('ui', 'default');
			location.reload();
		}
	},

	methods: {
		help() {
			window.open(`https://misskey-hub.net/docs/keyboard-shortcut.md`, '_blank');
		},
	}
});
</script>

<style lang="scss" scoped>
.mk-app {
	height: 100vh;
	width: 100vw;
}
</style>

<style lang="scss">
</style>