2018-02-10 06:55:11 +00:00
|
|
|
<div class="status-spoiler {{isStatusInNotification ? 'status-in-notification' : ''}} {{isStatusInOwnThread ? 'status-in-own-thread' : ''}}">
|
2018-04-14 22:50:06 +00:00
|
|
|
<p>{{{massagedSpoilerText}}}</p>
|
2018-02-04 20:49:42 +00:00
|
|
|
</div>
|
2018-02-10 06:55:11 +00:00
|
|
|
<div class="status-spoiler-button {{isStatusInOwnThread ? 'status-in-own-thread' : ''}}">
|
2018-04-30 00:45:03 +00:00
|
|
|
<button type="button" delegate-key={{delegateKey}}>
|
2018-02-04 18:44:04 +00:00
|
|
|
{{spoilerShown ? 'Show less' : 'Show more'}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<style>
|
|
|
|
.status-spoiler {
|
2018-02-10 04:07:48 +00:00
|
|
|
grid-area: spoiler;
|
2018-02-04 18:44:04 +00:00
|
|
|
word-wrap: break-word;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: pre-wrap;
|
2018-02-10 06:55:11 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
margin: 10px 5px;
|
|
|
|
}
|
|
|
|
|
2018-04-14 22:50:06 +00:00
|
|
|
:global(.status-spoiler .status-emoji) {
|
2018-04-28 01:19:37 +00:00
|
|
|
width: 1.4em;
|
|
|
|
height: 1.4em;
|
|
|
|
margin: -0.1em 0;
|
|
|
|
object-fit: contain;
|
|
|
|
vertical-align: middle;
|
2018-04-14 22:50:06 +00:00
|
|
|
}
|
|
|
|
|
2018-02-10 06:55:11 +00:00
|
|
|
.status-spoiler.status-in-own-thread {
|
|
|
|
font-size: 1.3em;
|
|
|
|
margin: 20px 5px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-spoiler.status-in-notification {
|
|
|
|
color: var(--very-deemphasized-text-color);
|
2018-02-04 18:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-spoiler-button {
|
2018-02-10 06:55:11 +00:00
|
|
|
grid-area: spoiler-btn;
|
|
|
|
margin: 10px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-spoiler-button.status-in-own-thread {
|
2018-02-04 18:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-spoiler-button button {
|
|
|
|
padding: 5px 10px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import { store } from '../../_store/store'
|
2018-04-18 04:47:30 +00:00
|
|
|
import { registerClickDelegate } from '../../_utils/delegate'
|
2018-04-11 05:30:14 +00:00
|
|
|
import { mark, stop } from '../../_utils/marks'
|
2018-04-14 22:50:06 +00:00
|
|
|
import { emojifyText } from '../../_utils/emojifyText'
|
|
|
|
import escapeHtml from 'escape-html'
|
2018-02-04 18:44:04 +00:00
|
|
|
|
|
|
|
export default {
|
2018-04-20 04:38:01 +00:00
|
|
|
oncreate () {
|
2018-04-19 16:37:05 +00:00
|
|
|
let { delegateKey } = this.get()
|
|
|
|
registerClickDelegate(this, delegateKey, () => this.onClickSpoilerButton())
|
2018-03-05 01:16:33 +00:00
|
|
|
},
|
2018-02-04 18:44:04 +00:00
|
|
|
store: () => store,
|
|
|
|
computed: {
|
2018-04-14 22:50:06 +00:00
|
|
|
spoilerText: (originalStatus) => originalStatus.spoiler_text,
|
2018-04-17 03:54:16 +00:00
|
|
|
emojis: (originalStatus) => originalStatus.emojis,
|
|
|
|
massagedSpoilerText: (spoilerText, emojis, $autoplayGifs) => {
|
2018-04-14 22:50:06 +00:00
|
|
|
spoilerText = escapeHtml(spoilerText)
|
2018-04-17 03:54:16 +00:00
|
|
|
return emojifyText(spoilerText, emojis, $autoplayGifs)
|
2018-04-14 22:50:06 +00:00
|
|
|
},
|
2018-03-16 03:04:24 +00:00
|
|
|
delegateKey: (uuid) => `spoiler-${uuid}`
|
2018-02-04 18:44:04 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-04-20 04:38:01 +00:00
|
|
|
onClickSpoilerButton () {
|
2018-03-23 15:29:54 +00:00
|
|
|
requestAnimationFrame(() => {
|
2018-04-11 05:30:14 +00:00
|
|
|
mark('clickSpoilerButton')
|
2018-04-19 16:37:05 +00:00
|
|
|
let { uuid } = this.get()
|
|
|
|
let { spoilersShown } = this.store.get()
|
|
|
|
spoilersShown[uuid] = !spoilersShown[uuid]
|
|
|
|
this.store.set({spoilersShown})
|
2018-03-23 15:29:54 +00:00
|
|
|
this.fire('recalculateHeight')
|
2018-04-11 05:30:14 +00:00
|
|
|
stop('clickSpoilerButton')
|
2018-03-23 15:29:54 +00:00
|
|
|
})
|
2018-02-04 18:44:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-28 01:19:37 +00:00
|
|
|
</script>
|