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