mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 04:08:34 +03:00
19 lines
576 B
JavaScript
19 lines
576 B
JavaScript
|
import Ember from 'ember';
|
||
|
var AlertsComponent = Ember.Component.extend({
|
||
|
tagName: 'aside',
|
||
|
classNames: 'gh-alerts',
|
||
|
|
||
|
messages: Ember.computed.filter('notifications', function (notification) {
|
||
|
var displayStatus = (typeof notification.toJSON === 'function') ?
|
||
|
notification.get('status') : notification.status;
|
||
|
|
||
|
return displayStatus === 'persistent';
|
||
|
}),
|
||
|
|
||
|
messageCountObserver: Ember.observer('messages.[]', function () {
|
||
|
this.sendAction('notify', this.get('messages').length);
|
||
|
})
|
||
|
});
|
||
|
|
||
|
export default AlertsComponent;
|