Sharkey/src/web/app/desktop/views/components/sub-post-content.vue

57 lines
1.1 KiB
Vue
Raw Normal View History

2018-02-11 09:52:37 +02:00
<template>
<div class="mk-sub-post-content">
<div class="body">
<a class="reply" v-if="post.reply_id">%fa:reply%</a>
2018-02-13 01:11:10 +02:00
<mk-post-html :ast="post.ast" :i="$root.$data.os.i"/>
2018-02-11 09:52:37 +02:00
<a class="quote" v-if="post.repost_id" :href="`/post:${post.repost_id}`">RP: ...</a>
2018-02-13 01:11:10 +02:00
<mk-url-preview v-for="url in urls" :url="url" :key="url"/>
2018-02-11 09:52:37 +02:00
</div>
<details v-if="post.media">
<summary>({{ post.media.length }}つのメディア)</summary>
<mk-images :images="post.media"/>
</details>
<details v-if="post.poll">
<summary>投票</summary>
<mk-poll :post="post"/>
</details>
</div>
</template>
2018-02-13 01:11:10 +02:00
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['post'],
computed: {
urls(): string[] {
if (this.post.ast) {
return this.post.ast
.filter(t => (t.type == 'url' || t.type == 'link') && !t.silent)
.map(t => t.url);
} else {
return null;
}
2018-02-11 09:52:37 +02:00
}
2018-02-13 01:11:10 +02:00
}
});
2018-02-11 09:52:37 +02:00
</script>
<style lang="stylus" scoped>
.mk-sub-post-content
overflow-wrap break-word
> .body
> .reply
margin-right 6px
color #717171
> .quote
margin-left 4px
font-style oblique
color #a0bf46
mk-poll
font-size 80%
</style>