This commit is contained in:
syuilo 2024-08-26 11:34:16 +09:00
parent 5e5208f94e
commit 4ecb3526a2
2 changed files with 21 additions and 3 deletions

View File

@ -0,0 +1,19 @@
<!--
SPDX-FileCopyrightText: syuilo and misskey-project
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div>
<div class="_fullinfo">
<img :src="notFoundImageUrl" class="_ghost"/>
<div>{{ i18n.ts.notFoundDescription }}</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
import { i18n } from '@/i18n.js';
import { notFoundImageUrl } from '@/instance.js';
</script>

View File

@ -16,17 +16,16 @@ import { ref, provide, inject, onActivated } from 'vue';
import * as Misskey from 'misskey-js';
import EmNoteDetailed from '@/embed/components/EmNoteDetailed.vue';
import XNotFound from '@/pages/not-found.vue';
import { misskeyApi } from '@/scripts/misskey-api.js';
import { misskeyApi } from '@/misskey-api.js';
const props = defineProps<{
noteId: string;
}>();
provide('EMBED_ORIGINAL_ENTITY_URL', `/notes/${props.noteId}`);
const note = ref<Misskey.entities.Note | null>(null);
const loading = ref(true);
// TODO: APIHTML
misskeyApi('notes/show', {
noteId: props.noteId,
}).then(res => {