2018-03-03 22:51:48 +00:00
|
|
|
<span class="compose-box-length {{textOverLimit ? 'over-char-limit' : ''}}"
|
|
|
|
aria-label="{{lengthLabel}}">
|
|
|
|
{{lengthToDisplayAfterRaf || '0'}}
|
2018-02-27 05:50:03 +00: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 { CHAR_LIMIT } from '../../_static/statuses'
|
|
|
|
import { mark, stop } from '../../_utils/marks'
|
2018-02-27 06:22:56 +00:00
|
|
|
import { store } from '../../_store/store'
|
2018-02-27 05:50:03 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
oncreate() {
|
2018-02-27 06:22:56 +00:00
|
|
|
// perf improvement for keyboard input latency
|
2018-03-03 22:51:48 +00:00
|
|
|
this.observe('lengthToDisplay', lengthToDisplay => {
|
2018-02-27 05:50:03 +00:00
|
|
|
requestAnimationFrame(() => {
|
2018-03-03 22:51:48 +00:00
|
|
|
mark('set lengthToDisplayAfterRaf')
|
|
|
|
this.set({lengthToDisplayAfterRaf: lengthToDisplay})
|
|
|
|
stop('set lengthToDisplayAfterRaf')
|
2018-02-27 05:50:03 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
2018-02-27 06:22:56 +00:00
|
|
|
store: () => store,
|
2018-02-27 05:50:03 +00:00
|
|
|
computed: {
|
2018-03-03 22:51:48 +00:00
|
|
|
lengthToDisplay: (textLength) => {
|
|
|
|
return CHAR_LIMIT - textLength
|
2018-02-27 06:22:56 +00:00
|
|
|
},
|
2018-03-03 22:51:48 +00:00
|
|
|
lengthLabel: (textOverLimit, lengthToDisplay) => {
|
|
|
|
if (textOverLimit) {
|
|
|
|
return `${lengthToDisplay} characters over limit`
|
2018-02-27 05:50:03 +00:00
|
|
|
} else {
|
2018-03-03 22:51:48 +00:00
|
|
|
return `${lengthToDisplay} characters remaining`
|
2018-02-27 05:50:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|