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