190 lines
5.6 KiB
Vue
190 lines
5.6 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div :class="[$style.root, { '_forceShrinkSpacer': deviceKind === 'smartphone' }]">
|
|
<XTitlebar v-if="prefer.r.showTitlebar.value" style="flex-shrink: 0;"/>
|
|
|
|
<div :class="$style.nonTitlebarArea">
|
|
<XSidebar v-if="!isMobile" :class="$style.sidebar" :showWidgetButton="!isDesktop" @widgetButtonClick="widgetsShowing = true"/>
|
|
|
|
<div :class="[$style.contents, !isMobile && prefer.r.showTitlebar.value ? $style.withSidebarAndTitlebar : null]" @contextmenu.stop="onContextmenu">
|
|
<div>
|
|
<XPreferenceRestore v-if="shouldSuggestRestoreBackup"/>
|
|
<XAnnouncements v-if="$i"/>
|
|
<XStatusBars :class="$style.statusbars"/>
|
|
</div>
|
|
<StackingRouterView v-if="prefer.s['experimental.stackingRouterView']" :class="$style.content"/>
|
|
<RouterView v-else :class="$style.content"/>
|
|
<XMobileFooterMenu v-if="isMobile" ref="navFooter" v-model:drawerMenuShowing="drawerMenuShowing" v-model:widgetsShowing="widgetsShowing"/>
|
|
</div>
|
|
|
|
<div v-if="isDesktop && !pageMetadata?.needWideArea" :class="$style.widgets">
|
|
<XWidgets/>
|
|
</div>
|
|
</div>
|
|
|
|
<XCommon v-model:drawerMenuShowing="drawerMenuShowing" v-model:widgetsShowing="widgetsShowing"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent, provide, onMounted, computed, ref } from 'vue';
|
|
import { instanceName } from '@@/js/config.js';
|
|
import { isLink } from '@@/js/is-link.js';
|
|
import XCommon from './_common_/common.vue';
|
|
import type { PageMetadata } from '@/page.js';
|
|
import XMobileFooterMenu from '@/ui/_common_/mobile-footer-menu.vue';
|
|
import XPreferenceRestore from '@/ui/_common_/PreferenceRestore.vue';
|
|
import XTitlebar from '@/ui/_common_/titlebar.vue';
|
|
import XSidebar from '@/ui/_common_/navbar.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { $i } from '@/i.js';
|
|
import { provideMetadataReceiver, provideReactiveMetadata } from '@/page.js';
|
|
import { deviceKind } from '@/utility/device-kind.js';
|
|
import { miLocalStorage } from '@/local-storage.js';
|
|
import { mainRouter } from '@/router.js';
|
|
import { prefer } from '@/preferences.js';
|
|
import { shouldSuggestRestoreBackup } from '@/preferences/utility.js';
|
|
import { DI } from '@/di.js';
|
|
|
|
const XWidgets = defineAsyncComponent(() => import('./_common_/widgets.vue'));
|
|
const XStatusBars = defineAsyncComponent(() => import('@/ui/_common_/statusbars.vue'));
|
|
const XAnnouncements = defineAsyncComponent(() => import('@/ui/_common_/announcements.vue'));
|
|
|
|
const isRoot = computed(() => mainRouter.currentRoute.value.name === 'index');
|
|
|
|
const DESKTOP_THRESHOLD = 1100;
|
|
const MOBILE_THRESHOLD = 500;
|
|
|
|
// デスクトップでウィンドウを狭くしたときモバイルUIが表示されて欲しいことはあるので deviceKind === 'desktop' の判定は行わない
|
|
const isDesktop = ref(window.innerWidth >= DESKTOP_THRESHOLD);
|
|
const isMobile = ref(deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD);
|
|
window.addEventListener('resize', () => {
|
|
isMobile.value = deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD;
|
|
});
|
|
|
|
const pageMetadata = ref<null | PageMetadata>(null);
|
|
const widgetsShowing = ref(false);
|
|
|
|
provide(DI.router, mainRouter);
|
|
provideMetadataReceiver((metadataGetter) => {
|
|
const info = metadataGetter();
|
|
pageMetadata.value = info;
|
|
if (pageMetadata.value) {
|
|
if (isRoot.value && pageMetadata.value.title === instanceName) {
|
|
window.document.title = pageMetadata.value.title;
|
|
} else {
|
|
window.document.title = `${pageMetadata.value.title} | ${instanceName}`;
|
|
}
|
|
}
|
|
});
|
|
provideReactiveMetadata(pageMetadata);
|
|
|
|
const drawerMenuShowing = ref(false);
|
|
|
|
mainRouter.on('change', () => {
|
|
drawerMenuShowing.value = false;
|
|
});
|
|
|
|
if (window.innerWidth > 1024) {
|
|
const tempUI = miLocalStorage.getItem('ui_temp');
|
|
if (tempUI) {
|
|
miLocalStorage.setItem('ui', tempUI);
|
|
miLocalStorage.removeItem('ui_temp');
|
|
window.location.reload();
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
if (!isDesktop.value) {
|
|
window.addEventListener('resize', () => {
|
|
if (window.innerWidth >= DESKTOP_THRESHOLD) isDesktop.value = true;
|
|
}, { passive: true });
|
|
}
|
|
});
|
|
|
|
const onContextmenu = (ev) => {
|
|
if (isLink(ev.target)) return;
|
|
if (['INPUT', 'TEXTAREA', 'IMG', 'VIDEO', 'CANVAS'].includes(ev.target.tagName) || ev.target.attributes['contenteditable']) return;
|
|
if (window.getSelection()?.toString() !== '') return;
|
|
const path = mainRouter.getCurrentFullPath();
|
|
os.contextMenu([{
|
|
type: 'label',
|
|
text: path,
|
|
}, {
|
|
icon: 'ti ti-window-maximize',
|
|
text: i18n.ts.openInWindow,
|
|
action: () => {
|
|
os.pageWindow(path);
|
|
},
|
|
}], ev);
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
$ui-font-size: 1em; // TODO: どこかに集約したい
|
|
$widgets-hide-threshold: 1090px;
|
|
|
|
.root {
|
|
height: 100dvh;
|
|
overflow: clip;
|
|
contain: strict;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--MI_THEME-navBg);
|
|
}
|
|
|
|
.nonTitlebarArea {
|
|
display: flex;
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
.sidebar {
|
|
border-right: solid 0.5px var(--MI_THEME-divider);
|
|
}
|
|
|
|
.contents {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
height: 100%;
|
|
min-width: 0;
|
|
|
|
&.withSidebarAndTitlebar {
|
|
background: var(--MI_THEME-navBg);
|
|
border-radius: 12px 0 0 0;
|
|
overflow: clip;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
.statusbars {
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.widgets {
|
|
width: 350px;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
padding: var(--MI-margin) var(--MI-margin) calc(var(--MI-margin) + env(safe-area-inset-bottom, 0px));
|
|
border-left: solid 0.5px var(--MI_THEME-divider);
|
|
background: var(--MI_THEME-bg);
|
|
|
|
@media (max-width: $widgets-hide-threshold) {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|