mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 08:53:08 +02:00
43930e6a84
* wip
* wip
* wip
* wip
* wip
* Update storage.ts
* wip
* wip
* wip
* wip
* Update storage.ts
* Update storage.ts
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* Update storage.ts
* wip
* wip
* wip
* wip
* 🍕
* wip
* wip
* wip
* wip
* wip
* wip
* Update deck-storage.ts
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* Update store.ts
* wip
* wip
* wip
* wip
* Update init.ts
* wip
* wip
* Update pizzax.ts
* wip
* wip
* Update timeline.vue
* Update init.ts
* wip
* wip
* Update init.ts
68 lines
1.3 KiB
Vue
68 lines
1.3 KiB
Vue
<template>
|
|
<div class="mrdgzndn">
|
|
<Mfm :text="text" :is-note="false" :i="$i" :key="text"/>
|
|
<MkUrlPreview v-for="url in urls" :url="url" :key="url" class="url"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
|
import { parse } from '../../../mfm/parse';
|
|
import { unique } from '../../../prelude/array';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MkUrlPreview: defineAsyncComponent(() => import('@/components/url-preview.vue')),
|
|
},
|
|
props: {
|
|
value: {
|
|
required: true
|
|
},
|
|
hpml: {
|
|
required: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
text: this.hpml.interpolate(this.value.text),
|
|
};
|
|
},
|
|
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 [];
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
'hpml.vars': {
|
|
handler() {
|
|
this.text = this.hpml.interpolate(this.value.text);
|
|
},
|
|
deep: true
|
|
}
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mrdgzndn {
|
|
&:not(:first-child) {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
> .url {
|
|
margin: 0.5em 0;
|
|
}
|
|
}
|
|
</style>
|