forked from AkkomaGang/akkoma-fe
Add click-to-show content warnings on posts
This commit is contained in:
parent
c07adb7121
commit
0554cac113
2 changed files with 26 additions and 2 deletions
|
@ -28,7 +28,8 @@ const Status = {
|
|||
userExpanded: false,
|
||||
preview: null,
|
||||
showPreview: false,
|
||||
showingTall: false
|
||||
showingTall: false,
|
||||
showingContentWarningContent: false
|
||||
}),
|
||||
computed: {
|
||||
muteWords () {
|
||||
|
@ -145,6 +146,9 @@ const Status = {
|
|||
toggleShowTall () {
|
||||
this.showingTall = !this.showingTall
|
||||
},
|
||||
toggleContentWarningContent () {
|
||||
this.showingContentWarningContent = !this.showingContentWarningContent
|
||||
},
|
||||
replyEnter (id, event) {
|
||||
this.showPreview = true
|
||||
const targetId = Number(id)
|
||||
|
|
|
@ -73,7 +73,16 @@
|
|||
|
||||
<div :class="{'tall-status': hideTallStatus}" class="status-content-wrapper">
|
||||
<a class="tall-status-hider" :class="{ 'tall-status-hider_focused': isFocused }" v-if="hideTallStatus" href="#" @click.prevent="toggleShowTall">Show more</a>
|
||||
<div @click.prevent="linkClicked" class="status-content media-body" v-html="status.statusnet_html"></div>
|
||||
<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>
|
||||
</div>
|
||||
<div v-if="showingContentWarningContent" v-html="status.content" class="contentWarnedContent"></div>
|
||||
<div v-else class="hiddenContent" @click.prevent="toggleContentWarningContent">Click to view this post.</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>
|
||||
|
||||
|
@ -488,4 +497,15 @@ a.unmute {
|
|||
}
|
||||
}
|
||||
|
||||
.hiddenContent {
|
||||
margin: 8px;
|
||||
padding: 32px;
|
||||
background: var(--lightBg, $fallback--lightBg);
|
||||
color: #CCCCCC;
|
||||
border-radius: var(--panelRadius, $fallback--panelRadius);
|
||||
}
|
||||
.contentWarnedContent {
|
||||
margin: 8px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue