mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
2f4f6db133
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
const {Component, computed, inject} = Ember;
|
|
|
|
export default Component.extend({
|
|
tagName: 'article',
|
|
classNames: ['gh-notification', 'gh-notification-passive'],
|
|
classNameBindings: ['typeClass'],
|
|
|
|
message: null,
|
|
|
|
notifications: inject.service(),
|
|
|
|
typeClass: computed('message.type', function () {
|
|
let type = this.get('message.type');
|
|
let classes = '';
|
|
let typeMapping;
|
|
|
|
typeMapping = {
|
|
success: 'green',
|
|
error: 'red',
|
|
warn: 'yellow'
|
|
};
|
|
|
|
if (typeMapping[type] !== undefined) {
|
|
classes += `gh-notification-${typeMapping[type]}`;
|
|
}
|
|
|
|
return classes;
|
|
}),
|
|
|
|
didInsertElement() {
|
|
this.$().on('animationend webkitAnimationEnd oanimationend MSAnimationEnd', (event) => {
|
|
if (event.originalEvent.animationName === 'fade-out') {
|
|
this.get('notifications').closeNotification(this.get('message'));
|
|
}
|
|
});
|
|
},
|
|
|
|
willDestroyElement() {
|
|
this.$().off('animationend webkitAnimationEnd oanimationend MSAnimationEnd');
|
|
},
|
|
|
|
actions: {
|
|
closeNotification() {
|
|
this.get('notifications').closeNotification(this.get('message'));
|
|
}
|
|
}
|
|
});
|