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-08-13 11:23:54 +00:00
|
|
|
<div><b><i class="ti ti-alert-triangle"></i> {{ i18n.ts.pageLoadError }}</b></div>
|
|
|
|
<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>
|
|
|
|
import { } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { version } from '@/config';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2022-01-15 22:55:19 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-01-07 01:13:02 +00:00
|
|
|
import { miLocalStorage } from '@/local-storage';
|
2023-04-01 04:42:40 +00:00
|
|
|
import { defaultStore } from '@/store';
|
2023-06-09 05:00:53 +00:00
|
|
|
import { serverErrorImageUrl } from '@/instance';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-01-15 22:55:19 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
error?: Error;
|
|
|
|
}>(), {
|
|
|
|
});
|
|
|
|
|
|
|
|
let loaded = $ref(false);
|
|
|
|
let serverIsDead = $ref(false);
|
|
|
|
let meta = $ref<misskey.entities.LiteInstanceMetadata | null>(null);
|
|
|
|
|
|
|
|
os.api('meta', {
|
|
|
|
detail: false,
|
|
|
|
}).then(res => {
|
|
|
|
loaded = true;
|
|
|
|
serverIsDead = false;
|
|
|
|
meta = res;
|
2023-01-07 01:13:02 +00:00
|
|
|
miLocalStorage.setItem('v', res.version);
|
2022-01-15 22:55:19 +00:00
|
|
|
}, () => {
|
|
|
|
loaded = true;
|
|
|
|
serverIsDead = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
function reload() {
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.error,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-alert-triangle',
|
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;
|
|
|
|
border-radius: 16px;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
</style>
|