Add configuration option to enable click-through content warnings
This commit is contained in:
parent
ab86e87e85
commit
b0cf050797
4 changed files with 16 additions and 8 deletions
|
@ -29,7 +29,7 @@ const Status = {
|
|||
preview: null,
|
||||
showPreview: false,
|
||||
showingTall: false,
|
||||
showingContentWarningContent: false
|
||||
showingContentWarningContent: false
|
||||
}),
|
||||
computed: {
|
||||
muteWords () {
|
||||
|
@ -93,7 +93,10 @@ const Status = {
|
|||
return 'small'
|
||||
}
|
||||
return 'normal'
|
||||
}
|
||||
},
|
||||
clickThroughContentWarningsEnabled () {
|
||||
return this.$store.state.config.clickThroughContentWarningsEnabled
|
||||
},
|
||||
},
|
||||
components: {
|
||||
Attachment,
|
||||
|
|
|
@ -76,17 +76,19 @@
|
|||
<div v-if="status.summary" @click.prevent="linkClicked" class="status-content media-body">
|
||||
<div class="contentWarningLabel">
|
||||
<span v-html="status.summary"></span>
|
||||
<button v-if="showingContentWarningContent" @click.prevent="toggleContentWarningContent">Hide</button>
|
||||
<button v-else @click.prevent="toggleContentWarningContent">Show</button>
|
||||
<span v-if="clickThroughContentWarningsEnabled">
|
||||
<button v-if="showingContentWarningContent" @click.prevent="toggleContentWarningContent">Hide</button>
|
||||
<button v-else @click.prevent="toggleContentWarningContent">Show</button>
|
||||
</span>
|
||||
</div>
|
||||
<div v-if="showingContentWarningContent" v-html="status.content" class="contentWarnedContent"></div>
|
||||
<div v-if="showingContentWarningContent || !clickThroughContentWarningsEnabled" v-html="status.content" class="contentWarnedContent"></div>
|
||||
<div v-else class="hiddenContent" @click.prevent="toggleContentWarningContent">Click to view this post.<span v-if="status.attachments && status.attachments.length > 0"> (has attachments)</span></div>
|
||||
</div>
|
||||
<div v-else @click.prevent="linkClicked" class="status-content media-body" v-html="status.statusnet_html"></div>
|
||||
<a v-if="showingTall" href="#" class="tall-status-unhider" @click.prevent="toggleShowTall">Show less</a>
|
||||
</div>
|
||||
|
||||
<div v-if='status.attachments && (!status.summary || showingContentWarningContent)' class='attachments media-body'>
|
||||
<div v-if='status.attachments && (!status.summary || showingContentWarningContent || !clickThroughContentWarningsEnabled)' class='attachments media-body'>
|
||||
<attachment :size="attachmentSize" :status-id="status.id" :nsfw="status.nsfw" :attachment="attachment" v-for="attachment in status.attachments" :key="attachment.id">
|
||||
</attachment>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue