2018-05-01 17:05:36 -07:00
|
|
|
<span class="compose-box-length {overLimit ? 'over-char-limit' : ''}"
|
|
|
|
aria-label={lengthLabel}>
|
|
|
|
{lengthToDisplayDeferred}
|
2018-02-26 21:50:03 -08:00
|
|
|
</span>
|
|
|
|
<style>
|
|
|
|
.compose-box-length {
|
|
|
|
grid-area: length;
|
|
|
|
justify-self: right;
|
|
|
|
color: var(--main-theme-color);
|
|
|
|
font-size: 1.3em;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-box-length.over-char-limit {
|
|
|
|
color: var(--warning-color);
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import { mark, stop } from '../../_utils/marks'
|
2018-02-26 22:22:56 -08:00
|
|
|
import { store } from '../../_store/store'
|
2018-03-12 20:18:34 -07:00
|
|
|
import { scheduleIdleTask } from '../../_utils/scheduleIdleTask'
|
2018-04-30 08:29:04 -07:00
|
|
|
import { observe } from 'svelte-extras'
|
2018-02-26 21:50:03 -08:00
|
|
|
|
|
|
|
export default {
|
2018-04-19 21:38:01 -07:00
|
|
|
oncreate () {
|
2018-04-19 09:37:05 -07:00
|
|
|
let { lengthToDisplay } = this.get()
|
2018-08-29 21:42:57 -07:00
|
|
|
this.set({ lengthToDisplayDeferred: lengthToDisplay })
|
2018-02-26 22:22:56 -08:00
|
|
|
// perf improvement for keyboard input latency
|
2018-03-12 20:18:34 -07:00
|
|
|
this.observe('lengthToDisplay', () => {
|
|
|
|
scheduleIdleTask(() => {
|
|
|
|
mark('set lengthToDisplayDeferred')
|
2018-05-04 20:09:20 -07:00
|
|
|
let { lengthToDisplay } = this.get()
|
2018-08-29 21:42:57 -07:00
|
|
|
this.set({ lengthToDisplayDeferred: lengthToDisplay })
|
2018-03-12 20:18:34 -07:00
|
|
|
stop('set lengthToDisplayDeferred')
|
2018-02-26 21:50:03 -08:00
|
|
|
})
|
2018-08-29 21:42:57 -07:00
|
|
|
}, { init: false })
|
2018-02-26 21:50:03 -08:00
|
|
|
},
|
2018-04-29 22:13:41 -07:00
|
|
|
data: () => ({
|
|
|
|
lengthToDisplayDeferred: 0
|
|
|
|
}),
|
2018-02-26 22:22:56 -08:00
|
|
|
store: () => store,
|
2018-02-26 21:50:03 -08:00
|
|
|
computed: {
|
2018-08-26 12:14:16 -07:00
|
|
|
lengthToDisplay: ({ length, $maxStatusChars }) => $maxStatusChars - length,
|
2018-05-01 17:05:36 -07:00
|
|
|
lengthLabel: ({ overLimit, lengthToDisplayDeferred }) => {
|
2018-03-03 16:12:48 -08:00
|
|
|
if (overLimit) {
|
2018-03-12 20:18:34 -07:00
|
|
|
return `${lengthToDisplayDeferred} characters over limit`
|
2018-02-26 21:50:03 -08:00
|
|
|
} else {
|
2018-03-12 20:18:34 -07:00
|
|
|
return `${lengthToDisplayDeferred} characters remaining`
|
2018-02-26 21:50:03 -08:00
|
|
|
}
|
|
|
|
}
|
2018-04-30 08:29:04 -07:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
observe
|
2018-02-26 21:50:03 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|