Ghost/core/client/app/components/gh-notification.js

51 lines
1.3 KiB
JavaScript
Raw Normal View History

2015-02-13 07:22:32 +03:00
import Ember from 'ember';
export default Ember.Component.extend({
2015-05-21 20:03:24 +03:00
tagName: 'article',
classNames: ['gh-notification', 'gh-notification-passive'],
2015-05-21 20:03:24 +03:00
classNameBindings: ['typeClass'],
message: null,
notifications: Ember.inject.service(),
typeClass: Ember.computed(function () {
var classes = '',
message = this.get('message'),
type = Ember.get(message, 'type'),
typeMapping;
typeMapping = {
success: 'green',
error: 'red',
warn: 'yellow'
};
if (typeMapping[type] !== undefined) {
classes += 'gh-notification-' + typeMapping[type];
}
return classes;
}),
didInsertElement: function () {
var self = this;
self.$().on('animationend webkitAnimationEnd oanimationend MSAnimationEnd', function (event) {
if (event.originalEvent.animationName === 'fade-out') {
self.get('notifications').closeNotification(self.get('message'));
}
});
},
willDestroyElement: function () {
this.$().off('animationend webkitAnimationEnd oanimationend MSAnimationEnd');
},
actions: {
closeNotification: function () {
this.get('notifications').closeNotification(this.get('message'));
}
}
});