0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/client/app/components/gh-alerts.js
2016-01-19 07:03:27 -06:00

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