mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
58b635203c
Closes #3105, Closes #3175 - Removed notification on successful post's `page` status change - Removed notification on successful post `featured` status change - Added `closePassive()` notifications on error in the post-settings-menu - Persistent notifications will close whether their `DELETE` request was successful or not. #### Misc - Added `name` attribute to `post-setting-menu.hbs` inputs to facilitate testing - Removed `return <Promise>` from action in `PostSettingsMenuController`. Actions should only return `true` - Toggling `post.featured` won't fire NProgress.
110 lines
3.2 KiB
JavaScript
110 lines
3.2 KiB
JavaScript
import Notification from 'ghost/models/notification';
|
|
|
|
var Notifications = Ember.ArrayProxy.extend({
|
|
delayedNotifications: [],
|
|
content: Ember.A(),
|
|
timeout: 3000,
|
|
|
|
pushObject: function (object) {
|
|
// object can be either a DS.Model or a plain JS object, so when working with
|
|
// it, we need to handle both cases.
|
|
|
|
// make sure notifications have all the necessary properties set.
|
|
if (typeof object.toJSON === 'function') {
|
|
// working with a DS.Model
|
|
|
|
if (object.get('location') === '') {
|
|
object.set('location', 'bottom');
|
|
}
|
|
}
|
|
else {
|
|
if (!object.location) {
|
|
object.location = 'bottom';
|
|
}
|
|
}
|
|
|
|
this._super(object);
|
|
},
|
|
handleNotification: function (message, delayed) {
|
|
if (!message.status) {
|
|
message.status = 'passive';
|
|
}
|
|
|
|
if (!delayed) {
|
|
this.pushObject(message);
|
|
} else {
|
|
this.delayedNotifications.push(message);
|
|
}
|
|
},
|
|
showError: function (message, delayed) {
|
|
this.handleNotification({
|
|
type: 'error',
|
|
message: message
|
|
}, delayed);
|
|
},
|
|
showErrors: function (errors) {
|
|
for (var i = 0; i < errors.length; i += 1) {
|
|
this.showError(errors[i].message || errors[i]);
|
|
}
|
|
},
|
|
showAPIError: function (resp, defaultErrorText, delayed) {
|
|
defaultErrorText = defaultErrorText || 'There was a problem on the server, please try again.';
|
|
|
|
if (resp && resp.jqXHR && resp.jqXHR.responseJSON && resp.jqXHR.responseJSON.error) {
|
|
this.showError(resp.jqXHR.responseJSON.error, delayed);
|
|
} else {
|
|
this.showError(defaultErrorText, delayed);
|
|
}
|
|
},
|
|
showInfo: function (message, delayed) {
|
|
this.handleNotification({
|
|
type: 'info',
|
|
message: message
|
|
}, delayed);
|
|
},
|
|
showSuccess: function (message, delayed) {
|
|
this.handleNotification({
|
|
type: 'success',
|
|
message: message
|
|
}, delayed);
|
|
},
|
|
// @Todo this function isn't referenced anywhere. Should it be removed?
|
|
showWarn: function (message, delayed) {
|
|
this.handleNotification({
|
|
type: 'warn',
|
|
message: message
|
|
}, delayed);
|
|
},
|
|
displayDelayed: function () {
|
|
var self = this;
|
|
|
|
self.delayedNotifications.forEach(function (message) {
|
|
self.pushObject(message);
|
|
});
|
|
self.delayedNotifications = [];
|
|
},
|
|
closeNotification: function (notification) {
|
|
var self = this;
|
|
|
|
if (notification instanceof Notification) {
|
|
notification.deleteRecord();
|
|
notification.save().finally(function () {
|
|
self.removeObject(notification);
|
|
});
|
|
} else {
|
|
this.removeObject(notification);
|
|
}
|
|
},
|
|
closePassive: function () {
|
|
this.set('content', this.rejectBy('status', 'passive'));
|
|
},
|
|
closePersistent: function () {
|
|
this.set('content', this.rejectBy('status', 'persistent'));
|
|
},
|
|
closeAll: function () {
|
|
this.clear();
|
|
}
|
|
});
|
|
|
|
export default Notifications;
|