mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
4b5f538552
no issue - updating toaster design for better discoverability
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
import Component from '@ember/component';
|
|
import {computed} from '@ember/object';
|
|
import {run} from '@ember/runloop';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default Component.extend({
|
|
notifications: service(),
|
|
|
|
tagName: 'article',
|
|
classNames: ['gh-notification', 'gh-notification-passive'],
|
|
classNameBindings: ['typeClass'],
|
|
|
|
message: null,
|
|
|
|
typeClass: computed('message.type', function () {
|
|
let type = this.get('message.type');
|
|
let classes = '';
|
|
let typeMapping;
|
|
|
|
typeMapping = {
|
|
error: 'red',
|
|
warn: 'yellow'
|
|
};
|
|
|
|
if (typeMapping[type] !== undefined) {
|
|
classes += `gh-notification-${typeMapping[type]}`;
|
|
}
|
|
|
|
return classes;
|
|
}),
|
|
|
|
didInsertElement() {
|
|
this._super(...arguments);
|
|
|
|
this._animationEndHandler = run.bind(this, function () {
|
|
if (event.animationName === 'fade-out') {
|
|
this.notifications.closeNotification(this.message);
|
|
}
|
|
});
|
|
|
|
this.element.addEventListener('animationend', this._animationEndHandler);
|
|
},
|
|
|
|
willDestroyElement() {
|
|
this._super(...arguments);
|
|
this.element.removeEventListener('animationend', this._animationEndHandler);
|
|
},
|
|
|
|
actions: {
|
|
closeNotification() {
|
|
this.notifications.closeNotification(this.message);
|
|
}
|
|
}
|
|
});
|