2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
<template>
|
2023-01-06 02:59:17 +02:00
|
|
|
<MkWindow
|
2022-06-20 11:38:49 +03:00
|
|
|
ref="windowEl"
|
2023-05-19 07:58:09 +03:00
|
|
|
:initialWidth="500"
|
|
|
|
:initialHeight="500"
|
|
|
|
:canResize="true"
|
|
|
|
:closeButton="true"
|
|
|
|
:buttonsLeft="buttonsLeft"
|
|
|
|
:buttonsRight="buttonsRight"
|
2020-10-24 19:21:41 +03:00
|
|
|
:contextmenu="contextmenu"
|
|
|
|
@closed="$emit('closed')"
|
|
|
|
>
|
2020-10-17 14:12:00 +03:00
|
|
|
<template #header>
|
2022-06-20 11:38:49 +03:00
|
|
|
<template v-if="pageMetadata?.value">
|
2023-05-15 10:25:44 +03:00
|
|
|
<i v-if="pageMetadata.value.icon" :class="pageMetadata.value.icon" style="margin-right: 0.5em;"></i>
|
2022-06-20 11:38:49 +03:00
|
|
|
<span>{{ pageMetadata.value.title }}</span>
|
2021-10-08 16:03:06 +03:00
|
|
|
</template>
|
|
|
|
</template>
|
2021-12-24 05:34:24 +02:00
|
|
|
|
2023-07-08 09:30:36 +03:00
|
|
|
<div ref="contents" :class="$style.root" style="container-type: inline-size;">
|
2024-01-08 07:44:43 +02:00
|
|
|
<RouterView :key="reloadCount" :router="windowRouter"/>
|
2020-10-17 14:12:00 +03:00
|
|
|
</div>
|
2023-01-06 02:59:17 +02:00
|
|
|
</MkWindow>
|
2020-10-17 14:12:00 +03:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
<script lang="ts" setup>
|
2024-01-08 07:44:43 +02:00
|
|
|
import { computed, ComputedRef, onMounted, onUnmounted, provide, ref, shallowRef } from 'vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import RouterView from '@/components/global/RouterView.vue';
|
2023-01-06 02:59:17 +02:00
|
|
|
import MkWindow from '@/components/MkWindow.vue';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { popout as _popout } from '@/scripts/popout.js';
|
|
|
|
import copyToClipboard from '@/scripts/copy-to-clipboard.js';
|
|
|
|
import { url } from '@/config.js';
|
2024-01-08 07:44:43 +02:00
|
|
|
import { useScrollPositionManager } from '@/nirax.js';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { PageMetadata, provideMetadataReceiver } from '@/scripts/page-metadata.js';
|
|
|
|
import { openingWindowsCount } from '@/os.js';
|
|
|
|
import { claimAchievement } from '@/scripts/achievements.js';
|
|
|
|
import { getScrollContainer } from '@/scripts/scroll.js';
|
2024-01-30 14:07:34 +02:00
|
|
|
import { useRouterFactory } from '@/router/supplier.js';
|
|
|
|
import { mainRouter } from '@/router/main.js';
|
2022-06-20 11:38:49 +03:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
initialPath: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
2024-01-08 07:44:43 +02:00
|
|
|
const routerFactory = useRouterFactory();
|
|
|
|
const windowRouter = routerFactory(props.initialPath);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2024-01-30 12:53:53 +02:00
|
|
|
const contents = shallowRef<HTMLElement | null>(null);
|
2023-12-07 07:42:09 +02:00
|
|
|
const pageMetadata = ref<null | ComputedRef<PageMetadata>>();
|
|
|
|
const windowEl = shallowRef<InstanceType<typeof MkWindow>>();
|
|
|
|
const history = ref<{ path: string; key: any; }[]>([{
|
2024-01-08 07:44:43 +02:00
|
|
|
path: windowRouter.getCurrentPath(),
|
|
|
|
key: windowRouter.getCurrentKey(),
|
2022-07-02 06:12:10 +03:00
|
|
|
}]);
|
2023-12-07 07:42:09 +02:00
|
|
|
const buttonsLeft = computed(() => {
|
2024-01-30 12:53:53 +02:00
|
|
|
const buttons: Record<string, unknown>[] = [];
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
if (history.value.length > 1) {
|
2022-06-20 11:38:49 +03:00
|
|
|
buttons.push({
|
2023-11-04 00:20:53 +02:00
|
|
|
icon: 'ph-arrow-left ph-bold ph-lg',
|
2022-06-20 11:38:49 +03:00
|
|
|
onClick: back,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return buttons;
|
|
|
|
});
|
2023-12-07 07:42:09 +02:00
|
|
|
const buttonsRight = computed(() => {
|
2022-06-20 11:38:49 +03:00
|
|
|
const buttons = [{
|
2024-02-06 22:23:37 +02:00
|
|
|
icon: 'ph-arrows-clockwise ph-bold ph-lg',
|
2023-02-22 10:43:10 +02:00
|
|
|
title: i18n.ts.reload,
|
|
|
|
onClick: reload,
|
|
|
|
}, {
|
2023-11-04 00:20:53 +02:00
|
|
|
icon: 'ph-eject ph-bold ph-lg',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts.showInPage,
|
|
|
|
onClick: expand,
|
|
|
|
}];
|
|
|
|
|
|
|
|
return buttons;
|
|
|
|
});
|
2023-12-07 07:42:09 +02:00
|
|
|
const reloadCount = ref(0);
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2024-01-08 07:44:43 +02:00
|
|
|
windowRouter.addListener('push', ctx => {
|
2023-12-07 07:42:09 +02:00
|
|
|
history.value.push({ path: ctx.path, key: ctx.key });
|
2022-06-20 11:38:49 +03:00
|
|
|
});
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2024-01-28 12:22:38 +02:00
|
|
|
windowRouter.addListener('replace', ctx => {
|
|
|
|
history.value.pop();
|
|
|
|
history.value.push({ path: ctx.path, key: ctx.key });
|
|
|
|
});
|
|
|
|
|
|
|
|
windowRouter.init();
|
|
|
|
|
2024-01-08 07:44:43 +02:00
|
|
|
provide('router', windowRouter);
|
2022-06-20 11:38:49 +03:00
|
|
|
provideMetadataReceiver((info) => {
|
2023-12-07 07:42:09 +02:00
|
|
|
pageMetadata.value = info;
|
2022-06-20 11:38:49 +03:00
|
|
|
});
|
|
|
|
provide('shouldOmitHeaderTitle', true);
|
|
|
|
provide('shouldHeaderThin', true);
|
2023-01-07 07:33:33 +02:00
|
|
|
provide('forceSpacerMin', true);
|
2023-12-03 20:09:15 +02:00
|
|
|
provide('shouldBackButton', false);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const contextmenu = computed(() => ([{
|
2023-11-04 00:20:53 +02:00
|
|
|
icon: 'ph-eject ph-bold ph-lg',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.showInPage,
|
|
|
|
action: expand,
|
|
|
|
}, {
|
2023-10-01 01:46:42 +03:00
|
|
|
icon: 'ph-frame-corners ph-bold ph-lg',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.popout,
|
|
|
|
action: popout,
|
|
|
|
}, {
|
2023-09-30 22:53:52 +03:00
|
|
|
icon: 'ph-arrow-square-out ph-bold ph-lg',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.openInNewTab,
|
|
|
|
action: () => {
|
2024-01-08 07:44:43 +02:00
|
|
|
window.open(url + windowRouter.getCurrentPath(), '_blank', 'noopener');
|
2024-01-30 12:53:53 +02:00
|
|
|
windowEl.value?.close();
|
2020-10-28 15:21:53 +02:00
|
|
|
},
|
2022-06-20 11:38:49 +03:00
|
|
|
}, {
|
2023-09-30 22:53:52 +03:00
|
|
|
icon: 'ph-link ph-bold ph-lg',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.copyLink,
|
|
|
|
action: () => {
|
2024-01-08 07:44:43 +02:00
|
|
|
copyToClipboard(url + windowRouter.getCurrentPath());
|
2020-10-24 19:21:41 +03:00
|
|
|
},
|
2022-06-20 11:38:49 +03:00
|
|
|
}]));
|
2020-10-24 19:21:41 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
function back() {
|
2023-12-07 07:42:09 +02:00
|
|
|
history.value.pop();
|
2024-01-08 07:44:43 +02:00
|
|
|
windowRouter.replace(history.value.at(-1)!.path, history.value.at(-1)!.key);
|
2022-06-20 11:38:49 +03:00
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2023-02-22 10:43:10 +02:00
|
|
|
function reload() {
|
2023-12-07 07:42:09 +02:00
|
|
|
reloadCount.value++;
|
2023-02-22 10:43:10 +02:00
|
|
|
}
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
function close() {
|
2024-01-30 12:53:53 +02:00
|
|
|
windowEl.value?.close();
|
2022-06-20 11:38:49 +03:00
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
function expand() {
|
2024-01-08 07:44:43 +02:00
|
|
|
mainRouter.push(windowRouter.getCurrentPath(), 'forcePage');
|
2024-01-30 12:53:53 +02:00
|
|
|
windowEl.value?.close();
|
2022-06-20 11:38:49 +03:00
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
function popout() {
|
2024-01-30 12:53:53 +02:00
|
|
|
_popout(windowRouter.getCurrentPath(), windowEl.value?.$el);
|
|
|
|
windowEl.value?.close();
|
2022-06-20 11:38:49 +03:00
|
|
|
}
|
|
|
|
|
2024-01-08 07:44:43 +02:00
|
|
|
useScrollPositionManager(() => getScrollContainer(contents.value), windowRouter);
|
2023-07-08 09:30:36 +03:00
|
|
|
|
2023-01-21 08:30:29 +02:00
|
|
|
onMounted(() => {
|
|
|
|
openingWindowsCount.value++;
|
|
|
|
if (openingWindowsCount.value >= 3) {
|
|
|
|
claimAchievement('open3windows');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
openingWindowsCount.value--;
|
|
|
|
});
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
defineExpose({
|
|
|
|
close,
|
2020-10-17 14:12:00 +03:00
|
|
|
});
|
|
|
|
</script>
|
2020-10-19 13:29:04 +03:00
|
|
|
|
2023-01-14 10:23:49 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2023-11-04 01:56:48 +02:00
|
|
|
overscroll-behavior: contain;
|
2023-10-30 02:12:20 +02:00
|
|
|
|
2021-04-10 06:40:50 +03:00
|
|
|
min-height: 100%;
|
2022-07-02 08:00:37 +03:00
|
|
|
background: var(--bg);
|
2023-01-07 07:33:33 +02:00
|
|
|
|
|
|
|
--margin: var(--marginHalf);
|
2020-10-19 13:29:04 +03:00
|
|
|
}
|
|
|
|
</style>
|