mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-27 22:38:34 +09:00
OGPプレビュー追加
This commit is contained in:
parent
d3f0ab901c
commit
7162e1ff89
@ -8,6 +8,7 @@
|
||||
<div>
|
||||
<div>
|
||||
<Mfm :text="text.trim()" :author="$i" :i="$i"/>
|
||||
<MkUrlPreview v-for="url in urls" :key="url" :url="url" :compact="true" :detail="false" :class="$style.urlPreview"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -17,10 +18,14 @@
|
||||
<script lang="ts" setup>
|
||||
import { } from 'vue';
|
||||
import { $i } from '@/account';
|
||||
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
||||
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm';
|
||||
import * as mfm from 'mfm-js';
|
||||
|
||||
const props = defineProps<{
|
||||
text: string;
|
||||
}>();
|
||||
const urls = props.text ? extractUrlFromMfm(mfm.parse(props.text)) : null;
|
||||
</script>
|
||||
|
||||
<style lang="scss" module>
|
||||
@ -55,6 +60,11 @@ const props = defineProps<{
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.urlPreview {
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
@container (min-width: 350px) {
|
||||
.avatar {
|
||||
margin: 0 10px 0 0 !important;
|
||||
|
Loading…
Reference in New Issue
Block a user