<span class="compose-box-length {{$rawComposeTextOverLimit ? 'over-char-limit' : ''}}"
      aria-label="{{inputLengthLabel}}">
      {{inputLengthToDisplayAfterRaf || '0'}}
    </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'
  import { store } from '../../_store/store'

  export default {
    oncreate() {
      // perf improvement for keyboard input latency
      this.observe('inputLengthToDisplay', inputLengthToDisplay => {
        requestAnimationFrame(() => {
          mark('set inputLengthToDisplayAfterRaf')
          this.set({inputLengthToDisplayAfterRaf: inputLengthToDisplay})
          stop('set inputLengthToDisplayAfterRaf')
        })
      })
    },
    store: () => store,
    computed: {
      inputLengthToDisplay: ($rawComposeTextLength) => {
        return CHAR_LIMIT - $rawComposeTextLength
      },
      inputLengthLabel: ($rawComposeTextOverLimit, inputLengthToDisplay) => {
        if ($rawComposeTextOverLimit) {
          return `${inputLengthToDisplay} characters over limit`
        } else {
          return `${inputLengthToDisplay} characters remaining`
        }
      }
    }
  }
</script>