Sharkey/src/client/app/mobile/views/components/sub-note-content.vue

46 lines
1 KiB
Vue
Raw Normal View History

2018-04-07 20:30:37 +03:00
<template>
<div class="mk-sub-note-content">
<div class="body">
2018-05-28 08:39:46 +03:00
<span v-if="note.isHidden" style="opacity: 0.5">(%i18n:@private%)</span>
<span v-if="note.deletedAt" style="opacity: 0.5">(%i18n:@deleted%)</span>
2018-04-07 20:30:37 +03:00
<a class="reply" v-if="note.replyId">%fa:reply%</a>
2018-05-27 07:49:09 +03:00
<mk-note-html v-if="note.text" :text="note.text" :i="$store.state.i"/>
2018-04-07 20:30:37 +03:00
<a class="rp" v-if="note.renoteId">RP: ...</a>
</div>
<details v-if="note.media.length > 0">
2018-05-28 08:39:46 +03:00
<summary>({{ '%i18n:@media-count%'.replace('{}', note.media.length) }})</summary>
2018-04-07 20:30:37 +03:00
<mk-media-list :media-list="note.media"/>
</details>
<details v-if="note.poll">
2018-04-14 19:04:40 +03:00
<summary>%i18n:@poll%</summary>
2018-04-07 20:30:37 +03:00
<mk-poll :note="note"/>
</details>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['note']
});
</script>
<style lang="stylus" scoped>
.mk-sub-note-content
overflow-wrap break-word
> .body
> .reply
margin-right 6px
color #717171
> .rp
margin-left 4px
font-style oblique
color #a0bf46
mk-poll
font-size 80%
</style>