aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/webui
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-11-07 19:44:27 +0800
committerAaron LI <aaronly.me@outlook.com>2016-11-07 19:44:27 +0800
commit8a0d58c8295b631ff0aa52020f0f83462138df0e (patch)
treeab414c712427e1d5e01a57686a4033905be65ae4 /fg21sim/webui
parenta2f7b3c56fc79aa22aed88867a9fd3276f65a9f1 (diff)
downloadfg21sim-8a0d58c8295b631ff0aa52020f0f83462138df0e.tar.bz2
webui: configs.js: Split out functions "{g,s}etFormConfigSingle()"
* Split out functions "{g,s}etFormConfigSingle()" from "setConfigForm()"; * Rename original "setConfigForm()" to "setFormConfigs()", and uses "{g,s}etFormConfigSingle()" to simplify; * Update other places accordingly.
Diffstat (limited to 'fg21sim/webui')
-rw-r--r--fg21sim/webui/static/js/configs.js163
1 files changed, 90 insertions, 73 deletions
diff --git a/fg21sim/webui/static/js/configs.js b/fg21sim/webui/static/js/configs.js
index 15d4641..a011379 100644
--- a/fg21sim/webui/static/js/configs.js
+++ b/fg21sim/webui/static/js/configs.js
@@ -70,90 +70,107 @@ var resetConfigForm = function () {
/**
- * Set the configuration form to the supplied data, and mark out the fields
- * with error states as specified in the given errors.
+ * Get the value of one single form field by specifying the name.
*
- * @param {Object} data - The input configurations data, key-value pairs.
- * @param {Object} errors - The config options with invalid values.
+ * @param {String} name - The name of filed name
*/
-var setConfigForm = function (data, errors) {
- // Clear previously marked errors
- clearConfigFormErrors();
-
- // Set the values of form field to the input configurations data
- for (var key in data) {
- if (! data.hasOwnProperty(key)) {
- /**
- * NOTE: Skip if the property is from prototype
- * Credit: http://stackoverflow.com/a/921808
- */
- continue;
- }
- var value = data[key];
- if (key === "userconfig" && value) {
- // Split the absolute path to "workdir" and "configfile"
- var workdir = dirname(value);
- var configfile = basename(value);
- $("input[name=workdir]").val(workdir).trigger("change");
- $("input[name=configfile]").val(configfile).trigger("change");
- }
- else {
- var selector = "input[name='" + key + "']";
- var target = $(selector);
- if (target.length) {
- if (target.is(":radio")) {
- var val_old = target.filter(":checked").val();
- target.val([value]).trigger("change"); // Use Array in "val()"
- } else if (target.is(":checkbox")) {
- // Get values of checked checkboxes into array
- // Credit: https://stackoverflow.com/a/16171146/4856091
- var val_old = target.filter(":checked").map(
- function () { return $(this).val(); }).get();
- // Convert value to an Array
- if (! Array.isArray(value)) {
- value = [value];
- }
- target.val(value).trigger("change");
- } else if (target.is(":text") && target.data("type") == "array") {
- // This field is a string that is ", "-joined from an Array
- var val_old = target.val();
- // The received value is already an Array
- value = value.join(", ");
- target.val(value).trigger("change");
- } else {
- var val_old = target.val();
- target.val(value).trigger("change");
- }
- console.debug("Set input '" + key + "' to:", value, " <-", val_old);
- }
- else {
- console.error("No such element:", selector);
+var getFormConfigSingle = function (name) {
+ var value = null;
+ if (name == null) {
+ // do nothing
+ } else if (name === "userconfig") {
+ value = joinPath($("input[name=workdir]").val(),
+ $("input[name=configfile]").val());
+ } else {
+ var selector = "input[name='" + name + "']";
+ var target = $(selector);
+ if (target.length) {
+ if (target.is(":radio")) {
+ value = target.filter(":checked").val();
+ } else if (target.is(":checkbox")) {
+ // Get values of checked checkboxes into array
+ // Credit: https://stackoverflow.com/a/16171146/4856091
+ value = target.filter(":checked").map(
+ function () { return $(this).val(); }).get();
+ } else {
+ value = target.val();
}
+ } else {
+ console.error("No such element:", selector);
}
}
+ return value;
+};
- // Mark error states on fields with invalid values
- for (var key in errors) {
- if (! errors.hasOwnProperty(key)) {
- // NOTE: Skip if the property is from prototype
- continue;
+
+/**
+ * Set the value of one single form field according to the given
+ * name and value.
+ *
+ * NOTE:
+ * Change the value of an input element using JavaScript (e.g., `.val()`)
+ * won't fire the "change" event, so manually trigger this event.
+ *
+ * @param {String} name - The name of filed name
+ * @param {String|Number|Array} value - The value to be set for the field
+ */
+var setFormConfigSingle = function (name, value) {
+ if (name === "userconfig" && value) {
+ // Split the absolute path to "workdir" and "configfile"
+ var workdir = dirname(value);
+ var configfile = basename(value);
+ $("input[name=workdir]").val(workdir).trigger("change");
+ $("input[name=configfile]").val(configfile).trigger("change");
+ } else {
+ var selector = "input[name='" + name + "']";
+ var target = $(selector);
+ if (target.length) {
+ if (target.is(":radio")) {
+ target.val([value]); // Use Array in "val()"
+ } else if (target.is(":checkbox")) {
+ // Convert value (key of a single option) to an Array
+ if (! Array.isArray(value)) {
+ value = [value];
+ }
+ target.val(value);
+ } else if (target.is(":text") && target.data("type") == "array") {
+ // The received value is already an Array
+ value = value.join(", ");
+ target.val(value);
+ } else {
+ target.val(value);
+ }
+ // Manually trigger the "change" event
+ target.trigger("change");
+ } else {
+ console.error("No such element:", selector);
}
- var value = errors[key];
- // TODO: mark the error states
}
};
/**
- * Get the filepath to the user configuration file from the form fields
- * "workdir" and "configfile".
+ * Set the configuration form to the supplied data, and mark out the fields
+ * with error states as specified in the given errors.
*
- * @returns {String} - Absolute path to the user configuration file.
+ * @param {Object} data - The input configurations data, key-value pairs.
+ * @param {Object} errors - The config options with invalid values.
*/
-var getFormUserconfig = function () {
- var userconfig = joinPath($("input[name=workdir]").val(),
- $("input[name=configfile]").val());
- return userconfig;
+var setFormConfigs = function (data, errors) {
+ // Clear previously marked errors
+ clearConfigFormErrors();
+
+ // Set the values of form field to the input configurations data
+ $.each(data, function (name, value) {
+ var val_old = getFormConfigSingle(name);
+ if (val_old != null) {
+ setFormConfigSingle(name, value);
+ console.debug("Set input '" + name + "' to:", value, " <-", val_old);
+ }
+ });
+
+ // Mark error states on fields with invalid values
+ // TODO: mark the error states
};
@@ -212,7 +229,7 @@ var setServerConfigs = function (ws, data) {
*/
var loadServerConfigFile = function (ws, userconfig) {
if (typeof userconfig === "undefined") {
- userconfig = getFormUserconfig();
+ userconfig = getFormConfigSingle("userconfig");
}
var msg = {type: "configs", action: "load", userconfig: userconfig};
ws.send(JSON.stringify(msg));
@@ -228,7 +245,7 @@ var loadServerConfigFile = function (ws, userconfig) {
*/
var saveServerConfigFile = function (ws, clobber) {
clobber = typeof clobber !== "undefined" ? clobber : false;
- var userconfig = getFormUserconfig();
+ var userconfig = getFormConfigSingle("userconfig");
var msg = {type: "configs",
action: "save",
outfile: userconfig,
@@ -242,7 +259,7 @@ var saveServerConfigFile = function (ws, clobber) {
*/
var handleMsgConfigs = function (msg) {
if (msg.success) {
- setConfigForm(msg.data, msg.errors);
+ setFormConfigs(msg.data, msg.errors);
} else {
console.error("WebSocket 'configs' request failed with error:", msg.error);
// TODO: add error code support and handle each specific error ...