73 lines
2.0 KiB
Vue
73 lines
2.0 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<XColumn v-if="prefer.s['deck.alwaysShowMainColumn'] || mainRouter.currentRoute.value.name !== 'index'" :column="column" :isStacked="isStacked">
|
|
<template #header>
|
|
<template v-if="pageMetadata">
|
|
<i :class="pageMetadata.icon"></i>
|
|
<Mfm :text="pageMetadata.title" :plain="true"/>
|
|
</template>
|
|
</template>
|
|
|
|
<div style="height: 100%;">
|
|
<StackingRouterView v-if="prefer.s['experimental.stackingRouterView']" @contextmenu.stop="onContextmenu"/>
|
|
<RouterView v-else @contextmenu.stop="onContextmenu"/>
|
|
</div>
|
|
</XColumn>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { provide, shallowRef, ref } from 'vue';
|
|
import { isLink } from '@@/js/is-link.js';
|
|
import XColumn from './column.vue';
|
|
import type { Column } from '@/deck.js';
|
|
import type { PageMetadata } from '@/page.js';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { provideMetadataReceiver, provideReactiveMetadata } from '@/page.js';
|
|
import { mainRouter } from '@/router.js';
|
|
import { prefer } from '@/preferences.js';
|
|
import { DI } from '@/di.js';
|
|
|
|
defineProps<{
|
|
column: Column;
|
|
isStacked: boolean;
|
|
}>();
|
|
|
|
const pageMetadata = ref<null | PageMetadata>(null);
|
|
|
|
provide(DI.router, mainRouter);
|
|
provideMetadataReceiver((metadataGetter) => {
|
|
const info = metadataGetter();
|
|
pageMetadata.value = info;
|
|
});
|
|
provideReactiveMetadata(pageMetadata);
|
|
|
|
/*
|
|
function back() {
|
|
history.back();
|
|
}
|
|
*/
|
|
function onContextmenu(ev: MouseEvent) {
|
|
if (!ev.target) return;
|
|
|
|
if (isLink(ev.target as HTMLElement)) return;
|
|
if (['INPUT', 'TEXTAREA', 'IMG', 'VIDEO', 'CANVAS'].includes((ev.target as HTMLElement).tagName) || (ev.target as HTMLElement).attributes['contenteditable']) return;
|
|
if (window.getSelection()?.toString() !== '') return;
|
|
const path = mainRouter.currentRoute.value.path;
|
|
os.contextMenu([{
|
|
type: 'label',
|
|
text: path,
|
|
}, {
|
|
icon: 'ti ti-window-maximize',
|
|
text: i18n.ts.openInWindow,
|
|
action: () => {
|
|
os.pageWindow(path);
|
|
},
|
|
}], ev);
|
|
}
|
|
</script>
|