pinafore/routes/_store/statusComputations.js

14 lines
409 B
JavaScript
Raw Normal View History

2018-02-27 06:22:56 +00:00
import { CHAR_LIMIT } from '../_static/statuses'
export function statusComputations (store) {
store.compute('rawInputTextInComposeLength',
['rawInputTextInCompose'],
(rawInputTextInCompose) => rawInputTextInCompose.length
)
store.compute('rawInputTextInComposeOverLimit',
['rawInputTextInComposeLength'],
(rawInputTextInComposeLength) => rawInputTextInComposeLength > CHAR_LIMIT
)
}