2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
<template>
|
2022-01-15 22:55:19 +00:00
|
|
|
<MkLoading v-if="!loaded"/>
|
2023-04-01 04:42:40 +00:00
|
|
|
<Transition :name="defaultStore.state.animation ? '_transition_zoom' : ''" appear>
|
2023-05-19 07:20:53 +00:00
|
|
|
<div v-show="loaded" :class="$style.root">
|
2023-06-09 05:00:53 +00:00
|
|
|
<img :src="serverErrorImageUrl" class="_ghost" :class="$style.img"/>
|
2023-05-19 07:20:53 +00:00
|
|
|
<div class="_gaps">
|
2023-09-30 19:53:52 +00:00
|
|
|
<div><b><i class="ph-warning ph-bold ph-lg"></i> {{ i18n.ts.pageLoadError }}</b></div>
|
2023-08-13 11:23:54 +00:00
|
|
|
<div v-if="meta && (version === meta.version)">{{ i18n.ts.pageLoadErrorDescription }}</div>
|
|
|
|
<div v-else-if="serverIsDead">{{ i18n.ts.serverIsDead }}</div>
|
2023-05-19 07:20:53 +00:00
|
|
|
<template v-else>
|
2023-08-13 11:23:54 +00:00
|
|
|
<div>{{ i18n.ts.newVersionOfClientAvailable }}</div>
|
|
|
|
<div>{{ i18n.ts.youShouldUpgradeClient }}</div>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkButton style="margin: 8px auto;" @click="reload">{{ i18n.ts.reload }}</MkButton>
|
|
|
|
</template>
|
2023-08-13 11:23:54 +00:00
|
|
|
<div><MkA to="/docs/general/troubleshooting" class="_link">{{ i18n.ts.troubleshooting }}</MkA></div>
|
|
|
|
<div v-if="error" style="opacity: 0.7;">ERROR: {{ error }}</div>
|
2023-05-19 07:20:53 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
2022-12-30 04:37:14 +00:00
|
|
|
</Transition>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 22:55:19 +00:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { ref, computed } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { version } from '@/config.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { miLocalStorage } from '@/local-storage.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { serverErrorImageUrl } from '@/instance.js';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-01-15 22:55:19 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
error?: Error;
|
|
|
|
}>(), {
|
|
|
|
});
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const loaded = ref(false);
|
|
|
|
const serverIsDead = ref(false);
|
|
|
|
const meta = ref<Misskey.entities.MetaResponse | null>(null);
|
2022-01-15 22:55:19 +00:00
|
|
|
|
|
|
|
os.api('meta', {
|
|
|
|
detail: false,
|
|
|
|
}).then(res => {
|
2023-12-07 05:42:09 +00:00
|
|
|
loaded.value = true;
|
|
|
|
serverIsDead.value = false;
|
|
|
|
meta.value = res;
|
2023-01-07 01:13:02 +00:00
|
|
|
miLocalStorage.setItem('v', res.version);
|
2022-01-15 22:55:19 +00:00
|
|
|
}, () => {
|
2023-12-07 05:42:09 +00:00
|
|
|
loaded.value = true;
|
|
|
|
serverIsDead.value = true;
|
2022-01-15 22:55:19 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function reload() {
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerTabs = computed(() => []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.error,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-warning ph-bold ph-lg',
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-08-07 08:55:16 +00:00
|
|
|
padding: 32px;
|
2020-10-17 11:12:00 +00:00
|
|
|
text-align: center;
|
2023-05-19 07:20:53 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
.img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
height: 128px;
|
|
|
|
margin-bottom: 24px;
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-md);
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
</style>
|