forked from mirror/misskey
34 lines
681 B
Vue
34 lines
681 B
Vue
<template>
|
|
<div :class="$style.noteEmbedRoot">
|
|
<MkLoading v-if="loading"/>
|
|
<MkNote v-else-if="note" :note="note"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import MkNote from '@/components/MkNote.vue';
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
|
|
const props = defineProps<{
|
|
noteId: string;
|
|
}>();
|
|
|
|
const note = ref<Misskey.entities.Note | null>(null);
|
|
const loading = ref(true);
|
|
|
|
misskeyApi('notes/show', {
|
|
noteId: props.noteId,
|
|
}).then(res => {
|
|
note.value = res;
|
|
loading.value = false;
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.noteEmbedRoot {
|
|
background-color: var(--panel);
|
|
}
|
|
</style>
|