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

48 lines
1.2 KiB
Vue
Raw Normal View History

2018-04-07 20:30:37 +03:00
<template>
<div class="mk-sub-note-content">
<div class="body">
<span v-if="note.isHidden" style="opacity: 0.5">({{ $t('private') }})</span>
<span v-if="note.deletedAt" style="opacity: 0.5">({{ $t('deleted') }})</span>
<a class="reply" v-if="note.replyId"><fa icon="reply"/></a>
<misskey-flavored-markdown v-if="note.text" :text="note.text" :i="$store.state.i" :custom-emojis="note.emojis"/>
2018-10-20 01:01:09 +03:00
<a class="rp" v-if="note.renoteId">RN: ...</a>
2018-04-07 20:30:37 +03:00
</div>
2018-09-05 13:32:46 +03:00
<details v-if="note.files.length > 0">
<summary>({{ $t('media-count').replace('{}', note.files.length) }})</summary>
2018-09-05 13:32:46 +03:00
<mk-media-list :media-list="note.files"/>
2018-04-07 20:30:37 +03:00
</details>
<details v-if="note.poll">
<summary>{{ $t('poll') }}</summary>
2018-04-07 20:30:37 +03:00
<mk-poll :note="note"/>
</details>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-04-07 20:30:37 +03:00
export default Vue.extend({
i18n: i18n('mobile/views/components/sub-note-content.vue'),
2018-04-07 20:30:37 +03:00
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
2018-09-27 17:09:23 +03:00
color var(--renoteText)
2018-04-07 20:30:37 +03:00
mk-poll
font-size 80%
</style>