187 lines
6.2 KiB
JavaScript
187 lines
6.2 KiB
JavaScript
BR.Profile = L.Evented.extend({
|
|
cache: {},
|
|
|
|
initialize: function() {
|
|
var textArea = L.DomUtil.get('profile_upload');
|
|
this.editor = CodeMirror.fromTextArea(textArea, {
|
|
lineNumbers: true
|
|
});
|
|
|
|
var that = this;
|
|
L.DomUtil.get('profile_advanced').addEventListener('click', function() {
|
|
that._toggleAdvanced();
|
|
});
|
|
|
|
L.DomUtil.get('upload').onclick = L.bind(this._upload, this);
|
|
L.DomUtil.get('clear').onclick = L.bind(this.clear, this);
|
|
|
|
this.message = new BR.Message('profile_message', {
|
|
alert: true
|
|
});
|
|
},
|
|
|
|
clear: function(evt) {
|
|
var button = evt.target || evt.srcElement;
|
|
|
|
evt.preventDefault();
|
|
this._setValue('');
|
|
|
|
this.fire('clear');
|
|
button.blur();
|
|
},
|
|
|
|
update: function(options) {
|
|
var profileName = options.profile,
|
|
profileUrl,
|
|
empty = !this.editor.getValue(),
|
|
clean = this.editor.isClean();
|
|
|
|
this.profileName = profileName;
|
|
if (profileName && BR.conf.profilesUrl && (empty || clean)) {
|
|
if (!(profileName in this.cache)) {
|
|
profileUrl = BR.conf.profilesUrl + profileName + '.brf';
|
|
BR.Util.get(
|
|
profileUrl,
|
|
L.bind(function(err, profileText) {
|
|
if (err) {
|
|
console.warn('Error getting profile from "' + profileUrl + '": ' + err);
|
|
return;
|
|
}
|
|
|
|
this.cache[profileName] = profileText;
|
|
|
|
// don't set when option has changed while loading
|
|
if (!this.profileName || this.profileName === profileName) {
|
|
this._setValue(profileText);
|
|
}
|
|
}, this)
|
|
);
|
|
} else {
|
|
this._setValue(this.cache[profileName]);
|
|
}
|
|
}
|
|
},
|
|
|
|
show: function() {
|
|
this.editor.refresh();
|
|
},
|
|
|
|
onResize: function() {
|
|
this.editor.refresh();
|
|
},
|
|
|
|
_upload: function(evt) {
|
|
var button = evt.target || evt.srcElement,
|
|
profile = this.editor.getValue();
|
|
|
|
this.message.hide();
|
|
$(button).button('uploading');
|
|
evt.preventDefault();
|
|
|
|
this.fire('update', {
|
|
profileText: profile,
|
|
callback: function() {
|
|
$(button).button('reset');
|
|
$(button).blur();
|
|
}
|
|
});
|
|
},
|
|
|
|
_setValue: function(profileText) {
|
|
var global = profileText.split('---context:').filter(function(e) {
|
|
return e.startsWith('global');
|
|
});
|
|
if (global) {
|
|
// Remove ---context:global line
|
|
global = global[0].split('\n').slice(1);
|
|
|
|
// Comment is mandatory
|
|
var assignRegex = /assign\s*(\w*)\s*=?\s*([\w\.]*)\s*#\s*%(.*)%\s*(\|\s*(.*)\s*\|\s*(.*)\s*)?$/;
|
|
var params = {};
|
|
global.forEach(function(item) {
|
|
var match = item.match(assignRegex);
|
|
var value;
|
|
if (match) {
|
|
var name = match[1];
|
|
var value = match[2];
|
|
var description = match[5];
|
|
|
|
// Find out type
|
|
var paramType = match[6];
|
|
if (paramType.match(/\[.*\]/)) {
|
|
console.log('TODO: ' + paramType); // TODO
|
|
return;
|
|
}
|
|
|
|
// Type is missing, let's try to induce it from value
|
|
if (!paramType) {
|
|
if (value == 'true' || value == 'false') {
|
|
paramType = 'boolean';
|
|
} else {
|
|
paramType = 'number';
|
|
}
|
|
}
|
|
|
|
// Sanitize value according to type
|
|
if (paramType == 'boolean') {
|
|
value = value == 'true';
|
|
} else if (paramType == 'number') {
|
|
value = Number.parseFloat(value);
|
|
if (Number.isNaN(value)) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
params[name] = {
|
|
description: description,
|
|
type: paramType,
|
|
value: value
|
|
};
|
|
}
|
|
});
|
|
}
|
|
var paramsSection = L.DomUtil.get('profile_params');
|
|
paramsSection.innerHTML = '';
|
|
Object.keys(params).forEach(function(param) {
|
|
var div = document.createElement('div');
|
|
var label = document.createElement('label');
|
|
var input = document.createElement('input');
|
|
|
|
var paramType = params[param].type;
|
|
if (paramType == 'number') {
|
|
input.type = 'number';
|
|
input.value = params[param].value;
|
|
} else if (paramType == 'boolean') {
|
|
input.type = 'checkbox';
|
|
input.checked = params[param].value;
|
|
} else {
|
|
// Unknown parameter type, skip it
|
|
return;
|
|
}
|
|
label.appendChild(input);
|
|
var name = i18next.exists('profileParameters.' + param + '.name')
|
|
? i18next.t('profileParameters.' + param + '.name')
|
|
: param;
|
|
label.append(' ' + name);
|
|
|
|
div.appendChild(label);
|
|
|
|
var small = document.createElement('small');
|
|
var description = i18next.exists('profileParameters.' + param + '.description')
|
|
? i18next.t('profileParameters.' + param + '.description')
|
|
: params[param].description.replace(/^\s+|\s+$/g, '');
|
|
small.innerHTML = ' (' + description + ')';
|
|
|
|
div.appendChild(small);
|
|
paramsSection.appendChild(div);
|
|
});
|
|
|
|
this.editor.setValue(profileText);
|
|
this.editor.markClean();
|
|
},
|
|
|
|
_toggleAdvanced: function() {
|
|
L.DomUtil.get('profile_params_container').style.display = 'none';
|
|
L.DomUtil.get('profile_editor').style.display = 'flex';
|
|
}
|
|
});
|