mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
73be0780b9
Refs #3160 - gh-notifications component now takes an optional notify parameter. If present it will be invoked as an action when a notification is added or removed. - Add a data-notification-count attribute to the main container that tracks the number of "top" notification messages that are currently being shown.
25 lines
812 B
JavaScript
25 lines
812 B
JavaScript
var NotificationsComponent = Ember.Component.extend({
|
|
tagName: 'aside',
|
|
classNames: 'notifications',
|
|
classNameBindings: ['location'],
|
|
|
|
messages: Ember.computed.filter('notifications', function (notification) {
|
|
// If this instance of the notifications component has no location affinity
|
|
// then it gets all notifications
|
|
if (!this.get('location')) {
|
|
return true;
|
|
}
|
|
|
|
var displayLocation = (typeof notification.toJSON === 'function') ?
|
|
notification.get('location') : notification.location;
|
|
|
|
return this.get('location') === displayLocation;
|
|
}),
|
|
|
|
messageCountObserver: function () {
|
|
this.sendAction('notify', this.get('messages').length);
|
|
}.observes('messages.[]')
|
|
});
|
|
|
|
export default NotificationsComponent;
|