mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-01 07:16:52 +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
24 lines
499 B
JavaScript
24 lines
499 B
JavaScript
import Component from '@ember/component';
|
|
import {htmlSafe} from '@ember/string';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
|
|
// Public attributes
|
|
percentage: 0,
|
|
isError: false,
|
|
|
|
// Internal attributes
|
|
progressStyle: '',
|
|
|
|
didReceiveAttrs() {
|
|
this._super(...arguments);
|
|
|
|
let percentage = this.get('percentage');
|
|
let width = (percentage > 0) ? `${percentage}%` : '0';
|
|
|
|
this.set('progressStyle', htmlSafe(`width: ${width}`));
|
|
}
|
|
|
|
});
|