2023-07-26 22:31:52 -07:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-10-17 04:12:00 -07:00
|
|
|
<template>
|
2022-01-15 14:55:19 -08:00
|
|
|
<MkLoading v-if="!loaded"/>
|
2023-03-31 21:42:40 -07:00
|
|
|
<Transition :name="defaultStore.state.animation ? '_transition_zoom' : ''" appear>
|
2023-05-19 00:20:53 -07:00
|
|
|
<div v-show="loaded" :class="$style.root">
|
2023-06-08 22:00:53 -07:00
|
|
|
<img :src="serverErrorImageUrl" class="_ghost" :class="$style.img"/>
|
2023-05-19 00:20:53 -07:00
|
|
|
<div class="_gaps">
|
2023-08-13 04:23:54 -07: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 00:20:53 -07:00
|
|
|
<template v-else>
|
2023-08-13 04:23:54 -07:00
|
|
|
<div>{{ i18n.ts.newVersionOfClientAvailable }}</div>
|
|
|
|
<div>{{ i18n.ts.youShouldUpgradeClient }}</div>
|
2023-05-19 00:20:53 -07:00
|
|
|
<MkButton style="margin: 8px auto;" @click="reload">{{ i18n.ts.reload }}</MkButton>
|
|
|
|
</template>
|
2023-08-13 04:23:54 -07: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 00:20:53 -07:00
|
|
|
</div>
|
2020-10-17 04:12:00 -07:00
|
|
|
</div>
|
2022-12-29 20:37:14 -08:00
|
|
|
</Transition>
|
2020-10-17 04:12:00 -07:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 14:55:19 -08:00
|
|
|
<script lang="ts" setup>
|
2023-12-06 21:42:09 -08:00
|
|
|
import { ref, computed } from 'vue';
|
2023-09-03 21:33:38 -07:00
|
|
|
import * as Misskey from 'misskey-js';
|
2022-09-06 02:21:49 -07:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-09-19 00:37:43 -07: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 04:12:00 -07:00
|
|
|
|
2022-01-15 14:55:19 -08:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
error?: Error;
|
|
|
|
}>(), {
|
|
|
|
});
|
|
|
|
|
2023-12-06 21:42:09 -08:00
|
|
|
const loaded = ref(false);
|
|
|
|
const serverIsDead = ref(false);
|
|
|
|
const meta = ref<Misskey.entities.MetaResponse | null>(null);
|
2022-01-15 14:55:19 -08:00
|
|
|
|
|
|
|
os.api('meta', {
|
|
|
|
detail: false,
|
|
|
|
}).then(res => {
|
2023-12-06 21:42:09 -08:00
|
|
|
loaded.value = true;
|
|
|
|
serverIsDead.value = false;
|
|
|
|
meta.value = res;
|
2023-01-06 17:13:02 -08:00
|
|
|
miLocalStorage.setItem('v', res.version);
|
2022-01-15 14:55:19 -08:00
|
|
|
}, () => {
|
2023-12-06 21:42:09 -08:00
|
|
|
loaded.value = true;
|
|
|
|
serverIsDead.value = true;
|
2022-01-15 14:55:19 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
function reload() {
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
2023-12-06 21:42:09 -08:00
|
|
|
const headerActions = computed(() => []);
|
2022-06-20 01:38:49 -07:00
|
|
|
|
2023-12-06 21:42:09 -08:00
|
|
|
const headerTabs = computed(() => []);
|
2022-06-20 01:38:49 -07:00
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.error,
|
2022-12-19 02:01:30 -08:00
|
|
|
icon: 'ti ti-alert-triangle',
|
2020-10-17 04:12:00 -07:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-19 00:20:53 -07:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-08-07 01:55:16 -07:00
|
|
|
padding: 32px;
|
2020-10-17 04:12:00 -07:00
|
|
|
text-align: center;
|
2023-05-19 00:20:53 -07:00
|
|
|
}
|
2020-10-17 04:12:00 -07:00
|
|
|
|
2023-05-19 00:20:53 -07:00
|
|
|
.img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
height: 128px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
border-radius: 16px;
|
2020-10-17 04:12:00 -07:00
|
|
|
}
|
|
|
|
</style>
|