2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2019-04-29 00:11:57 +00:00
|
|
|
<template>
|
2023-05-27 02:35:26 +00:00
|
|
|
<div class="_gaps">
|
2023-11-04 09:27:22 +00:00
|
|
|
<Mfm :text="block.text" :isNote="false"/>
|
2023-05-27 02:35:26 +00:00
|
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url"/>
|
2019-04-29 00:11:57 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-05-14 01:50:21 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent } from 'vue';
|
2023-12-18 02:03:05 +00:00
|
|
|
import * as mfm from '@sharkey/sfm-js';
|
2023-05-14 01:50:21 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-12-24 07:16:58 +00:00
|
|
|
import { TextBlock } from './block.type.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm.js';
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2023-05-14 01:50:21 +00:00
|
|
|
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)) : [];
|
2019-04-29 00:11:57 +00:00
|
|
|
</script>
|