parent
44928c8f64
commit
70bfad4e6a
@ -1,4 +1,6 @@
|
||||
var vent = require('vent');
|
||||
var Marionette = require('marionette');
|
||||
|
||||
module.exports = Marionette.ItemView.extend({template : 'Hotkeys/HotkeysViewTemplate'});
|
||||
module.exports = Marionette.ItemView.extend({
|
||||
template : 'Hotkeys/HotkeysViewTemplate'
|
||||
});
|
@ -1,69 +1,86 @@
|
||||
var $ = require('jquery');
|
||||
var Messenger = require('messenger');
|
||||
|
||||
module.exports = (function(){
|
||||
'use strict';
|
||||
window.alert = function(message){
|
||||
new Messenger().post(message);
|
||||
};
|
||||
var addError = function(message){
|
||||
$('#errors').append('<div>' + message + '</div>');
|
||||
};
|
||||
window.onerror = function(msg, url, line){
|
||||
try {
|
||||
var a = document.createElement('a');
|
||||
a.href = url;
|
||||
var filename = a.pathname.split('/').pop();
|
||||
if(filename.toLowerCase() === 'markupview.jsm' || filename.toLowerCase() === 'markup-view.js') {
|
||||
return false;
|
||||
}
|
||||
var messageText = filename + ' : ' + line + '</br>' + msg;
|
||||
var message = {
|
||||
message : messageText,
|
||||
type : 'error',
|
||||
hideAfter : 1000,
|
||||
showCloseButton : true
|
||||
};
|
||||
new Messenger().post(message);
|
||||
addError(message.message);
|
||||
}
|
||||
catch (error) {
|
||||
console.log('An error occurred while reporting error. ' + error);
|
||||
console.log(msg);
|
||||
new Messenger().post('Couldn\'t report JS error. ' + msg);
|
||||
}
|
||||
return false;
|
||||
};
|
||||
window.alert = function(message) {
|
||||
new Messenger().post(message);
|
||||
};
|
||||
|
||||
$(document).ajaxError(function(event, xmlHttpRequest, ajaxOptions){
|
||||
if(xmlHttpRequest.status >= 200 && xmlHttpRequest.status <= 300) {
|
||||
return undefined;
|
||||
}
|
||||
if(xmlHttpRequest.statusText === 'abort') {
|
||||
return undefined;
|
||||
var addError = function(message) {
|
||||
$('#errors').append('<div>' + message + '</div>');
|
||||
};
|
||||
|
||||
window.onerror = function(msg, url, line) {
|
||||
|
||||
try {
|
||||
|
||||
var a = document.createElement('a');
|
||||
a.href = url;
|
||||
var filename = a.pathname.split('/').pop();
|
||||
|
||||
//Suppress Firefox debug errors when console window is closed
|
||||
if (filename.toLowerCase() === 'markupview.jsm' || filename.toLowerCase() === 'markup-view.js') {
|
||||
return false;
|
||||
}
|
||||
|
||||
var messageText = filename + ' : ' + line + '</br>' + msg;
|
||||
|
||||
var message = {
|
||||
message : messageText,
|
||||
type : 'error',
|
||||
hideAfter : 1000,
|
||||
showCloseButton : true
|
||||
};
|
||||
if(xmlHttpRequest.status === 0 && xmlHttpRequest.readyState === 0) {
|
||||
return false;
|
||||
}
|
||||
if(xmlHttpRequest.status === 400 && ajaxOptions.isValidatedCall) {
|
||||
return false;
|
||||
}
|
||||
if(xmlHttpRequest.status === 503) {
|
||||
message.message = xmlHttpRequest.responseJSON.message;
|
||||
}
|
||||
if(xmlHttpRequest.status === 409) {
|
||||
message.message = xmlHttpRequest.responseJSON.message;
|
||||
}
|
||||
else {
|
||||
message.message = '[{0}] {1} : {2}'.format(ajaxOptions.type, xmlHttpRequest.statusText, ajaxOptions.url);
|
||||
}
|
||||
|
||||
new Messenger().post(message);
|
||||
|
||||
addError(message.message);
|
||||
|
||||
}
|
||||
catch (error) {
|
||||
console.log('An error occurred while reporting error. ' + error);
|
||||
console.log(msg);
|
||||
new Messenger().post('Couldn\'t report JS error. ' + msg);
|
||||
}
|
||||
|
||||
return false; //don't suppress default alerts and logs.
|
||||
};
|
||||
|
||||
$(document).ajaxError(function(event, xmlHttpRequest, ajaxOptions) {
|
||||
|
||||
//don't report 200 error codes
|
||||
if (xmlHttpRequest.status >= 200 && xmlHttpRequest.status <= 300) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
//don't report aborted requests
|
||||
if (xmlHttpRequest.statusText === 'abort') {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
var message = {
|
||||
type : 'error',
|
||||
hideAfter : 1000,
|
||||
showCloseButton : true
|
||||
};
|
||||
|
||||
if (xmlHttpRequest.status === 0 && xmlHttpRequest.readyState === 0) {
|
||||
return false;
|
||||
});
|
||||
}).call(this);
|
||||
}
|
||||
|
||||
if (xmlHttpRequest.status === 400 && ajaxOptions.isValidatedCall) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (xmlHttpRequest.status === 503) {
|
||||
message.message = xmlHttpRequest.responseJSON.message;
|
||||
} else if (xmlHttpRequest.status === 409) {
|
||||
message.message = xmlHttpRequest.responseJSON.message;
|
||||
} else {
|
||||
message.message = '[{0}] {1} : {2}'.format(ajaxOptions.type, xmlHttpRequest.statusText, ajaxOptions.url);
|
||||
}
|
||||
|
||||
new Messenger().post(message);
|
||||
addError(message.message);
|
||||
|
||||
return false;
|
||||
});
|
@ -1,11 +1,12 @@
|
||||
'use strict';
|
||||
String.prototype.format = function(){
|
||||
|
||||
String.prototype.format = function() {
|
||||
var args = arguments;
|
||||
return this.replace(/{(\d+)}/g, function(match, number){
|
||||
if(typeof args[number] !== 'undefined') {
|
||||
|
||||
return this.replace(/{(\d+)}/g, function(match, number) {
|
||||
if (typeof args[number] !== 'undefined') {
|
||||
return args[number];
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
return match;
|
||||
}
|
||||
});
|
||||
|
@ -1,16 +1,22 @@
|
||||
module.exports = function(){
|
||||
module.exports = function() {
|
||||
var originalInit = this.prototype.initialize;
|
||||
this.prototype.initialize = function(){
|
||||
|
||||
this.prototype.initialize = function() {
|
||||
|
||||
this.isSaved = true;
|
||||
this.on('change', function(){
|
||||
|
||||
this.on('change', function() {
|
||||
this.isSaved = false;
|
||||
}, this);
|
||||
this.on('sync', function(){
|
||||
|
||||
this.on('sync', function() {
|
||||
this.isSaved = true;
|
||||
}, this);
|
||||
if(originalInit) {
|
||||
|
||||
if (originalInit) {
|
||||
originalInit.call(this);
|
||||
}
|
||||
};
|
||||
|
||||
return this;
|
||||
};
|
@ -1,75 +1,100 @@
|
||||
var AppLayout = require('../AppLayout');
|
||||
|
||||
module.exports = function(){
|
||||
module.exports = function() {
|
||||
var originalInitialize = this.prototype.initialize;
|
||||
var originalOnBeforeClose = this.prototype.onBeforeClose;
|
||||
var saveInternal = function(){
|
||||
|
||||
var saveInternal = function() {
|
||||
var self = this;
|
||||
this.ui.indicator.show();
|
||||
if(this._onBeforeSave) {
|
||||
|
||||
if (this._onBeforeSave) {
|
||||
this._onBeforeSave.call(this);
|
||||
}
|
||||
|
||||
var promise = this.model.save();
|
||||
promise.always(function(){
|
||||
if(!self.isClosed) {
|
||||
|
||||
promise.always(function() {
|
||||
if (!self.isClosed) {
|
||||
self.ui.indicator.hide();
|
||||
}
|
||||
});
|
||||
promise.done(function(){
|
||||
|
||||
promise.done(function() {
|
||||
self.originalModelData = JSON.stringify(self.model.toJSON());
|
||||
});
|
||||
|
||||
return promise;
|
||||
};
|
||||
this.prototype.initialize = function(options){
|
||||
if(!this.model) {
|
||||
|
||||
this.prototype.initialize = function(options) {
|
||||
|
||||
if (!this.model) {
|
||||
throw 'View has no model';
|
||||
}
|
||||
|
||||
this.originalModelData = JSON.stringify(this.model.toJSON());
|
||||
|
||||
this.events = this.events || {};
|
||||
this.events['click .x-save'] = '_save';
|
||||
this.events['click .x-save-and-add'] = '_saveAndAdd';
|
||||
this.events['click .x-test'] = '_test';
|
||||
this.events['click .x-delete'] = '_delete';
|
||||
|
||||
this.ui = this.ui || {};
|
||||
this.ui.indicator = '.x-indicator';
|
||||
if(originalInitialize) {
|
||||
|
||||
if (originalInitialize) {
|
||||
originalInitialize.call(this, options);
|
||||
}
|
||||
};
|
||||
this.prototype._save = function(){
|
||||
|
||||
this.prototype._save = function() {
|
||||
|
||||
var self = this;
|
||||
var promise = saveInternal.call(this);
|
||||
promise.done(function(){
|
||||
if(self._onAfterSave) {
|
||||
|
||||
promise.done(function() {
|
||||
if (self._onAfterSave) {
|
||||
self._onAfterSave.call(self);
|
||||
}
|
||||
});
|
||||
};
|
||||
this.prototype._saveAndAdd = function(){
|
||||
|
||||
this.prototype._saveAndAdd = function() {
|
||||
|
||||
var self = this;
|
||||
var promise = saveInternal.call(this);
|
||||
promise.done(function(){
|
||||
if(self._onAfterSaveAndAdd) {
|
||||
|
||||
promise.done(function() {
|
||||
if (self._onAfterSaveAndAdd) {
|
||||
self._onAfterSaveAndAdd.call(self);
|
||||
}
|
||||
});
|
||||
};
|
||||
this.prototype._test = function(){
|
||||
|
||||
this.prototype._test = function() {
|
||||
var self = this;
|
||||
|
||||
this.ui.indicator.show();
|
||||
this.model.test().always(function(){
|
||||
|
||||
this.model.test().always(function() {
|
||||
self.ui.indicator.hide();
|
||||
});
|
||||
};
|
||||
this.prototype._delete = function(){
|
||||
var view = new this._deleteView({model : this.model});
|
||||
|
||||
this.prototype._delete = function() {
|
||||
var view = new this._deleteView({ model : this.model });
|
||||
AppLayout.modalRegion.show(view);
|
||||
};
|
||||
this.prototype.onBeforeClose = function(){
|
||||
|
||||
this.prototype.onBeforeClose = function() {
|
||||
this.model.set(JSON.parse(this.originalModelData));
|
||||
if(originalOnBeforeClose) {
|
||||
|
||||
if (originalOnBeforeClose) {
|
||||
originalOnBeforeClose.call(this);
|
||||
}
|
||||
};
|
||||
|
||||
return this;
|
||||
};
|
||||
};
|
||||
|
@ -1,65 +1,70 @@
|
||||
var _ = require('underscore');
|
||||
var Backbone = require('backbone');
|
||||
|
||||
module.exports = function(){
|
||||
module.exports = function() {
|
||||
|
||||
this.prototype.setFilter = function(filter, options) {
|
||||
options = _.extend({ reset : true }, options || {});
|
||||
|
||||
this.prototype.setFilter = function(filter, options){
|
||||
options = _.extend({reset : true}, options || {});
|
||||
this.state.filterKey = filter[0];
|
||||
this.state.filterValue = filter[1];
|
||||
if(options.reset) {
|
||||
if(this.mode !== 'server') {
|
||||
|
||||
if (options.reset) {
|
||||
if (this.mode !== 'server') {
|
||||
this.fullCollection.resetFiltered();
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
return this.fetch();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
this.prototype.setFilterMode = function(mode, options){
|
||||
this.prototype.setFilterMode = function(mode, options) {
|
||||
return this.setFilter(this.filterModes[mode], options);
|
||||
};
|
||||
|
||||
var originalMakeFullCollection = this.prototype._makeFullCollection;
|
||||
|
||||
this.prototype._makeFullCollection = function(models, options){
|
||||
this.prototype._makeFullCollection = function(models, options) {
|
||||
var self = this;
|
||||
|
||||
self.shadowCollection = originalMakeFullCollection.call(this, models, options);
|
||||
var filterModel = function(model){
|
||||
if(!self.state.filterKey || !self.state.filterValue) {
|
||||
|
||||
var filterModel = function(model) {
|
||||
if (!self.state.filterKey || !self.state.filterValue) {
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
return model.get(self.state.filterKey) === self.state.filterValue;
|
||||
}
|
||||
};
|
||||
|
||||
self.shadowCollection.filtered = function(){
|
||||
self.shadowCollection.filtered = function() {
|
||||
return this.filter(filterModel);
|
||||
};
|
||||
|
||||
var filteredModels = self.shadowCollection.filtered();
|
||||
var fullCollection = originalMakeFullCollection.call(this, filteredModels, options);
|
||||
|
||||
fullCollection.resetFiltered = function(options){
|
||||
fullCollection.resetFiltered = function(options) {
|
||||
Backbone.Collection.prototype.reset.call(this, self.shadowCollection.filtered(), options);
|
||||
};
|
||||
|
||||
fullCollection.reset = function(models, options){
|
||||
fullCollection.reset = function(models, options) {
|
||||
self.shadowCollection.reset(models, options);
|
||||
self.fullCollection.resetFiltered();
|
||||
};
|
||||
|
||||
return fullCollection;
|
||||
};
|
||||
|
||||
_.extend(this.prototype.state, {
|
||||
filterKey : null,
|
||||
filterValue : null
|
||||
});
|
||||
|
||||
_.extend(this.prototype.queryParams, {
|
||||
filterKey : 'filterKey',
|
||||
filterValue : 'filterValue'
|
||||
});
|
||||
|
||||
return this;
|
||||
};
|
@ -1,35 +1,46 @@
|
||||
var ModelBinder = require('backbone.modelbinder');
|
||||
|
||||
module.exports = function(){
|
||||
module.exports = function() {
|
||||
|
||||
var originalOnRender = this.prototype.onRender;
|
||||
var originalBeforeClose = this.prototype.onBeforeClose;
|
||||
this.prototype.onRender = function(){
|
||||
if(!this.model) {
|
||||
|
||||
this.prototype.onRender = function() {
|
||||
|
||||
if (!this.model) {
|
||||
throw 'View has no model for binding';
|
||||
}
|
||||
if(!this._modelBinder) {
|
||||
|
||||
if (!this._modelBinder) {
|
||||
this._modelBinder = new ModelBinder();
|
||||
}
|
||||
|
||||
var options = {
|
||||
changeTriggers : {
|
||||
"" : 'change typeahead:selected typeahead:autocompleted',
|
||||
"[contenteditable]" : 'blur',
|
||||
"[data-onkeyup]" : 'keyup'
|
||||
'' : 'change typeahead:selected typeahead:autocompleted',
|
||||
'[contenteditable]' : 'blur',
|
||||
'[data-onkeyup]' : 'keyup'
|
||||
}
|
||||
};
|
||||
|
||||
this._modelBinder.bind(this.model, this.el, null, options);
|
||||
if(originalOnRender) {
|
||||
|
||||
if (originalOnRender) {
|
||||
originalOnRender.call(this);
|
||||
}
|
||||
};
|
||||
this.prototype.onBeforeClose = function(){
|
||||
if(this._modelBinder) {
|
||||
|
||||
this.prototype.onBeforeClose = function() {
|
||||
|
||||
if (this._modelBinder) {
|
||||
this._modelBinder.unbind();
|
||||
delete this._modelBinder;
|
||||
}
|
||||
if(originalBeforeClose) {
|
||||
|
||||
if (originalBeforeClose) {
|
||||
originalBeforeClose.call(this);
|
||||
}
|
||||
};
|
||||
|
||||
return this;
|
||||
};
|
||||
};
|
||||
|
@ -1,55 +1,72 @@
|
||||
var _ = require('underscore');
|
||||
var Config = require('../Config');
|
||||
|
||||
module.exports = function(){
|
||||
module.exports = function() {
|
||||
|
||||
var originalInit = this.prototype.initialize;
|
||||
this.prototype.initialize = function(options){
|
||||
this.prototype.initialize = function(options) {
|
||||
|
||||
options = options || {};
|
||||
if(options.tableName) {
|
||||
|
||||
if (options.tableName) {
|
||||
this.tableName = options.tableName;
|
||||
}
|
||||
if(!this.tableName && !options.tableName) {
|
||||
|
||||
if (!this.tableName && !options.tableName) {
|
||||
throw 'tableName is required';
|
||||
}
|
||||
|
||||
_setInitialState.call(this);
|
||||
|
||||
this.on('backgrid:sort', _storeStateFromBackgrid, this);
|
||||
this.on('drone:sort', _storeState, this);
|
||||
if(originalInit) {
|
||||
|
||||
if (originalInit) {
|
||||
originalInit.call(this, options);
|
||||
}
|
||||
};
|
||||
if(!this.prototype._getSortMapping) {
|
||||
this.prototype._getSortMapping = function(key){
|
||||
|
||||
if (!this.prototype._getSortMapping) {
|
||||
this.prototype._getSortMapping = function(key) {
|
||||
return {
|
||||
name : key,
|
||||
sortKey : key
|
||||
};
|
||||
};
|
||||
}
|
||||
var _setInitialState = function(){
|
||||
|
||||
var _setInitialState = function() {
|
||||
var key = Config.getValue('{0}.sortKey'.format(this.tableName), this.state.sortKey);
|
||||
var direction = Config.getValue('{0}.sortDirection'.format(this.tableName), this.state.order);
|
||||
var order = parseInt(direction, 10);
|
||||
|
||||
this.state.sortKey = this._getSortMapping(key).sortKey;
|
||||
this.state.order = order;
|
||||
};
|
||||
var _storeStateFromBackgrid = function(column, sortDirection){
|
||||
|
||||
var _storeStateFromBackgrid = function(column, sortDirection) {
|
||||
var order = _convertDirectionToInt(sortDirection);
|
||||
var sortKey = this._getSortMapping(column.get('name')).sortKey;
|
||||
|
||||
Config.setValue('{0}.sortKey'.format(this.tableName), sortKey);
|
||||
Config.setValue('{0}.sortDirection'.format(this.tableName), order);
|
||||
};
|
||||
var _storeState = function(sortModel, sortDirection){
|
||||
|
||||
var _storeState = function(sortModel, sortDirection) {
|
||||
var order = _convertDirectionToInt(sortDirection);
|
||||
var sortKey = this._getSortMapping(sortModel.get('name')).sortKey;
|
||||
|
||||
Config.setValue('{0}.sortKey'.format(this.tableName), sortKey);
|
||||
Config.setValue('{0}.sortDirection'.format(this.tableName), order);
|
||||
};
|
||||
var _convertDirectionToInt = function(dir){
|
||||
if(dir === 'ascending') {
|
||||
|
||||
var _convertDirectionToInt = function(dir) {
|
||||
if (dir === 'ascending') {
|
||||
return '-1';
|
||||
}
|
||||
|
||||
return '1';
|
||||
};
|
||||
|
||||
return this;
|
||||
};
|
||||
};
|
||||
|
@ -1,20 +1,24 @@
|
||||
module.exports = function(){
|
||||
this.prototype.appendHtml = function(collectionView, itemView, index){
|
||||
module.exports = function() {
|
||||
this.prototype.appendHtml = function(collectionView, itemView, index) {
|
||||
var childrenContainer = collectionView.itemViewContainer ? collectionView.$(collectionView.itemViewContainer) : collectionView.$el;
|
||||
var collection = collectionView.collection;
|
||||
if(index >= collection.size() - 1) {
|
||||
|
||||
// If the index of the model is at the end of the collection append, else insert at proper index
|
||||
if (index >= collection.size() - 1) {
|
||||
childrenContainer.append(itemView.el);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
var previousModel = collection.at(index + 1);
|
||||
var previousView = this.children.findByModel(previousModel);
|
||||
if(previousView) {
|
||||
|
||||
if (previousView) {
|
||||
previousView.$el.before(itemView.$el);
|
||||
}
|
||||
|
||||
else {
|
||||
childrenContainer.append(itemView.el);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
return this;
|
||||
};
|
@ -1,77 +1,93 @@
|
||||
var Validation = require('backbone.validation');
|
||||
var _ = require('underscore');
|
||||
|
||||
module.exports = (function(){
|
||||
module.exports = (function() {
|
||||
'use strict';
|
||||
return function(){
|
||||
return function() {
|
||||
|
||||
var originalInitialize = this.prototype.initialize;
|
||||
var originalOnRender = this.prototype.onRender;
|
||||
var originalBeforeClose = this.prototype.onBeforeClose;
|
||||
var errorHandler = function(response){
|
||||
if(this.model) {
|
||||
|
||||
var errorHandler = function(response) {
|
||||
if (this.model) {
|
||||
this.model.trigger('validation:failed', response);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
this.trigger('validation:failed', response);
|
||||
}
|
||||
};
|
||||
var validatedSync = function(method, model, options){
|
||||
|
||||
var validatedSync = function(method, model, options) {
|
||||
model.trigger('validation:sync');
|
||||
|
||||
arguments[2].isValidatedCall = true;
|
||||
return model._originalSync.apply(this, arguments).fail(errorHandler.bind(this));
|
||||
};
|
||||
var bindToModel = function(model){
|
||||
if(!model._originalSync) {
|
||||
|
||||
var bindToModel = function(model) {
|
||||
if (!model._originalSync) {
|
||||
model._originalSync = model.sync;
|
||||
model.sync = validatedSync.bind(this);
|
||||
}
|
||||
};
|
||||
var validationFailed = function(response){
|
||||
if(response.status === 400) {
|
||||
|
||||
var validationFailed = function(response) {
|
||||
if (response.status === 400) {
|
||||
var view = this;
|
||||
var validationErrors = JSON.parse(response.responseText);
|
||||
_.each(validationErrors, function(error){
|
||||
_.each(validationErrors, function(error) {
|
||||
view.$el.processServerError(error);
|
||||
});
|
||||
}
|
||||
};
|
||||
this.prototype.initialize = function(options){
|
||||
if(this.model) {
|
||||
this.listenTo(this.model, 'validation:sync', function(){
|
||||
|
||||
this.prototype.initialize = function(options) {
|
||||
if (this.model) {
|
||||
this.listenTo(this.model, 'validation:sync', function() {
|
||||
this.$el.removeAllErrors();
|
||||
});
|
||||
|
||||
this.listenTo(this.model, 'validation:failed', validationFailed);
|
||||
}
|
||||
else {
|
||||
this.listenTo(this, 'validation:sync', function(){
|
||||
} else {
|
||||
this.listenTo(this, 'validation:sync', function() {
|
||||
this.$el.removeAllErrors();
|
||||
});
|
||||
|
||||
this.listenTo(this, 'validation:failed', validationFailed);
|
||||
}
|
||||
if(originalInitialize) {
|
||||
|
||||
if (originalInitialize) {
|
||||
originalInitialize.call(this, options);
|
||||
}
|
||||
};
|
||||
this.prototype.onRender = function(){
|
||||
|
||||
this.prototype.onRender = function() {
|
||||
Validation.bind(this);
|
||||
this.bindToModelValidation = bindToModel.bind(this);
|
||||
if(this.model) {
|
||||
|
||||
if (this.model) {
|
||||
this.bindToModelValidation(this.model);
|
||||
}
|
||||
if(originalOnRender) {
|
||||
|
||||
if (originalOnRender) {
|
||||
originalOnRender.call(this);
|
||||
}
|
||||
};
|
||||
this.prototype.onBeforeClose = function(){
|
||||
if(this.model) {
|
||||
|
||||
this.prototype.onBeforeClose = function() {
|
||||
if (this.model) {
|
||||
Validation.unbind(this);
|
||||
|
||||
//If we don't do this the next time the model is used the sync is bound to an old view
|
||||
this.model.sync = this.model._originalSync;
|
||||
this.model._originalSync = undefined;
|
||||
}
|
||||
if(originalBeforeClose) {
|
||||
|
||||
if (originalBeforeClose) {
|
||||
originalBeforeClose.call(this);
|
||||
}
|
||||
};
|
||||
|
||||
return this;
|
||||
};
|
||||
}).call(this);
|
@ -1,49 +1,51 @@
|
||||
var $ = require('jquery');
|
||||
require('typeahead');
|
||||
|
||||
module.exports = (function(){
|
||||
$.fn.autoComplete = function(options){
|
||||
if(!options) {
|
||||
throw 'options are required';
|
||||
}
|
||||
if(!options.resource) {
|
||||
throw 'resource is required';
|
||||
}
|
||||
if(!options.query) {
|
||||
throw 'query is required';
|
||||
}
|
||||
$(this).typeahead({
|
||||
hint : true,
|
||||
highlight : true,
|
||||
minLength : 3,
|
||||
items : 20
|
||||
}, {
|
||||
name : options.resource.replace('/'),
|
||||
displayKey : '',
|
||||
source : function(filter, callback){
|
||||
var data = {};
|
||||
data[options.query] = filter;
|
||||
$.ajax({
|
||||
url : window.NzbDrone.ApiRoot + options.resource,
|
||||
dataType : 'json',
|
||||
type : 'GET',
|
||||
data : data,
|
||||
success : function(response){
|
||||
if(options.filter) {
|
||||
options.filter.call(this, filter, response, callback);
|
||||
}
|
||||
else {
|
||||
var matches = [];
|
||||
$.each(response, function(i, d){
|
||||
if(d[options.query] && d[options.property].startsWith(filter)) {
|
||||
matches.push({value : d[options.property]});
|
||||
}
|
||||
});
|
||||
callback(matches);
|
||||
}
|
||||
$.fn.autoComplete = function(options) {
|
||||
if (!options) {
|
||||
throw 'options are required';
|
||||
}
|
||||
|
||||
if (!options.resource) {
|
||||
throw 'resource is required';
|
||||
}
|
||||
|
||||
if (!options.query) {
|
||||
throw 'query is required';
|
||||
}
|
||||
|
||||
$(this).typeahead({
|
||||
hint : true,
|
||||
highlight : true,
|
||||
minLength : 3,
|
||||
items : 20
|
||||
}, {
|
||||
name : options.resource.replace('/'),
|
||||
displayKey : '',
|
||||
source : function(filter, callback) {
|
||||
var data = {};
|
||||
data[options.query] = filter;
|
||||
$.ajax({
|
||||
url : window.NzbDrone.ApiRoot + options.resource,
|
||||
dataType : 'json',
|
||||
type : 'GET',
|
||||
data : data,
|
||||
success : function(response) {
|
||||
if (options.filter) {
|
||||
options.filter.call(this, filter, response, callback);
|
||||
} else {
|
||||
var matches = [];
|
||||
|
||||
$.each(response, function(i, d) {
|
||||
if (d[options.query] && d[options.property].startsWith(filter)) {
|
||||
matches.push({ value : d[options.property] });
|
||||
}
|
||||
});
|
||||
|
||||
callback(matches);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
}).call(this);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
@ -1,21 +1,22 @@
|
||||
var $ = require('jquery');
|
||||
require('./AutoComplete');
|
||||
|
||||
module.exports = (function(){
|
||||
$.fn.directoryAutoComplete = function(){
|
||||
var query = 'path';
|
||||
$(this).autoComplete({
|
||||
resource : '/filesystem',
|
||||
query : query,
|
||||
filter : function(filter, response, callback){
|
||||
var matches = [];
|
||||
$.each(response.directories, function(i, d){
|
||||
if(d[query] && d[query].startsWith(filter)) {
|
||||
matches.push({value : d[query]});
|
||||
}
|
||||
});
|
||||
callback(matches);
|
||||
}
|
||||
});
|
||||
};
|
||||
}).call(this);
|
||||
$.fn.directoryAutoComplete = function() {
|
||||
var query = 'path';
|
||||
|
||||
$(this).autoComplete({
|
||||
resource : '/filesystem',
|
||||
query : query,
|
||||
filter : function(filter, response, callback) {
|
||||
var matches = [];
|
||||
|
||||
$.each(response.directories, function(i, d) {
|
||||
if (d[query] && d[query].startsWith(filter)) {
|
||||
matches.push({ value : d[query] });
|
||||
}
|
||||
});
|
||||
|
||||
callback(matches);
|
||||
}
|
||||
});
|
||||
};
|
@ -1,47 +1,60 @@
|
||||
module.exports = function(){
|
||||
module.exports = function() {
|
||||
'use strict';
|
||||
|
||||
var $ = this;
|
||||
|
||||
$.fn.spinForPromise = function(promise){
|
||||
$.fn.spinForPromise = function(promise) {
|
||||
var self = this;
|
||||
if(!promise || promise.state() !== 'pending') {
|
||||
|
||||
if (!promise || promise.state() !== 'pending') {
|
||||
return this;
|
||||
}
|
||||
promise.always(function(){
|
||||
promise.always(function() {
|
||||
self.stopSpin();
|
||||
});
|
||||
|
||||
return this.startSpin();
|
||||
};
|
||||
$.fn.startSpin = function(){
|
||||
|
||||
$.fn.startSpin = function() {
|
||||
var icon = this.find('i').andSelf('i');
|
||||
if(!icon || !icon.attr('class')) {
|
||||
|
||||
if (!icon || !icon.attr('class')) {
|
||||
return this;
|
||||
}
|
||||
|
||||
var iconClasses = icon.attr('class').match(/(?:^|\s)icon\-.+?(?:$|\s)/);
|
||||
if(iconClasses.length === 0) {
|
||||
|
||||
if (iconClasses.length === 0) {
|
||||
return this;
|
||||
}
|
||||
|
||||
var iconClass = $.trim(iconClasses[0]);
|
||||
|
||||
this.addClass('disabled');
|
||||
if(icon.hasClass('icon-can-spin')) {
|
||||
|
||||
if (icon.hasClass('icon-can-spin')) {
|
||||
icon.addClass('icon-spin');
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
icon.attr('data-idle-icon', iconClass);
|
||||
icon.removeClass(iconClass);
|
||||
icon.addClass('icon-nd-spinner');
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
$.fn.stopSpin = function(){
|
||||
|
||||
$.fn.stopSpin = function() {
|
||||
var icon = this.find('i').andSelf('i');
|
||||
|
||||
this.removeClass('disabled');
|
||||
icon.removeClass('icon-spin icon-nd-spinner');
|
||||
var idleIcon = icon.attr('data-idle-icon');
|
||||
if(idleIcon) {
|
||||
|
||||
if (idleIcon) {
|
||||
icon.addClass(idleIcon);
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
};
|
@ -1,74 +1,95 @@
|
||||
module.exports = function(){
|
||||
module.exports = function() {
|
||||
'use strict';
|
||||
var $ = this;
|
||||
$.fn.processServerError = function(error){
|
||||
$.fn.processServerError = function(error) {
|
||||
var validationName = error.propertyName.toLowerCase();
|
||||
|
||||
var errorMessage = this.formatErrorMessage(error);
|
||||
|
||||
this.find('.validation-errors').addClass('alert alert-danger').append('<div><i class="icon-exclamation-sign"></i>' + errorMessage + '</div>');
|
||||
if(!validationName || validationName === '') {
|
||||
|
||||
if (!validationName || validationName === '') {
|
||||
this.addFormError(error);
|
||||
return this;
|
||||
}
|
||||
var input = this.find('[name]').filter(function(){
|
||||
|
||||
var input = this.find('[name]').filter(function() {
|
||||
return this.name.toLowerCase() === validationName;
|
||||
});
|
||||
if(input.length === 0) {
|
||||
input = this.find('[validation-name]').filter(function(){
|
||||
|
||||
if (input.length === 0) {
|
||||
input = this.find('[validation-name]').filter(function() {
|
||||
return $(this).attr('validation-name').toLowerCase() === validationName;
|
||||
});
|
||||
if(input.length === 0) {
|
||||
|
||||
//still not found?
|
||||
if (input.length === 0) {
|
||||
this.addFormError(error);
|
||||
console.error('couldn\'t find input for ' + error.propertyName);
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
var formGroup = input.parents('.form-group');
|
||||
if(formGroup.length === 0) {
|
||||
|
||||
if (formGroup.length === 0) {
|
||||
formGroup = input.parent();
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
var inputGroup = formGroup.find('.input-group');
|
||||
if(inputGroup.length === 0) {
|
||||
|
||||
if (inputGroup.length === 0) {
|
||||
formGroup.append('<span class="help-inline validation-error">' + errorMessage + '</span>');
|
||||
}
|
||||
|
||||
else {
|
||||
inputGroup.parent().append('<span class="help-block validation-error">' + errorMessage + '</span>');
|
||||
}
|
||||
}
|
||||
|
||||
formGroup.addClass('has-error');
|
||||
|
||||
return formGroup.find('.help-inline').text();
|
||||
};
|
||||
$.fn.processClientError = function(error){
|
||||
|
||||
$.fn.processClientError = function(error) {
|
||||
|
||||
};
|
||||
$.fn.addFormError = function(error){
|
||||
|
||||
$.fn.addFormError = function(error) {
|
||||
|
||||
var errorMessage = this.formatErrorMessage(error);
|
||||
if(this.find('.modal-body')) {
|
||||
|
||||
if (this.find('.modal-body')) {
|
||||
this.find('.modal-body').prepend('<div class="alert alert-danger validation-error">' + errorMessage + '</div>');
|
||||
}
|
||||
|
||||
else {
|
||||
this.prepend('<div class="alert alert-danger validation-error">' + errorMessage + '</div>');
|
||||
}
|
||||
};
|
||||
$.fn.removeAllErrors = function(){
|
||||
|
||||
$.fn.removeAllErrors = function() {
|
||||
this.find('.has-error').removeClass('has-error');
|
||||
this.find('.error').removeClass('error');
|
||||
this.find('.validation-errors').removeClass('alert').removeClass('alert-danger').html('');
|
||||
this.find('.validation-error').remove();
|
||||
return this.find('.help-inline.error-message').remove();
|
||||
};
|
||||
$.fn.formatErrorMessage = function(error){
|
||||
|
||||
$.fn.formatErrorMessage = function(error) {
|
||||
|
||||
var errorMessage = error.errorMessage;
|
||||
if(error.infoLink) {
|
||||
if(error.detailedDescription) {
|
||||
|
||||
if (error.infoLink) {
|
||||
if (error.detailedDescription) {
|
||||
errorMessage += ' <a class="no-router" target="_blank" href="' + error.infoLink + '"><i class="icon-external-link" title="' + error.detailedDescription + '"></i></a>';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
errorMessage += ' <a class="no-router" target="_blank" href="' + error.infoLink + '"><i class="icon-external-link"></i></a>';
|
||||
}
|
||||
}
|
||||
else if(error.detailedDescription) {
|
||||
} else if (error.detailedDescription) {
|
||||
errorMessage += ' <i class="icon-nd-form-info" title="' + error.detailedDescription + '"></i>';
|
||||
}
|
||||
|
||||
return errorMessage;
|
||||
};
|
||||
};
|
Loading…
Reference in new issue