mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
32 lines
784 B
JavaScript
32 lines
784 B
JavaScript
import {helper} from '@ember/component/helper';
|
|
import {htmlSafe} from '@ember/string';
|
|
|
|
export function countDownCharacters(params) {
|
|
if (!params || params.length < 2) {
|
|
return;
|
|
}
|
|
|
|
let el = document.createElement('span');
|
|
let [content, maxCharacters] = params;
|
|
|
|
// convert to array so that we get accurate symbol counts for multibyte chars
|
|
// this will still count emoji+modifer as two chars
|
|
let {length} = Array.from(content || '');
|
|
|
|
el.className = 'word-count';
|
|
|
|
if (length > maxCharacters) {
|
|
el.style.color = '#E25440';
|
|
} else {
|
|
el.style.color = '#9FBB58';
|
|
}
|
|
|
|
el.innerHTML = length;
|
|
|
|
return htmlSafe(el.outerHTML);
|
|
}
|
|
|
|
export default helper(function (params) {
|
|
return countDownCharacters(params);
|
|
});
|