move the parameter type converting into a seperate method
This commit is contained in:
parent
aa274eca74
commit
4a00edc066
|
@ -65,7 +65,6 @@ Deluge.OptionsManager = Ext.extend(Ext.util.Observable, {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a set of default options and values to the options manager
|
* Add a set of default options and values to the options manager
|
||||||
* @param {String} id
|
|
||||||
* @param {Object} options The default options.
|
* @param {Object} options The default options.
|
||||||
*/
|
*/
|
||||||
addOptions: function(options) {
|
addOptions: function(options) {
|
||||||
|
@ -97,6 +96,33 @@ Deluge.OptionsManager = Ext.extend(Ext.util.Observable, {
|
||||||
this.reset();
|
this.reset();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts the value so it matches the originals type
|
||||||
|
* @param {Mixed} oldValue The original value
|
||||||
|
* @param {Mixed} value The new value to convert
|
||||||
|
*/
|
||||||
|
convertValueType: function(oldValue, value) {
|
||||||
|
if (Ext.type(oldValue) != Ext.type(value)) {
|
||||||
|
switch (Ext.type(oldValue)) {
|
||||||
|
case 'string':
|
||||||
|
value = String(value);
|
||||||
|
break;
|
||||||
|
case 'number':
|
||||||
|
value = Number(value);
|
||||||
|
break;
|
||||||
|
case 'boolean':
|
||||||
|
if (Ext.type(value) == 'string') {
|
||||||
|
value = value.toLowerCase();
|
||||||
|
value = (value == 'true' || newValue == '1' || value == 'on') ? true : false;
|
||||||
|
} else {
|
||||||
|
value = Boolean(value);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the value for an option or options.
|
* Get the value for an option or options.
|
||||||
* @param {String} [option] A single option or an array of options to return.
|
* @param {String} [option] A single option or an array of options to return.
|
||||||
|
@ -198,24 +224,7 @@ Deluge.OptionsManager = Ext.extend(Ext.util.Observable, {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var defaultValue = this.getDefault(option);
|
var defaultValue = this.getDefault(option);
|
||||||
if (Ext.type(defaultValue) != Ext.type(value)) {
|
value = this.convertValueType(defaultValue, value);
|
||||||
switch (Ext.type(defaultValue)) {
|
|
||||||
case 'string':
|
|
||||||
value = String(value);
|
|
||||||
break;
|
|
||||||
case 'number':
|
|
||||||
value = Number(value);
|
|
||||||
break;
|
|
||||||
case 'boolean':
|
|
||||||
if (Ext.type(value) == 'string') {
|
|
||||||
value = value.toLowerCase();
|
|
||||||
value = (value == 'true' || value == '1' || value == 'on') ? true : false;
|
|
||||||
} else {
|
|
||||||
value = Boolean(value);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var oldValue = this.get(option);
|
var oldValue = this.get(option);
|
||||||
if (oldValue == value) return;
|
if (oldValue == value) return;
|
||||||
|
|
Loading…
Reference in New Issue