2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2023-04-01 07:42:40 +03:00
|
|
|
<Transition :name="defaultStore.state.animation ? '_transition_zoom' : ''" appear>
|
2023-01-14 04:23:02 +02:00
|
|
|
<div :class="$style.root">
|
2023-06-11 09:38:06 +03:00
|
|
|
<img :class="$style.img" :src="serverErrorImageUrl" class="_ghost"/>
|
2023-09-30 22:53:52 +03:00
|
|
|
<p :class="$style.text"><i class="ph-warning ph-bold ph-lg"></i> {{ i18n.ts.somethingHappened }}</p>
|
2023-02-12 09:51:45 +02:00
|
|
|
<MkButton :class="$style.button" @click="() => emit('retry')">{{ i18n.ts.retry }}</MkButton>
|
2020-07-09 15:18:46 +03:00
|
|
|
</div>
|
2022-12-30 06:37:14 +02:00
|
|
|
</Transition>
|
2020-01-29 21:37:25 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 08:02:25 +02:00
|
|
|
<script lang="ts" setup>
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { serverErrorImageUrl } from '@/instance.js';
|
2023-02-12 09:51:45 +02:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'retry'): void;
|
|
|
|
}>();
|
2020-01-29 21:37:25 +02:00
|
|
|
</script>
|
|
|
|
|
2023-01-14 04:23:02 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 21:37:25 +02:00
|
|
|
padding: 32px;
|
|
|
|
text-align: center;
|
2023-01-15 14:58:09 +02:00
|
|
|
align-items: center;
|
2023-01-14 04:23:02 +02:00
|
|
|
}
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2023-01-14 04:23:02 +02:00
|
|
|
.text {
|
|
|
|
margin: 0 0 8px 0;
|
|
|
|
}
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2023-01-14 04:23:02 +02:00
|
|
|
.button {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-02-08 11:35:42 +02:00
|
|
|
|
2023-01-14 04:23:02 +02:00
|
|
|
.img {
|
|
|
|
vertical-align: bottom;
|
2023-01-15 14:58:09 +02:00
|
|
|
width: 128px;
|
2023-01-14 04:23:02 +02:00
|
|
|
height: 128px;
|
|
|
|
margin-bottom: 16px;
|
2023-10-01 02:20:20 +03:00
|
|
|
border-radius: 4px;
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
|
|
|
</style>
|