diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-01-19 16:00:57 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-01-19 16:15:22 +0100 |
commit | 601c4ee01e21f4da3fc615196d21fde72bfbaee9 (patch) | |
tree | 7214df5257fd4cab886eb2945f2b7d8d2851861b /modules | |
parent | 4670099a20de4700f4c7cb34f67618975b2f3a16 (diff) |
luci-base: form.js: add a new "contains" dependency mode
By tagging option dependencies with `!contains`, dependencies are
considered satisfied when the value is contained in the value of
a related field, instead of being equal to it.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/form.js | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index 88e566519..4ce5e45eb 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -403,11 +403,12 @@ var CBIMap = CBINode.extend({ for (var i = 0; i < depends.length; i++) { var istat = true, - reverse = false; + reverse = depends[i]['!reverse'], + contains = depends[i]['!contains']; for (var dep in depends[i]) { - if (dep == '!reverse') { - reverse = true; + if (dep == '!reverse' || dep == '!contains') { + continue; } else if (dep == '!default') { def = true; @@ -417,7 +418,11 @@ var CBIMap = CBINode.extend({ var res = this.lookupOption(dep, section_id, config_name), val = (res && res[0].isActive(res[1])) ? res[0].formvalue(res[1]) : null; - istat = (istat && isEqual(val, depends[i][dep])); + var equal = contains + ? isContained(val, depends[i][dep]) + : isEqual(val, depends[i][dep]); + + istat = (istat && equal); } } @@ -633,6 +638,23 @@ var isEqual = function(x, y) { return true; }; +var isContained = function(x, y) { + if (Array.isArray(x)) { + for (var i = 0; i < x.length; i++) + if (x[i] == y) + return true; + } + else if (L.isObject(x)) { + if (x.hasOwnProperty(y) && x[y] != null) + return true; + } + else if (typeof(x) == 'string') { + return (x.indexOf(y) > -1); + } + + return false; +}; + var CBIAbstractValue = CBINode.extend({ __init__: function(map, section, option /*, ... */) { this.super('__init__', this.varargs(arguments, 3)); |