2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
2023-05-30 10:37:38 +02:00
|
|
|
<component :is="getComponent(block.type)" :key="block.id" :page="page" :block="block" :h="h"/>
|
2019-04-29 02:11:57 +02:00
|
|
|
</template>
|
|
|
|
|
2023-05-14 03:50:21 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
2019-04-29 02:11:57 +02:00
|
|
|
import XText from './page.text.vue';
|
|
|
|
import XSection from './page.section.vue';
|
|
|
|
import XImage from './page.image.vue';
|
2020-11-15 05:42:04 +01:00
|
|
|
import XNote from './page.note.vue';
|
2023-05-14 03:50:21 +02:00
|
|
|
import { Block } from './block.type';
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2023-05-30 10:37:38 +02:00
|
|
|
function getComponent(type: string) {
|
|
|
|
switch (type) {
|
|
|
|
case 'text': return XText;
|
|
|
|
case 'section': return XSection;
|
|
|
|
case 'image': return XImage;
|
|
|
|
case 'note': return XNote;
|
|
|
|
default: return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-14 03:50:21 +02:00
|
|
|
defineProps<{
|
|
|
|
block: Block,
|
|
|
|
h: number,
|
|
|
|
page: Misskey.entities.Page,
|
|
|
|
}>();
|
2019-04-29 02:11:57 +02:00
|
|
|
</script>
|