2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="mrdgzndn">
|
|
|
|
<Mfm :key="text" :text="text" :is-note="false" :i="$i" />
|
|
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url" class="url" />
|
|
|
|
</div>
|
2019-04-29 02:11:57 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2023-04-08 02:01:42 +02:00
|
|
|
import { TextBlock } from "@/scripts/hpml/block";
|
|
|
|
import { Hpml } from "@/scripts/hpml/evaluator";
|
|
|
|
import { defineAsyncComponent, defineComponent, PropType } from "vue";
|
|
|
|
import * as mfm from "mfm-js";
|
|
|
|
import { extractUrlFromMfm } from "@/scripts/extract-url-from-mfm";
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2023-04-08 02:01:42 +02:00
|
|
|
MkUrlPreview: defineAsyncComponent(
|
2023-07-06 03:28:27 +02:00
|
|
|
() => import("@/components/MkUrlPreview.vue"),
|
2023-04-08 02:01:42 +02:00
|
|
|
),
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
2019-04-29 02:11:57 +02:00
|
|
|
props: {
|
2021-01-30 02:59:05 +01:00
|
|
|
block: {
|
|
|
|
type: Object as PropType<TextBlock>,
|
2023-04-08 02:01:42 +02:00
|
|
|
required: true,
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
2020-04-20 14:35:27 +02:00
|
|
|
hpml: {
|
2021-01-30 02:59:05 +01:00
|
|
|
type: Object as PropType<Hpml>,
|
2023-04-08 02:01:42 +02:00
|
|
|
required: true,
|
|
|
|
},
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2021-01-30 02:59:05 +01:00
|
|
|
text: this.hpml.interpolate(this.block.text),
|
2019-04-29 02:11:57 +02:00
|
|
|
};
|
|
|
|
},
|
2019-05-24 11:11:33 +02:00
|
|
|
computed: {
|
|
|
|
urls(): string[] {
|
|
|
|
if (this.text) {
|
2021-04-02 03:36:11 +02:00
|
|
|
return extractUrlFromMfm(mfm.parse(this.text));
|
2019-05-24 11:11:33 +02:00
|
|
|
} else {
|
|
|
|
return [];
|
|
|
|
}
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
2019-05-24 11:11:33 +02:00
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
watch: {
|
2023-04-08 02:01:42 +02:00
|
|
|
"hpml.vars": {
|
2020-01-29 20:37:25 +01:00
|
|
|
handler() {
|
2021-01-30 02:59:05 +01:00
|
|
|
this.text = this.hpml.interpolate(this.block.text);
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
deep: true,
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2019-04-29 02:11:57 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mrdgzndn {
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
> .url {
|
|
|
|
margin: 0.5em 0;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-04-08 02:01:42 +02:00
|
|
|
}
|
|
|
|
</style>
|