2019-04-28 19:11:57 -05:00
|
|
|
<template>
|
2019-05-23 13:46:20 -05:00
|
|
|
<div class="mrdgzndn">
|
2019-04-28 19:11:57 -05:00
|
|
|
<mfm :text="text" :is-note="false" :i="$store.state.i" :key="text"/>
|
2019-05-24 04:11:33 -05:00
|
|
|
<mk-url-preview v-for="url in urls" :url="url" :key="url" class="url"/>
|
2019-04-28 19:11:57 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-01-29 13:37:25 -06:00
|
|
|
import { parse } from '../../../mfm/parse';
|
|
|
|
import { unique } from '../../../prelude/array';
|
2019-04-28 19:11:57 -05:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 07:35:27 -05:00
|
|
|
hpml: {
|
2019-04-28 19:11:57 -05:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2020-04-20 07:35:27 -05:00
|
|
|
text: this.hpml.interpolate(this.value.text),
|
2019-04-28 19:11:57 -05:00
|
|
|
};
|
|
|
|
},
|
2019-05-24 04:11:33 -05:00
|
|
|
computed: {
|
|
|
|
urls(): string[] {
|
|
|
|
if (this.text) {
|
|
|
|
const ast = parse(this.text);
|
|
|
|
// TODO: 再帰的にURL要素がないか調べる
|
|
|
|
return unique(ast
|
|
|
|
.filter(t => ((t.node.type == 'url' || t.node.type == 'link') && t.node.props.url && !t.node.props.silent))
|
|
|
|
.map(t => t.node.props.url));
|
|
|
|
} else {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
watch: {
|
2020-04-20 07:35:27 -05:00
|
|
|
'hpml.vars': {
|
2020-01-29 13:37:25 -06:00
|
|
|
handler() {
|
2020-04-20 07:35:27 -05:00
|
|
|
this.text = this.hpml.interpolate(this.value.text);
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
deep: true
|
|
|
|
}
|
|
|
|
},
|
2019-04-28 19:11:57 -05:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mrdgzndn {
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
2019-05-23 13:46:20 -05:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2019-05-24 04:11:33 -05:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
> .url {
|
|
|
|
margin: 0.5em 0;
|
|
|
|
}
|
|
|
|
}
|
2019-04-28 19:11:57 -05:00
|
|
|
</style>
|