mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
96 lines
3.1 KiB
JavaScript
96 lines
3.1 KiB
JavaScript
'use strict';
|
|
define(['Commands/CommandController', 'Shared/Messenger'],
|
|
function(CommandController, Messenger) {
|
|
return {
|
|
ExecuteCommand: function (options) {
|
|
options.iconClass = this._getIconClass(options.element);
|
|
|
|
this._showStartMessage(options);
|
|
this._setSpinnerOnElement(options);
|
|
|
|
var promise = CommandController.Execute(options.command, options.properties);
|
|
this._handlePromise(promise, options);
|
|
},
|
|
|
|
SaveModel: function (options) {
|
|
options.iconClass = this._getIconClass(options.element);
|
|
|
|
this._showStartMessage(options);
|
|
this._setSpinnerOnElement(options);
|
|
|
|
var promise = options.context.model.save();
|
|
this._handlePromise(promise, options);
|
|
},
|
|
|
|
_handlePromise: function (promise, options) {
|
|
promise.done(function () {
|
|
if (options.successMessage) {
|
|
Messenger.show({
|
|
message: options.successMessage
|
|
});
|
|
}
|
|
|
|
if (options.onSuccess) {
|
|
options.onSuccess.call(options.context);
|
|
}
|
|
});
|
|
|
|
promise.fail(function (ajaxOptions) {
|
|
if (ajaxOptions.readyState === 0 || ajaxOptions.status === 0) {
|
|
return;
|
|
}
|
|
|
|
if (options.failMessage) {
|
|
Messenger.show({
|
|
message: options.failMessage,
|
|
type : 'error'
|
|
});
|
|
}
|
|
|
|
if (options.onError) {
|
|
options.onError.call(options.context);
|
|
}
|
|
});
|
|
|
|
promise.always(function () {
|
|
|
|
if (options.leaveIcon) {
|
|
options.element.removeClass('icon-spin');
|
|
}
|
|
|
|
else {
|
|
options.element.addClass(options.iconClass);
|
|
options.element.removeClass('icon-nd-spinner');
|
|
}
|
|
|
|
if (options.always) {
|
|
options.always.call(options.context);
|
|
}
|
|
});
|
|
},
|
|
|
|
_getIconClass: function(element) {
|
|
return element.attr('class').match(/(?:^|\s)icon\-.+?(?:$|\s)/)[0];
|
|
},
|
|
|
|
_setSpinnerOnElement: function (options) {
|
|
if (options.leaveIcon) {
|
|
options.element.addClass('icon-spin');
|
|
}
|
|
|
|
else {
|
|
options.element.removeClass(options.iconClass);
|
|
options.element.addClass('icon-nd-spinner');
|
|
}
|
|
},
|
|
|
|
_showStartMessage: function (options) {
|
|
if (options.startMessage) {
|
|
Messenger.show({
|
|
message: options.startMessage
|
|
});
|
|
}
|
|
}
|
|
}
|
|
});
|