2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
2019-05-23 20:46:20 +02:00
|
|
|
<div class="mrdgzndn">
|
2023-05-17 04:42:50 +02:00
|
|
|
<Mfm :text="block.text" :isNote="false" :i="$i"/>
|
2021-11-19 11:36:12 +01:00
|
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url" class="url"/>
|
2019-04-29 02:11:57 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-05-14 03:50:21 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent } from 'vue';
|
2022-12-27 10:29:39 +01:00
|
|
|
import * as mfm from 'mfm-js';
|
2023-05-14 03:50:21 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import { TextBlock } from './block.type';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm';
|
2023-04-01 06:52:07 +02:00
|
|
|
import { $i } from '@/account';
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2023-05-14 03:50:21 +02: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 02:11:57 +02:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 10:29:39 +01:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 20:37:25 +01:00
|
|
|
.mrdgzndn {
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
2019-05-23 20:46:20 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2019-05-24 11:11:33 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .url {
|
|
|
|
margin: 0.5em 0;
|
|
|
|
}
|
|
|
|
}
|
2019-04-29 02:11:57 +02:00
|
|
|
</style>
|