mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-26 02:43:09 +02:00
8daff4a998
* refactor(frontend): Reactivityで型を明示するように * fix: プロパティの参照が誤っているのを修正 * fix: 初期化の値を空配列に書き換えていた部分をnullに置き換え
34 lines
916 B
Vue
34 lines
916 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div style="margin: 1em 0;">
|
|
<MkNote v-if="note && !block.detailed" :key="note.id + ':normal'" v-model:note="note"/>
|
|
<MkNoteDetailed v-if="note && block.detailed" :key="note.id + ':detail'" v-model:note="note"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { NoteBlock } from './block.type.js';
|
|
import MkNote from '@/components/MkNote.vue';
|
|
import MkNoteDetailed from '@/components/MkNoteDetailed.vue';
|
|
import * as os from '@/os.js';
|
|
|
|
const props = defineProps<{
|
|
block: NoteBlock,
|
|
page: Misskey.entities.Page,
|
|
}>();
|
|
|
|
const note = ref<Misskey.entities.Note | null>(null);
|
|
|
|
onMounted(() => {
|
|
os.api('notes/show', { noteId: props.block.note })
|
|
.then(result => {
|
|
note.value = result;
|
|
});
|
|
});
|
|
</script>
|