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"
|
2020-12-30 06:07:16 +02:00
|
|
|
:initial-width="500"
|
2020-10-24 19:21:41 +03:00
|
|
|
:initial-height="500"
|
|
|
|
:can-resize="true"
|
2021-10-08 16:03:06 +03:00
|
|
|
:close-button="true"
|
2022-06-20 11:38:49 +03:00
|
|
|
:buttons-left="buttonsLeft"
|
|
|
|
:buttons-right="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">
|
|
|
|
<i v-if="pageMetadata.value.icon" class="icon" :class="pageMetadata.value.icon" style="margin-right: 0.5em;"></i>
|
|
|
|
<span>{{ pageMetadata.value.title }}</span>
|
2021-10-08 16:03:06 +03:00
|
|
|
</template>
|
|
|
|
</template>
|
2021-12-24 05:34:24 +02:00
|
|
|
|
2023-01-14 10:23:49 +02:00
|
|
|
<div :class="$style.root" :style="{ background: pageMetadata?.value?.bg }" style="container-type: inline-size;">
|
2023-02-22 10:43:10 +02:00
|
|
|
<RouterView :key="reloadCount" :router="router"/>
|
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>
|
2023-02-16 16:09:41 +02:00
|
|
|
import { ComputedRef, onMounted, onUnmounted, provide } 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';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { popout as _popout } from '@/scripts/popout';
|
2021-11-11 19:02:25 +02:00
|
|
|
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
|
|
|
import { url } from '@/config';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { mainRouter, routes } from '@/router';
|
|
|
|
import { Router } from '@/nirax';
|
|
|
|
import { i18n } from '@/i18n';
|
2023-02-16 16:09:41 +02:00
|
|
|
import { PageMetadata, provideMetadataReceiver } from '@/scripts/page-metadata';
|
2023-01-21 08:30:29 +02:00
|
|
|
import { openingWindowsCount } from '@/os';
|
|
|
|
import { claimAchievement } from '@/scripts/achievements';
|
2022-06-20 11:38:49 +03:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
initialPath: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const router = new Router(routes, props.initialPath);
|
|
|
|
|
|
|
|
let pageMetadata = $ref<null | ComputedRef<PageMetadata>>();
|
2023-01-06 02:59:17 +02:00
|
|
|
let windowEl = $shallowRef<InstanceType<typeof MkWindow>>();
|
2022-07-02 06:12:10 +03:00
|
|
|
const history = $ref<{ path: string; key: any; }[]>([{
|
|
|
|
path: router.getCurrentPath(),
|
|
|
|
key: router.getCurrentKey(),
|
|
|
|
}]);
|
2022-06-20 11:38:49 +03:00
|
|
|
const buttonsLeft = $computed(() => {
|
|
|
|
const buttons = [];
|
|
|
|
|
|
|
|
if (history.length > 1) {
|
|
|
|
buttons.push({
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-arrow-left',
|
2022-06-20 11:38:49 +03:00
|
|
|
onClick: back,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return buttons;
|
|
|
|
});
|
|
|
|
const buttonsRight = $computed(() => {
|
|
|
|
const buttons = [{
|
2023-02-22 10:43:10 +02:00
|
|
|
icon: 'ti ti-reload',
|
|
|
|
title: i18n.ts.reload,
|
|
|
|
onClick: reload,
|
|
|
|
}, {
|
2022-12-21 01:39:28 +02:00
|
|
|
icon: 'ti ti-player-eject',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts.showInPage,
|
|
|
|
onClick: expand,
|
|
|
|
}];
|
|
|
|
|
|
|
|
return buttons;
|
|
|
|
});
|
2023-02-22 10:43:10 +02:00
|
|
|
let reloadCount = $ref(0);
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
router.addListener('push', ctx => {
|
2022-07-02 06:12:10 +03:00
|
|
|
history.push({ path: ctx.path, key: ctx.key });
|
2022-06-20 11:38:49 +03:00
|
|
|
});
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
provide('router', router);
|
|
|
|
provideMetadataReceiver((info) => {
|
|
|
|
pageMetadata = info;
|
|
|
|
});
|
|
|
|
provide('shouldOmitHeaderTitle', true);
|
|
|
|
provide('shouldHeaderThin', true);
|
2023-01-07 07:33:33 +02:00
|
|
|
provide('forceSpacerMin', true);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
|
|
|
const contextmenu = $computed(() => ([{
|
2022-12-21 01:39:28 +02:00
|
|
|
icon: 'ti ti-player-eject',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.showInPage,
|
|
|
|
action: expand,
|
|
|
|
}, {
|
2022-12-20 03:52:39 +02:00
|
|
|
icon: 'ti ti-window-maximize',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.popout,
|
|
|
|
action: popout,
|
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-external-link',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.openInNewTab,
|
|
|
|
action: () => {
|
|
|
|
window.open(url + router.getCurrentPath(), '_blank');
|
|
|
|
windowEl.close();
|
2020-10-28 15:21:53 +02:00
|
|
|
},
|
2022-06-20 11:38:49 +03:00
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-link',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.copyLink,
|
|
|
|
action: () => {
|
|
|
|
copyToClipboard(url + router.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() {
|
|
|
|
history.pop();
|
2022-07-20 13:59:27 +03:00
|
|
|
router.replace(history[history.length - 1].path, history[history.length - 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() {
|
|
|
|
reloadCount++;
|
|
|
|
}
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
function close() {
|
|
|
|
windowEl.close();
|
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
function expand() {
|
2022-07-16 23:12:22 +03:00
|
|
|
mainRouter.push(router.getCurrentPath(), 'forcePage');
|
2022-06-20 11:38:49 +03:00
|
|
|
windowEl.close();
|
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
function popout() {
|
|
|
|
_popout(router.getCurrentPath(), windowEl.$el);
|
|
|
|
windowEl.close();
|
|
|
|
}
|
|
|
|
|
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 {
|
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>
|