mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-26 06:43:09 +02:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
34 lines
920 B
Vue
34 lines
920 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, ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { NoteBlock } from './block.type';
|
|
import MkNote from '@/components/MkNote.vue';
|
|
import MkNoteDetailed from '@/components/MkNoteDetailed.vue';
|
|
import * as os from '@/os';
|
|
|
|
const props = defineProps<{
|
|
block: NoteBlock,
|
|
page: Misskey.entities.Page,
|
|
}>();
|
|
|
|
const note: Ref<Misskey.entities.Note | null> = ref(null);
|
|
|
|
onMounted(() => {
|
|
os.api('notes/show', { noteId: props.block.note })
|
|
.then(result => {
|
|
note.value = result;
|
|
});
|
|
});
|
|
</script>
|