2020-10-17 06:12:00 -05:00
|
|
|
<template>
|
2022-01-15 16:55:19 -06:00
|
|
|
<MkLoading v-if="!loaded"/>
|
2020-12-18 19:55:52 -06:00
|
|
|
<transition :name="$store.state.animation ? 'zoom' : ''" appear>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-show="loaded" class="mjndxjch">
|
2021-08-07 03:55:16 -05:00
|
|
|
<img src="https://xn--931a.moe/assets/error.jpg" class="_ghost"/>
|
2022-01-27 20:39:49 -06:00
|
|
|
<p><b><i class="fas fa-exclamation-triangle"></i> {{ i18n.ts.pageLoadError }}</b></p>
|
|
|
|
<p v-if="meta && (version === meta.version)">{{ i18n.ts.pageLoadErrorDescription }}</p>
|
|
|
|
<p v-else-if="serverIsDead">{{ i18n.ts.serverIsDead }}</p>
|
2021-10-02 02:36:25 -05:00
|
|
|
<template v-else>
|
2022-01-27 20:39:49 -06:00
|
|
|
<p>{{ i18n.ts.newVersionOfClientAvailable }}</p>
|
|
|
|
<p>{{ i18n.ts.youShouldUpgradeClient }}</p>
|
|
|
|
<MkButton class="button primary" @click="reload">{{ i18n.ts.reload }}</MkButton>
|
2021-10-02 02:36:25 -05:00
|
|
|
</template>
|
2022-01-27 20:39:49 -06:00
|
|
|
<p><MkA to="/docs/general/troubleshooting" class="_link">{{ i18n.ts.troubleshooting }}</MkA></p>
|
2021-08-07 03:55:16 -05:00
|
|
|
<p v-if="error" class="error">ERROR: {{ error }}</p>
|
2020-10-17 06:12:00 -05:00
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</template>
|
|
|
|
|
2022-01-15 16:55:19 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-11 11:02:25 -06:00
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import { version } from '@/config';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2022-01-15 16:55:19 -06:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 03:38:49 -05:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2022-01-15 16:55:19 -06: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;
|
|
|
|
localStorage.setItem('v', res.version);
|
|
|
|
}, () => {
|
|
|
|
loaded = true;
|
|
|
|
serverIsDead = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
function reload() {
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
2022-06-20 03:38:49 -05:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.error,
|
|
|
|
icon: 'fas fa-exclamation-triangle',
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mjndxjch {
|
2021-08-07 03:55:16 -05:00
|
|
|
padding: 32px;
|
2020-10-17 06:12:00 -05:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> p {
|
2021-08-07 03:55:16 -05:00
|
|
|
margin: 0 0 12px 0;
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
> .button {
|
2021-10-02 02:36:25 -05:00
|
|
|
margin: 8px auto;
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
> img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
height: 128px;
|
2021-08-07 03:55:16 -05:00
|
|
|
margin-bottom: 24px;
|
2020-10-17 06:12:00 -05:00
|
|
|
border-radius: 16px;
|
|
|
|
}
|
2021-08-07 03:55:16 -05:00
|
|
|
|
|
|
|
> .error {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
</style>
|