mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
23 lines
441 B
JavaScript
23 lines
441 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {
|
|
Component,
|
|
computed,
|
|
inject: {service},
|
|
observer
|
|
} = Ember;
|
|
const {alias} = computed;
|
|
|
|
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);
|
|
})
|
|
});
|