1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-01-26 15:34:56 +01:00

Change computed to isShowContent in toot

This commit is contained in:
AkiraFukushima 2019-01-24 00:02:31 +09:00
parent c76c6f0c49
commit b953e45c86

View File

@ -36,14 +36,14 @@
<div class="content-wrapper">
<div class="spoiler" v-show="spoilered">
<span v-html="spoilerText()"></span>
<el-button v-if="!isShowContent()" plain type="primary" size="medium" class="spoil-button" @click="showContent = true">
<el-button v-if="!isShowContent" plain type="primary" size="medium" class="spoil-button" @click="showContent = true">
{{ $t('cards.toot.show_more') }}
</el-button>
<el-button v-else type="primary" size="medium" class="spoil-button" @click="showContent = false">
{{ $t('cards.toot.hide')}}
</el-button>
</div>
<div class="content" v-show="isShowContent()" v-html="status()" @click.capture.prevent="tootClick"></div>
<div class="content" v-show="isShowContent" v-html="status()" @click.capture.prevent="tootClick"></div>
</div>
<div class="attachments">
<el-button v-show="sensitive() && !isShowAttachments()" class="show-sensitive" type="info" @click="showAttachments = true">
@ -234,6 +234,9 @@ export default {
},
spoilered: function () {
return this.originalMessage.spoiler_text.length > 0
},
isShowContent: function () {
return !this.spoilered || this.showContent
}
},
mounted () {
@ -436,9 +439,6 @@ export default {
})
})
},
isShowContent () {
return !this.spoilered || this.showContent
},
sensitive () {
return this.originalMessage.sensitive && this.mediaAttachments.length > 0
},