mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-26 02:43:09 +02:00
28 lines
799 B
Vue
28 lines
799 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_gaps">
|
|
<Mfm :text="block.text" :isNote="false"/>
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent } from 'vue';
|
|
import * as mfm from '@sharkey/sfm-js';
|
|
import * as Misskey from 'misskey-js';
|
|
import { TextBlock } from './block.type.js';
|
|
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm.js';
|
|
|
|
const MkUrlPreview = defineAsyncComponent(() => import('@/components/MkUrlPreview.vue'));
|
|
|
|
const props = defineProps<{
|
|
block: TextBlock,
|
|
page: Misskey.entities.Page,
|
|
}>();
|
|
|
|
const urls = props.block.text ? extractUrlFromMfm(mfm.parse(props.block.text)) : [];
|
|
</script>
|