More suggested changes
This commit is contained in:
parent
0678a6b302
commit
314ec99e5c
|
@ -197,8 +197,12 @@ function configDialog(style) {
|
||||||
renderValues();
|
renderValues();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isNullOrUndefined(value) {
|
||||||
|
return value === null || value === undefined;
|
||||||
|
}
|
||||||
|
|
||||||
function isDefault(va) {
|
function isDefault(va) {
|
||||||
return va.value === null || va.value === undefined || va.value === va.default;
|
return isNullOrUndefined(va.value) || va.value === va.default;
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildConfigForm() {
|
function buildConfigForm() {
|
||||||
|
@ -259,34 +263,41 @@ function configDialog(style) {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'range':
|
case 'range':
|
||||||
case 'number':
|
case 'number': {
|
||||||
children = [
|
|
||||||
va.type === 'range' && $create('span.current-value', {textContent: va.value + va.units}),
|
|
||||||
va.input = $create('input.config-value', {
|
|
||||||
va,
|
|
||||||
type: va.type,
|
|
||||||
value: va.default,
|
|
||||||
min: va.min,
|
|
||||||
max: va.max,
|
|
||||||
step: va.step,
|
|
||||||
onchange: updateVarOnChange
|
|
||||||
})
|
|
||||||
];
|
|
||||||
break;
|
|
||||||
|
|
||||||
default: {
|
|
||||||
const options = {
|
const options = {
|
||||||
va,
|
va,
|
||||||
type: va.type,
|
type: va.type,
|
||||||
|
onfocus: va.type === 'number' ? selectAllOnFocus : null,
|
||||||
onchange: updateVarOnChange,
|
onchange: updateVarOnChange,
|
||||||
oninput: updateVarOnInput,
|
oninput: updateVarOnInput
|
||||||
onfocus: selectAllOnFocus,
|
|
||||||
};
|
};
|
||||||
|
if (!isNullOrUndefined(va.min)) {
|
||||||
|
options.min = va.min;
|
||||||
|
}
|
||||||
|
if (!isNullOrUndefined(va.max)) {
|
||||||
|
options.max = va.max;
|
||||||
|
}
|
||||||
|
if (!isNullOrUndefined(va.step)) {
|
||||||
|
options.step = va.step;
|
||||||
|
}
|
||||||
children = [
|
children = [
|
||||||
va.input = $create('input.config-value', options),
|
va.type === 'range' && $create('span.current-value'),
|
||||||
|
va.input = $create('input.config-value', options)
|
||||||
];
|
];
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
children = [
|
||||||
|
va.input = $create('input.config-value', {
|
||||||
|
va,
|
||||||
|
type: va.type,
|
||||||
|
onchange: updateVarOnChange,
|
||||||
|
oninput: updateVarOnInput,
|
||||||
|
onfocus: selectAllOnFocus,
|
||||||
|
}),
|
||||||
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
resetter = resetter.cloneNode(true);
|
resetter = resetter.cloneNode(true);
|
||||||
|
@ -308,7 +319,7 @@ function configDialog(style) {
|
||||||
if (this.type === 'number') {
|
if (this.type === 'number') {
|
||||||
this.value = this.va.value = clampValue(this.value, this.va);
|
this.value = this.va.value = clampValue(this.value, this.va);
|
||||||
} else if (this.type === 'range') {
|
} else if (this.type === 'range') {
|
||||||
this.va.value = parseFloat(this.value);
|
this.va.value = Number(this.value);
|
||||||
$('.current-value', this.closest('.config-range')).textContent = this.va.value + (this.va.units || '');
|
$('.current-value', this.closest('.config-range')).textContent = this.va.value + (this.va.units || '');
|
||||||
} else {
|
} else {
|
||||||
this.va.value = this.type !== 'checkbox' ? this.value : this.checked ? '1' : '0';
|
this.va.value = this.type !== 'checkbox' ? this.value : this.checked ? '1' : '0';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user