9adbcd1fd0
no issue Automated tools, code generators, and editor integrations are increasingly standardising on the import style used in `ember-modules-codemod`. Our import style differed a little with regards to service/controller injection imports which meant we were starting to see inconsistent naming.
18 lines
481 B
JavaScript
18 lines
481 B
JavaScript
import Component from '@ember/component';
|
|
import {alias} from '@ember/object/computed';
|
|
import {observer} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default Component.extend({
|
|
tagName: 'aside',
|
|
classNames: 'gh-alerts',
|
|
|
|
notifications: service(),
|
|
|
|
messages: alias('notifications.alerts'),
|
|
|
|
messageCountObserver: observer('messages.[]', function () {
|
|
this.sendAction('notify', this.get('messages').length);
|
|
})
|
|
});
|