2013-06-22 06:24:24 +00:00
|
|
|
'use strict';
|
2013-06-19 01:02:23 +00:00
|
|
|
define(function () {
|
|
|
|
return {
|
2013-05-11 23:39:32 +00:00
|
|
|
show: function (options) {
|
|
|
|
|
|
|
|
if (!options.type) {
|
|
|
|
options.type = 'info';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!options.hideAfter) {
|
|
|
|
switch (options.type) {
|
|
|
|
case 'info':
|
|
|
|
options.hideAfter = 5;
|
|
|
|
break;
|
2013-06-19 04:27:41 +00:00
|
|
|
|
|
|
|
default :
|
2013-05-11 23:39:32 +00:00
|
|
|
options.hideAfter = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return window.Messenger().post({
|
|
|
|
message : options.message,
|
|
|
|
type : options.type,
|
|
|
|
showCloseButton: true,
|
|
|
|
hideAfter : options.hideAfter
|
|
|
|
});
|
2013-06-19 04:27:41 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
monitor: function (options) {
|
|
|
|
|
|
|
|
if (!options.promise) {
|
|
|
|
throw 'promise is required';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!options.successMessage) {
|
|
|
|
throw 'success message is required';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!options.errorMessage) {
|
|
|
|
throw 'error message is required';
|
|
|
|
}
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
options.promise.done(function () {
|
|
|
|
self.show({message: options.successMessage});
|
|
|
|
});
|
|
|
|
|
|
|
|
options.promise.fail(function () {
|
|
|
|
self.show({message: options.errorMessage, type: 'error'});
|
|
|
|
});
|
|
|
|
|
|
|
|
return options.promise;
|
|
|
|
}
|
|
|
|
};
|
2013-05-11 23:39:32 +00:00
|
|
|
});
|
2013-06-19 04:27:41 +00:00
|
|
|
|