pinafore/routes/_components/status/StatusComposeBox.html

62 lines
1.7 KiB
HTML
Raw Normal View History

2018-03-30 10:06:17 +02:00
<div class="status-article-compose-box">
<ComposeBox realm="{{originalStatusId}}"
size="slim"
autoFocus="true"
hideBottomBorder="true"
2018-03-30 19:04:35 +02:00
replyVisibility="{{visibility}}"
2018-03-30 10:06:17 +02:00
on:postedStatus="onPostedStatus()"
/>
</div>
<style>
.status-article-compose-box {
grid-area: compose;
2018-03-30 17:43:36 +02:00
background: var(--main-bg);
2018-03-30 10:06:17 +02:00
}
</style>
<script>
import ComposeBox from '../../_components/compose/ComposeBox.html'
import { store } from '../../_store/store'
2018-03-30 17:43:36 +02:00
import debounce from 'lodash/debounce'
import throttle from 'lodash/throttle'
const DEBOUNCE_DELAY = 400
const THROTTLE_DELAY = 150
2018-03-30 10:06:17 +02:00
export default {
oncreate() {
2018-03-30 17:43:36 +02:00
const recalc = () => {
requestAnimationFrame(() => {
2018-03-30 10:06:17 +02:00
this.fire('recalculateHeight')
})
2018-03-30 17:43:36 +02:00
}
// 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
},
components: {
ComposeBox
},
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: {
onPostedStatus() {
requestAnimationFrame(() => {
let uuid = this.get('uuid')
let $repliesShown = this.store.get('repliesShown')
$repliesShown[uuid] = false
this.store.set({'repliesShown': $repliesShown})
this.fire('recalculateHeight')
})
}
}
}
</script>