2018-03-30 10:06:17 +02:00
|
|
|
<div class="status-article-compose-box">
|
|
|
|
<ComposeBox realm="{{originalStatusId}}"
|
|
|
|
size="slim"
|
|
|
|
autoFocus="true"
|
|
|
|
hideBottomBorder="true"
|
2018-04-05 08:03:26 +02:00
|
|
|
isReply="true"
|
2018-03-30 19:04:35 +02:00
|
|
|
replyVisibility="{{visibility}}"
|
2018-04-03 18:45:17 +02:00
|
|
|
replySpoiler="{{spoilerText}}"
|
2018-03-30 10:06:17 +02:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<style>
|
|
|
|
.status-article-compose-box {
|
|
|
|
grid-area: compose;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import ComposeBox from '../../_components/compose/ComposeBox.html'
|
|
|
|
import { store } from '../../_store/store'
|
2018-04-06 02:57:36 +02:00
|
|
|
import debounce from 'lodash-es/debounce'
|
|
|
|
import throttle from 'lodash-es/throttle'
|
2018-04-09 00:08:32 +02:00
|
|
|
import { on } from '../../_utils/eventBus'
|
2018-03-30 17:43:36 +02:00
|
|
|
|
|
|
|
const DEBOUNCE_DELAY = 400
|
|
|
|
const THROTTLE_DELAY = 150
|
2018-03-30 10:06:17 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
oncreate() {
|
2018-04-09 00:08:32 +02:00
|
|
|
on('postedStatus', this, this.onPostedStatus)
|
|
|
|
this.setupRecalculateHeightListener()
|
2018-03-30 10:06:17 +02:00
|
|
|
},
|
|
|
|
store: () => store,
|
|
|
|
computed: {
|
2018-03-30 19:04:35 +02:00
|
|
|
composeData: ($currentComposeData, originalStatusId) => $currentComposeData[originalStatusId] || {}
|
2018-03-30 10:06:17 +02:00
|
|
|
},
|
|
|
|
methods: {
|
2018-04-09 00:08:32 +02:00
|
|
|
onPostedStatus(realm) {
|
|
|
|
if (realm !== this.get('originalStatusId')) {
|
|
|
|
return
|
|
|
|
}
|
2018-03-30 10:06:17 +02:00
|
|
|
requestAnimationFrame(() => {
|
|
|
|
let uuid = this.get('uuid')
|
|
|
|
let $repliesShown = this.store.get('repliesShown')
|
|
|
|
$repliesShown[uuid] = false
|
|
|
|
this.store.set({'repliesShown': $repliesShown})
|
|
|
|
this.fire('recalculateHeight')
|
|
|
|
})
|
2018-04-09 00:08:32 +02:00
|
|
|
},
|
|
|
|
setupRecalculateHeightListener() {
|
|
|
|
const recalc = () => requestAnimationFrame(() => this.fire('recalculateHeight'))
|
|
|
|
// debounce AND throttle due to 333ms content warning animation
|
|
|
|
const debounced = debounce(recalc, DEBOUNCE_DELAY)
|
|
|
|
const throttled = throttle(() => {
|
|
|
|
debounced()
|
|
|
|
recalc()
|
|
|
|
}, THROTTLE_DELAY, {
|
|
|
|
leading: true,
|
|
|
|
trailing: true
|
|
|
|
})
|
|
|
|
this.observe('composeData', throttled)
|
2018-03-30 10:06:17 +02:00
|
|
|
}
|
2018-04-09 00:08:32 +02:00
|
|
|
},
|
|
|
|
components: {
|
|
|
|
ComposeBox
|
2018-03-30 10:06:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|