Ghost/core/client/app/components/gh-alerts.js
2016-01-19 07:03:27 -06:00

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);
})
});