2 LuCI - Lua Configuration Interface
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2008-2012 Jo-Philipp Wich <jow@openwrt.org>
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
16 var cbi_strings = { path: {}, label: {} };
19 return (/^-?\d+$/.test(x) ? +x : NaN);
23 return (/^-?\d+(?:\.\d+)?$/.test(x) ? +x : NaN);
27 if (!x.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/))
30 if (RegExp.$1 > 255 || RegExp.$2 > 255 || RegExp.$3 > 255 || RegExp.$4 > 255)
33 return [ +RegExp.$1, +RegExp.$2, +RegExp.$3, +RegExp.$4 ];
37 if (x.match(/^([a-fA-F0-9:]+):(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/)) {
38 var v6 = RegExp.$1, v4 = IPv4(RegExp.$2);
43 x = v6 + ':' + (v4[0] * 256 + v4[1]).toString(16)
44 + ':' + (v4[2] * 256 + v4[3]).toString(16);
47 if (!x.match(/^[a-fA-F0-9:]+$/))
50 var prefix_suffix = x.split(/::/);
52 if (prefix_suffix.length > 2)
55 var prefix = (prefix_suffix[0] || '0').split(/:/);
56 var suffix = prefix_suffix.length > 1 ? (prefix_suffix[1] || '0').split(/:/) : [];
58 if (suffix.length ? (prefix.length + suffix.length > 7) : (prefix.length > 8))
64 for (i = 0, word = parseInt(prefix[0], 16); i < prefix.length; word = parseInt(prefix[++i], 16))
65 if (prefix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF)
70 for (i = 0; i < (8 - prefix.length - suffix.length); i++)
73 for (i = 0, word = parseInt(suffix[0], 16); i < suffix.length; word = parseInt(suffix[++i], 16))
74 if (suffix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF)
82 var cbi_validators = {
89 'uinteger': function()
91 return (Int(this) >= 0);
101 return (Dec(this) >= 0);
106 return cbi_validators.ip4addr.apply(this) ||
107 cbi_validators.ip6addr.apply(this);
110 'ip4addr': function()
112 var m = this.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})(?:\/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|\/(\d{1,2}))?$/);
113 return !!(m && IPv4(m[1]) && (m[2] ? IPv4(m[2]) : (m[3] ? cbi_validators.ip4prefix.apply(m[3]) : true)));
116 'ip6addr': function()
118 var m = this.match(/^([0-9a-fA-F:.]+)(?:\/(\d{1,3}))?$/);
119 return !!(m && IPv6(m[1]) && (m[2] ? cbi_validators.ip6prefix.apply(m[2]) : true));
122 'ip4prefix': function()
124 return !isNaN(this) && this >= 0 && this <= 32;
127 'ip6prefix': function()
129 return !isNaN(this) && this >= 0 && this <= 128;
134 return cbi_validators.cidr4.apply(this) ||
135 cbi_validators.cidr6.apply(this);
140 var m = this.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(\d{1,2})$/);
141 return !!(m && IPv4(m[1]) && cbi_validators.ip4prefix.apply(m[2]));
146 var m = this.match(/^([0-9a-fA-F:.]+)\/(\d{1,3})$/);
147 return !!(m && IPv6(m[1]) && cbi_validators.ip6prefix.apply(m[2]));
152 var m = this.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/);
153 return !!(m && IPv4(m[1]) && IPv4(m[2]));
158 var m = this.match(/^([0-9a-fA-F:.]+)\/([0-9a-fA-F:.]+)$/);
159 return !!(m && IPv6(m[1]) && IPv6(m[2]));
162 'ip6hostid': function()
164 if (this == "eui64" || this == "random")
168 return !(!v6 || v6[0] || v6[1] || v6[2] || v6[3]);
173 return cbi_validators.ipmask4.apply(this) ||
174 cbi_validators.ipmask6.apply(this);
177 'ipmask4': function()
179 return cbi_validators.cidr4.apply(this) ||
180 cbi_validators.ipnet4.apply(this) ||
181 cbi_validators.ip4addr.apply(this);
184 'ipmask6': function()
186 return cbi_validators.cidr6.apply(this) ||
187 cbi_validators.ipnet6.apply(this) ||
188 cbi_validators.ip6addr.apply(this);
194 return (p >= 0 && p <= 65535);
197 'portrange': function()
199 if (this.match(/^(\d+)-(\d+)$/))
203 return (p1 <= p2 && p2 <= 65535);
206 return cbi_validators.port.apply(this);
209 'macaddr': function()
211 return (this.match(/^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/) != null);
214 'host': function(ipv4only)
216 return cbi_validators.hostname.apply(this) ||
217 ((ipv4only != 1) && cbi_validators.ipaddr.apply(this)) ||
218 ((ipv4only == 1) && cbi_validators.ip4addr.apply(this));
221 'hostname': function(strict)
223 if (this.length <= 253)
224 return (this.match(/^[a-zA-Z0-9_]+$/) != null ||
225 (this.match(/^[a-zA-Z0-9_][a-zA-Z0-9_\-.]*[a-zA-Z0-9]$/) &&
226 this.match(/[^0-9.]/))) &&
227 (!strict || !this.match(/^_/));
232 'network': function()
234 return cbi_validators.uciname.apply(this) ||
235 cbi_validators.host.apply(this);
238 'hostport': function(ipv4only)
240 var hp = this.split(/:/);
243 return (cbi_validators.host.apply(hp[0], ipv4only) &&
244 cbi_validators.port.apply(hp[1]));
249 'ip4addrport': function()
251 var hp = this.split(/:/);
254 return (cbi_validators.ipaddr.apply(hp[0]) &&
255 cbi_validators.port.apply(hp[1]));
259 'ipaddrport': function(bracket)
261 if (this.match(/^([^\[\]:]+):([^:]+)$/)) {
264 return (cbi_validators.ip4addr.apply(addr) &&
265 cbi_validators.port.apply(port));
266 } else if ((bracket == 1) && (this.match(/^\[(.+)\]:([^:]+)$/))) {
269 return (cbi_validators.ip6addr.apply(addr) &&
270 cbi_validators.port.apply(port));
271 } else if ((bracket != 1) && (this.match(/^([^\[\]]+):([^:]+)$/))) {
274 return (cbi_validators.ip6addr.apply(addr) &&
275 cbi_validators.port.apply(port));
286 return (v.match(/^[a-fA-F0-9]{64}$/) != null);
288 return (v.length >= 8) && (v.length <= 63);
295 if ( v.substr(0,2) == 's:' )
298 if( (v.length == 10) || (v.length == 26) )
299 return (v.match(/^[a-fA-F0-9]{10,26}$/) != null);
301 return (v.length == 5) || (v.length == 13);
304 'uciname': function()
306 return (this.match(/^[a-zA-Z0-9_]+$/) != null);
309 'range': function(min, max)
312 return (val >= +min && val <= +max);
317 return (Dec(this) >= +min);
322 return (Dec(this) <= +max);
325 'rangelength': function(min, max)
328 return ((val.length >= +min) && (val.length <= +max));
331 'minlength': function(min)
333 return ((''+this).length >= +min);
336 'maxlength': function(max)
338 return ((''+this).length <= +max);
343 for (var i = 0; i < arguments.length; i += 2)
345 if (typeof arguments[i] != 'function')
347 if (arguments[i] == this)
351 else if (arguments[i].apply(this, arguments[i+1]))
361 for (var i = 0; i < arguments.length; i += 2)
363 if (typeof arguments[i] != 'function')
365 if (arguments[i] != this)
369 else if (!arguments[i].apply(this, arguments[i+1]))
379 return cbi_validators.or.apply(
380 this.replace(/^[ \t]*![ \t]*/, ''), arguments);
383 'list': function(subvalidator, subargs)
385 if (typeof subvalidator != 'function')
388 var tokens = this.match(/[^ \t]+/g);
389 for (var i = 0; i < tokens.length; i++)
390 if (!subvalidator.apply(tokens[i], subargs))
395 'phonedigit': function()
397 return (this.match(/^[0-9\*#!\.]+$/) != null);
399 'timehhmmss': function()
401 return (this.match(/^[0-6][0-9]:[0-6][0-9]:[0-6][0-9]$/) != null);
403 'dateyyyymmdd': function()
408 if (this.match(/^(\d\d\d\d)-(\d\d)-(\d\d)/)) {
409 var year = RegExp.$1;
410 var month = RegExp.$2;
413 var days_in_month = [ 31, 28, 31, 30, 31, 30, 31, 31, 30 , 31, 30, 31 ];
414 function is_leap_year(year) {
415 return ((year % 4) == 0) && ((year % 100) != 0) || ((year % 400) == 0);
417 function get_days_in_month(month, year) {
418 if ((month == 2) && is_leap_year(year)) {
421 return days_in_month[month];
424 /* Firewall rules in the past don't make sense */
428 if ((month <= 0) || (month > 12)) {
431 if ((day <= 0) || (day > get_days_in_month(month, year))) {
443 function cbi_d_add(field, dep, index) {
444 var obj = (typeof(field) === 'string') ? document.getElementById(field) : field;
447 for (var i=0; i<cbi_d.length; i++) {
448 if (cbi_d[i].id == obj.id) {
457 "parent": obj.parentNode.id,
461 cbi_d.unshift(entry);
467 function cbi_d_checkvalue(target, ref) {
469 query = 'input[id="'+target+'"], input[name="'+target+'"], ' +
470 'select[id="'+target+'"], select[name="'+target+'"]';
472 document.querySelectorAll(query).forEach(function(i) {
473 if (value === null && ((i.type !== 'radio' && i.type !== 'checkbox') || i.checked === true))
477 return (((value !== null) ? value : "") == ref);
480 function cbi_d_check(deps) {
483 for (var i=0; i<deps.length; i++) {
486 for (var j in deps[i]) {
487 if (j == "!reverse") {
489 } else if (j == "!default") {
493 istat = (istat && cbi_d_checkvalue(j, deps[i][j]))
497 if (istat ^ reverse) {
504 function cbi_d_update() {
506 for (var i=0; i<cbi_d.length; i++) {
507 var entry = cbi_d[i];
508 var node = document.getElementById(entry.id);
509 var parent = document.getElementById(entry.parent);
511 if (node && node.parentNode && !cbi_d_check(entry.deps)) {
512 node.parentNode.removeChild(node);
514 } else if (parent && (!node || !node.parentNode) && cbi_d_check(entry.deps)) {
515 var next = undefined;
517 for (next = parent.firstChild; next; next = next.nextSibling) {
518 if (next.getAttribute && parseInt(next.getAttribute('data-index'), 10) > entry.index) {
524 parent.appendChild(entry.node);
526 parent.insertBefore(entry.node, next);
532 // hide optionals widget if no choices remaining
533 if (parent && parent.parentNode && parent.getAttribute('data-optionals'))
534 parent.parentNode.style.display = (parent.options.length <= 1) ? 'none' : '';
537 if (entry && entry.parent) {
539 cbi_tag_last(parent);
547 function cbi_init() {
550 nodes = document.querySelectorAll('[data-strings]');
552 for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
553 var str = JSON.parse(node.getAttribute('data-strings'));
554 for (var key in str) {
555 for (var key2 in str[key]) {
556 var dst = cbi_strings[key] || (cbi_strings[key] = { });
557 dst[key2] = str[key][key2];
562 nodes = document.querySelectorAll('[data-depends]');
564 for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
565 var index = parseInt(node.getAttribute('data-index'), 10);
566 var depends = JSON.parse(node.getAttribute('data-depends'));
567 if (!isNaN(index) && depends.length > 0) {
568 for (var alt = 0; alt < depends.length; alt++) {
569 cbi_d_add(node, depends[alt], index);
574 nodes = document.querySelectorAll('[data-update]');
576 for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
577 var events = node.getAttribute('data-update').split(' ');
578 for (var j = 0, event; (event = events[j]) !== undefined; j++) {
579 cbi_bind(node, event, cbi_d_update);
583 nodes = document.querySelectorAll('[data-choices]');
585 for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
586 var choices = JSON.parse(node.getAttribute('data-choices'));
589 for (var j = 0; j < choices[0].length; j++)
590 options[choices[0][j]] = choices[1][j];
592 var def = (node.getAttribute('data-optional') === 'true')
593 ? node.placeholder || '' : null;
595 cbi_combobox_init(node, options, def,
596 node.getAttribute('data-manual'));
599 nodes = document.querySelectorAll('[data-dynlist]');
601 for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
602 var choices = JSON.parse(node.getAttribute('data-dynlist'));
605 if (choices[0] && choices[0].length) {
608 for (var j = 0; j < choices[0].length; j++)
609 options[choices[0][j]] = choices[1][j];
612 cbi_dynlist_init(node, choices[2], choices[3], options);
615 nodes = document.querySelectorAll('[data-type]');
617 for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
618 cbi_validate_field(node, node.getAttribute('data-optional') === 'true',
619 node.getAttribute('data-type'));
622 document.querySelectorAll('.cbi-dropdown').forEach(function(s) {
623 cbi_dropdown_init(s);
626 document.querySelectorAll('.cbi-tooltip:not(:empty)').forEach(function(s) {
627 s.parentNode.classList.add('cbi-tooltip-container');
633 function cbi_bind(obj, type, callback, mode) {
634 if (!obj.addEventListener) {
635 obj.attachEvent('on' + type,
637 var e = window.event;
639 if (!e.target && e.srcElement)
640 e.target = e.srcElement;
642 return !!callback(e);
646 obj.addEventListener(type, callback, !!mode);
651 function cbi_combobox(id, values, def, man, focus) {
652 var selid = "cbi.combobox." + id;
653 if (document.getElementById(selid)) {
657 var obj = document.getElementById(id)
658 var sel = document.createElement("select");
660 sel.index = obj.index;
661 sel.className = obj.className.replace(/cbi-input-text/, 'cbi-input-select');
663 if (obj.nextSibling) {
664 obj.parentNode.insertBefore(sel, obj.nextSibling);
666 obj.parentNode.appendChild(sel);
669 var dt = obj.getAttribute('cbi_datatype');
670 var op = obj.getAttribute('cbi_optional');
672 if (!values[obj.value]) {
673 if (obj.value == "") {
674 var optdef = document.createElement("option");
676 optdef.appendChild(document.createTextNode(typeof(def) === 'string' ? def : cbi_strings.label.choose));
677 sel.appendChild(optdef);
679 var opt = document.createElement("option");
680 opt.value = obj.value;
681 opt.selected = "selected";
682 opt.appendChild(document.createTextNode(obj.value));
683 sel.appendChild(opt);
687 for (var i in values) {
688 var opt = document.createElement("option");
691 if (obj.value == i) {
692 opt.selected = "selected";
695 opt.appendChild(document.createTextNode(values[i]));
696 sel.appendChild(opt);
699 var optman = document.createElement("option");
701 optman.appendChild(document.createTextNode(typeof(man) === 'string' ? man : cbi_strings.label.custom));
702 sel.appendChild(optman);
704 obj.style.display = "none";
707 cbi_validate_field(sel, op == 'true', dt);
709 cbi_bind(sel, "change", function() {
710 if (sel.selectedIndex == sel.options.length - 1) {
711 obj.style.display = "inline";
713 sel.parentNode.removeChild(sel);
716 obj.value = sel.options[sel.selectedIndex].value;
726 // Retrigger validation in select
733 function cbi_combobox_init(id, values, def, man) {
734 var obj = (typeof(id) === 'string') ? document.getElementById(id) : id;
735 cbi_bind(obj, "blur", function() {
736 cbi_combobox(obj.id, values, def, man, true);
738 cbi_combobox(obj.id, values, def, man, false);
741 function cbi_filebrowser(id, defpath) {
742 var field = document.getElementById(id);
743 var browser = window.open(
744 cbi_strings.path.browser + ( field.value || defpath || '' ) + '?field=' + id,
745 "luci_filebrowser", "width=300,height=400,left=100,top=200,scrollbars=yes"
751 function cbi_browser_init(id, resource, defpath)
753 function cbi_browser_btnclick(e) {
754 cbi_filebrowser(id, defpath);
758 var field = document.getElementById(id);
760 var btn = document.createElement('img');
761 btn.className = 'cbi-image-button';
762 btn.src = (resource || cbi_strings.path.resource) + '/cbi/folder.gif';
763 field.parentNode.insertBefore(btn, field.nextSibling);
765 cbi_bind(btn, 'click', cbi_browser_btnclick);
768 function cbi_dynlist_init(parent, datatype, optional, choices)
770 var prefix = parent.getAttribute('data-prefix');
771 var holder = parent.getAttribute('data-placeholder');
775 function cbi_dynlist_redraw(focus, add, del)
779 while (parent.firstChild)
781 var n = parent.firstChild;
786 if (n.nodeName.toLowerCase() == 'input')
787 values.push(n.value || '');
788 else if (n.nodeName.toLowerCase() == 'select')
789 values[values.length-1] = n.options[n.selectedIndex].value;
792 parent.removeChild(n);
798 values.splice(focus, 0, '');
800 else if (values.length == 0)
806 for (var i = 0; i < values.length; i++)
808 var t = document.createElement('input');
809 t.id = prefix + '.' + (i+1);
814 t.className = 'cbi-input-text';
816 if (i == 0 && holder)
818 t.placeholder = holder;
821 var b = document.createElement('img');
822 b.src = cbi_strings.path.resource + ((i+1) < values.length ? '/cbi/remove.gif' : '/cbi/add.gif');
823 b.className = 'cbi-image-button';
825 parent.appendChild(t);
826 parent.appendChild(b);
827 if (datatype == 'file')
829 cbi_browser_init(t.id, null, parent.getAttribute('data-browser-path'));
832 parent.appendChild(document.createElement('br'));
836 cbi_validate_field(t.id, ((i+1) == values.length) || optional, datatype);
841 cbi_combobox_init(t.id, choices, '', cbi_strings.label.custom);
844 cbi_bind(b, 'keydown', cbi_dynlist_keydown);
845 cbi_bind(b, 'keypress', cbi_dynlist_keypress);
847 if (i == focus || -i == focus)
852 cbi_bind(t, 'keydown', cbi_dynlist_keydown);
853 cbi_bind(t, 'keypress', cbi_dynlist_keypress);
859 else if (-i == focus)
863 /* force cursor to end */
870 cbi_bind(b, 'click', cbi_dynlist_btnclick);
874 function cbi_dynlist_keypress(ev)
876 ev = ev ? ev : window.event;
878 var se = ev.target ? ev.target : ev.srcElement;
880 if (se.nodeType == 3)
885 /* backspace, delete */
888 if (se.value.length == 0)
890 if (ev.preventDefault)
898 /* enter, arrow up, arrow down */
902 if (ev.preventDefault)
911 function cbi_dynlist_keydown(ev)
913 ev = ev ? ev : window.event;
915 var se = ev.target ? ev.target : ev.srcElement;
917 if (se.nodeType == 3)
920 var prev = se.previousSibling;
921 while (prev && prev.name != prefix)
922 prev = prev.previousSibling;
924 var next = se.nextSibling;
925 while (next && next.name != prefix)
926 next = next.nextSibling;
928 /* advance one further in combobox case */
929 if (next && next.nextSibling.name == prefix)
930 next = next.nextSibling;
934 /* backspace, delete */
937 var del = (se.nodeName.toLowerCase() == 'select')
938 ? true : (se.value.length == 0);
942 if (ev.preventDefault)
945 var focus = se.index;
949 cbi_dynlist_redraw(focus, -1, se.index);
958 cbi_dynlist_redraw(-1, se.index, -1);
979 function cbi_dynlist_btnclick(ev)
981 ev = ev ? ev : window.event;
983 var se = ev.target ? ev.target : ev.srcElement;
984 var input = se.previousSibling;
985 while (input && input.name != prefix) {
986 input = input.previousSibling;
989 if (se.src.indexOf('remove') > -1)
993 cbi_dynlist_keydown({
1000 cbi_dynlist_keydown({
1009 cbi_dynlist_redraw(NaN, -1, -1);
1013 function cbi_t_add(section, tab) {
1014 var t = document.getElementById('tab.' + section + '.' + tab);
1015 var c = document.getElementById('container.' + section + '.' + tab);
1018 cbi_t[section] = (cbi_t[section] || [ ]);
1019 cbi_t[section][tab] = { 'tab': t, 'container': c, 'cid': c.id };
1023 function cbi_t_switch(section, tab) {
1024 if( cbi_t[section] && cbi_t[section][tab] ) {
1025 var o = cbi_t[section][tab];
1026 var h = document.getElementById('tab.' + section);
1027 for( var tid in cbi_t[section] ) {
1028 var o2 = cbi_t[section][tid];
1029 if( o.tab.id != o2.tab.id ) {
1030 o2.tab.className = o2.tab.className.replace(/(^| )cbi-tab( |$)/, " cbi-tab-disabled ");
1031 o2.container.style.display = 'none';
1034 if(h) h.value = tab;
1035 o2.tab.className = o2.tab.className.replace(/(^| )cbi-tab-disabled( |$)/, " cbi-tab ");
1036 o2.container.style.display = 'block';
1043 function cbi_t_update() {
1045 var updated = false;
1047 for( var sid in cbi_t )
1048 for( var tid in cbi_t[sid] )
1050 var t = cbi_t[sid][tid].tab;
1051 var c = cbi_t[sid][tid].container;
1053 if (!c.firstElementChild) {
1054 t.style.display = 'none';
1056 else if (t.style.display == 'none') {
1057 t.style.display = '';
1058 t.className += ' cbi-tab-highlighted';
1066 if (hl_tabs.length > 0)
1067 window.setTimeout(function() {
1068 for( var i = 0; i < hl_tabs.length; i++ )
1069 hl_tabs[i].className = hl_tabs[i].className.replace(/ cbi-tab-highlighted/g, '');
1076 function cbi_validate_form(form, errmsg)
1078 /* if triggered by a section removal or addition, don't validate */
1079 if( form.cbi_state == 'add-section' || form.cbi_state == 'del-section' )
1082 if( form.cbi_validators )
1084 for( var i = 0; i < form.cbi_validators.length; i++ )
1086 var validator = form.cbi_validators[i];
1087 if( !validator() && errmsg )
1098 function cbi_validate_reset(form)
1101 function() { cbi_validate_form(form, null) }, 100
1107 function cbi_validate_compile(code)
1116 for (var i = 0; i < code.length; i++)
1124 switch (code.charCodeAt(i))
1136 var label = code.substring(pos, i);
1137 label = label.replace(/\\(.)/g, '$1');
1138 label = label.replace(/^[ \t]+/g, '');
1139 label = label.replace(/[ \t]+$/g, '');
1141 if (label && !isNaN(label))
1143 stack.push(parseFloat(label));
1145 else if (label.match(/^(['"]).*\1$/))
1147 stack.push(label.replace(/^(['"])(.*)\1$/, '$2'));
1149 else if (typeof cbi_validators[label] == 'function')
1151 stack.push(cbi_validators[label]);
1156 throw "Syntax error, unhandled token '"+label+"'";
1161 depth += (code.charCodeAt(i) == 40);
1167 if (typeof stack[stack.length-2] != 'function')
1168 throw "Syntax error, argument list follows non-function";
1170 stack[stack.length-1] =
1171 arguments.callee(code.substring(pos, i));
1182 function cbi_validate_field(cbid, optional, type)
1184 var field = (typeof cbid == "string") ? document.getElementById(cbid) : cbid;
1185 var vstack; try { vstack = cbi_validate_compile(type); } catch(e) { };
1187 if (field && vstack && typeof vstack[0] == "function")
1189 var validator = function()
1194 field.className = field.className.replace(/ cbi-input-invalid/g, '');
1197 var value = (field.options && field.options.selectedIndex > -1)
1198 ? field.options[field.options.selectedIndex].value : field.value;
1200 if (!(((value.length == 0) && optional) || vstack[0].apply(value, vstack[1])))
1203 field.className += ' cbi-input-invalid';
1211 if( ! field.form.cbi_validators )
1212 field.form.cbi_validators = [ ];
1214 field.form.cbi_validators.push(validator);
1216 cbi_bind(field, "blur", validator);
1217 cbi_bind(field, "keyup", validator);
1219 if (field.nodeName == 'SELECT')
1221 cbi_bind(field, "change", validator);
1222 cbi_bind(field, "click", validator);
1225 field.setAttribute("cbi_validate", validator);
1226 field.setAttribute("cbi_datatype", type);
1227 field.setAttribute("cbi_optional", (!!optional).toString());
1231 var fcbox = document.getElementById('cbi.combobox.' + field.id);
1233 cbi_validate_field(fcbox, optional, type);
1237 function cbi_row_swap(elem, up, store)
1239 var tr = findParent(elem.parentNode, '.cbi-section-table-row');
1244 tr.classList.remove('flash');
1247 var prev = tr.previousElementSibling;
1249 if (prev && prev.classList.contains('cbi-section-table-row'))
1250 tr.parentNode.insertBefore(tr, prev);
1255 var next = tr.nextElementSibling ? tr.nextElementSibling.nextElementSibling : null;
1257 if (next && next.classList.contains('cbi-section-table-row'))
1258 tr.parentNode.insertBefore(tr, next);
1260 tr.parentNode.appendChild(tr);
1267 for (var i = 0, n = 0; i < tr.parentNode.childNodes.length; i++) {
1268 var node = tr.parentNode.childNodes[i];
1269 if (node.classList && node.classList.contains('cbi-section-table-row')) {
1270 node.classList.remove('cbi-rowstyle-1');
1271 node.classList.remove('cbi-rowstyle-2');
1272 node.classList.add((n++ % 2) ? 'cbi-rowstyle-2' : 'cbi-rowstyle-1');
1274 if (/-([^\-]+)$/.test(node.id))
1275 ids.push(RegExp.$1);
1279 var input = document.getElementById(store);
1281 input.value = ids.join(' ');
1283 window.scrollTo(0, tr.offsetTop);
1284 window.setTimeout(function() { tr.classList.add('flash'); }, 1);
1289 function cbi_tag_last(container)
1293 for (var i = 0; i < container.childNodes.length; i++)
1295 var c = container.childNodes[i];
1296 if (c.nodeType == 1 && c.nodeName.toLowerCase() == 'div')
1298 c.className = c.className.replace(/ cbi-value-last$/, '');
1305 last.className += ' cbi-value-last';
1309 String.prototype.format = function()
1314 var html_esc = [/&/g, '&', /"/g, '"', /'/g, ''', /</g, '<', />/g, '>'];
1315 var quot_esc = [/"/g, '"', /'/g, '''];
1317 function esc(s, r) {
1318 if (typeof(s) !== 'string' && !(s instanceof String))
1321 for( var i = 0; i < r.length; i += 2 )
1322 s = s.replace(r[i], r[i+1]);
1328 var re = /^(([^%]*)%('.|0|\x20)?(-)?(\d+)?(\.\d+)?(%|b|c|d|u|f|o|s|x|X|q|h|j|t|m))/;
1329 var a = b = [], numSubstitutions = 0, numMatches = 0;
1331 while (a = re.exec(str))
1334 var leftpart = a[2], pPad = a[3], pJustify = a[4], pMinLength = a[5];
1335 var pPrecision = a[6], pType = a[7];
1345 if (numSubstitutions < arguments.length)
1347 var param = arguments[numSubstitutions++];
1350 if (pPad && pPad.substr(0,1) == "'")
1351 pad = leftpart.substr(1,1);
1357 var justifyRight = true;
1358 if (pJustify && pJustify === "-")
1359 justifyRight = false;
1363 minLength = +pMinLength;
1366 if (pPrecision && pType == 'f')
1367 precision = +pPrecision.substring(1);
1374 subst = (+param || 0).toString(2);
1378 subst = String.fromCharCode(+param || 0);
1382 subst = ~~(+param || 0);
1386 subst = ~~Math.abs(+param || 0);
1390 subst = (precision > -1)
1391 ? ((+param || 0.0)).toFixed(precision)
1396 subst = (+param || 0).toString(8);
1404 subst = ('' + (+param || 0).toString(16)).toLowerCase();
1408 subst = ('' + (+param || 0).toString(16)).toUpperCase();
1412 subst = esc(param, html_esc);
1416 subst = esc(param, quot_esc);
1423 var ts = (param || 0);
1426 tm = Math.floor(ts / 60);
1431 th = Math.floor(tm / 60);
1436 td = Math.floor(th / 24);
1441 ? String.format('%dd %dh %dm %ds', td, th, tm, ts)
1442 : String.format('%dh %dm %ds', th, tm, ts);
1447 var mf = pMinLength ? +pMinLength : 1000;
1448 var pr = pPrecision ? ~~(10 * +('0' + pPrecision)) : 2;
1451 var val = (+param || 0);
1452 var units = [ ' ', ' K', ' M', ' G', ' T', ' P', ' E' ];
1454 for (i = 0; (i < units.length) && (val > mf); i++)
1457 subst = (i ? val.toFixed(pr) : val) + units[i];
1465 subst = subst.toString();
1466 for (var i = subst.length; i < pMinLength; i++)
1467 if (pJustify == '-')
1468 subst = subst + ' ';
1470 subst = pad + subst;
1473 out += leftpart + subst;
1474 str = str.substr(m.length);
1480 String.prototype.nobr = function()
1482 return this.replace(/[\s\n]+/g, ' ');
1485 String.format = function()
1488 for (var i = 1; i < arguments.length; i++)
1489 a.push(arguments[i]);
1490 return ''.format.apply(arguments[0], a);
1493 String.nobr = function()
1496 for (var i = 1; i < arguments.length; i++)
1497 a.push(arguments[i]);
1498 return ''.nobr.apply(arguments[0], a);
1502 var dummyElem, domParser;
1506 return (typeof(e) === 'object' && e !== null && 'nodeType' in e);
1514 domParser = domParser || new DOMParser();
1515 elem = domParser.parseFromString(s, 'text/html').body.firstChild;
1521 dummyElem = dummyElem || document.createElement('div');
1522 dummyElem.innerHTML = s;
1523 elem = dummyElem.firstChild;
1528 return elem || null;
1531 function findParent(node, selector)
1534 if (node.msMatchesSelector && node.msMatchesSelector(selector))
1536 else if (node.matches && node.matches(selector))
1539 node = node.parentNode;
1546 var html = arguments[0],
1547 attr = (arguments[1] instanceof Object && !Array.isArray(arguments[1])) ? arguments[1] : null,
1548 data = attr ? arguments[2] : arguments[1],
1553 else if (html.charCodeAt(0) === 60)
1554 elem = toElem(html);
1556 elem = document.createElement(html);
1562 for (var key in attr)
1563 if (attr.hasOwnProperty(key) && attr[key] !== null && attr[key] !== undefined)
1564 elem.setAttribute(key, attr[key]);
1566 if (typeof(data) === 'function')
1570 elem.appendChild(data);
1572 else if (Array.isArray(data)) {
1573 for (var i = 0; i < data.length; i++)
1574 if (isElem(data[i]))
1575 elem.appendChild(data[i]);
1577 elem.appendChild(document.createTextNode('' + data[i]));
1579 else if (data !== null && data !== undefined) {
1580 elem.innerHTML = '' + data;
1586 if (typeof(window.CustomEvent) !== 'function') {
1587 function CustomEvent(event, params) {
1588 params = params || { bubbles: false, cancelable: false, detail: undefined };
1589 var evt = document.createEvent('CustomEvent');
1590 evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );
1594 CustomEvent.prototype = window.Event.prototype;
1595 window.CustomEvent = CustomEvent;
1599 openDropdown: function(sb) {
1600 var st = window.getComputedStyle(sb, null),
1601 ul = sb.querySelector('ul'),
1602 li = ul.querySelectorAll('li'),
1603 sel = ul.querySelector('[selected]'),
1604 rect = sb.getBoundingClientRect(),
1605 h = sb.clientHeight - parseFloat(st.paddingTop) - parseFloat(st.paddingBottom),
1606 mh = this.dropdown_items * h,
1607 eh = Math.min(mh, li.length * h);
1609 document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) {
1610 s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {}));
1613 ul.style.maxHeight = mh + 'px';
1614 sb.setAttribute('open', '');
1616 ul.scrollTop = sel ? Math.max(sel.offsetTop - sel.offsetHeight, 0) : 0;
1617 ul.querySelectorAll('[selected] input[type="checkbox"]').forEach(function(c) {
1621 ul.style.top = ul.style.bottom = '';
1622 ul.style[((sb.getBoundingClientRect().top + eh) > window.innerHeight) ? 'bottom' : 'top'] = rect.height + 'px';
1623 ul.classList.add('dropdown');
1625 var pv = ul.cloneNode(true);
1626 pv.classList.remove('dropdown');
1627 pv.classList.add('preview');
1629 sb.insertBefore(pv, ul.nextElementSibling);
1631 li.forEach(function(l) {
1632 l.setAttribute('tabindex', 0);
1635 sb.lastElementChild.setAttribute('tabindex', 0);
1637 this.setFocus(sb, sel || li[0], true);
1640 closeDropdown: function(sb, no_focus) {
1641 if (!sb.hasAttribute('open'))
1644 var pv = sb.querySelector('ul.preview'),
1645 ul = sb.querySelector('ul.dropdown'),
1646 li = ul.querySelectorAll('li');
1648 li.forEach(function(l) { l.removeAttribute('tabindex'); });
1649 sb.lastElementChild.removeAttribute('tabindex');
1652 sb.removeAttribute('open');
1653 sb.style.width = sb.style.height = '';
1655 ul.classList.remove('dropdown');
1658 this.setFocus(sb, sb);
1660 this.saveValues(sb, ul);
1663 toggleItem: function(sb, li, force_state) {
1664 if (li.hasAttribute('unselectable'))
1668 var cbox = li.querySelector('input[type="checkbox"]'),
1669 items = li.parentNode.querySelectorAll('li'),
1670 label = sb.querySelector('ul.preview'),
1671 sel = li.parentNode.querySelectorAll('[selected]').length,
1672 more = sb.querySelector('.more'),
1673 ndisplay = this.display_items,
1676 if (li.hasAttribute('selected')) {
1677 if (force_state !== true) {
1678 if (sel > 1 || this.optional) {
1679 li.removeAttribute('selected');
1680 cbox.checked = cbox.disabled = false;
1684 cbox.disabled = true;
1689 if (force_state !== false) {
1690 li.setAttribute('selected', '');
1691 cbox.checked = true;
1692 cbox.disabled = false;
1697 while (label.firstElementChild)
1698 label.removeChild(label.firstElementChild);
1700 for (var i = 0; i < items.length; i++) {
1701 items[i].removeAttribute('display');
1702 if (items[i].hasAttribute('selected')) {
1703 if (ndisplay-- > 0) {
1704 items[i].setAttribute('display', n++);
1705 label.appendChild(items[i].cloneNode(true));
1707 var c = items[i].querySelector('input[type="checkbox"]');
1709 c.disabled = (sel == 1 && !this.optional);
1714 sb.setAttribute('more', '');
1716 sb.removeAttribute('more');
1718 if (ndisplay === this.display_items)
1719 sb.setAttribute('empty', '');
1721 sb.removeAttribute('empty');
1723 more.innerHTML = (ndisplay === this.display_items) ? this.placeholder : '···';
1726 var sel = li.parentNode.querySelector('[selected]');
1728 sel.removeAttribute('display');
1729 sel.removeAttribute('selected');
1732 li.setAttribute('display', 0);
1733 li.setAttribute('selected', '');
1735 this.closeDropdown(sb, true);
1738 this.saveValues(sb, li.parentNode);
1741 transformItem: function(sb, li) {
1742 var cbox = E('form', {}, E('input', { type: 'checkbox', tabindex: -1, onclick: 'event.preventDefault()' })),
1745 while (li.firstChild)
1746 label.appendChild(li.firstChild);
1748 li.appendChild(cbox);
1749 li.appendChild(label);
1752 saveValues: function(sb, ul) {
1753 var sel = ul.querySelectorAll('[selected]'),
1754 div = sb.lastElementChild;
1756 while (div.lastElementChild)
1757 div.removeChild(div.lastElementChild);
1759 sel.forEach(function (s) {
1760 div.appendChild(E('input', {
1762 name: s.hasAttribute('name') ? s.getAttribute('name') : (sb.getAttribute('name') || ''),
1763 value: s.hasAttribute('value') ? s.getAttribute('value') : s.innerText
1770 setFocus: function(sb, elem, scroll) {
1771 if (sb && sb.hasAttribute && sb.hasAttribute('locked-in'))
1774 document.querySelectorAll('.focus').forEach(function(e) {
1775 if (e.nodeName.toLowerCase() !== 'input') {
1776 e.classList.remove('focus');
1783 elem.classList.add('focus');
1786 elem.parentNode.scrollTop = elem.offsetTop - elem.parentNode.offsetTop;
1790 createItems: function(sb, value) {
1792 val = (value || '').trim().split(/\s+/),
1793 ul = sb.querySelector('ul');
1796 val.length = Math.min(val.length, 1);
1798 val.forEach(function(item) {
1799 var new_item = null;
1801 ul.childNodes.forEach(function(li) {
1802 if (li.getAttribute && li.getAttribute('value') === item)
1808 tpl = sb.querySelector(sbox.template);
1811 markup = (tpl.textContent || tpl.innerHTML || tpl.firstChild.data).replace(/^<!--|-->$/, '').trim();
1813 markup = '<li value="{{value}}">{{value}}</li>';
1815 new_item = E(markup.replace(/{{value}}/g, item));
1818 sbox.transformItem(sb, new_item);
1821 var old = ul.querySelector('li[created]');
1823 ul.removeChild(old);
1825 new_item.setAttribute('created', '');
1828 new_item = ul.insertBefore(new_item, ul.lastElementChild);
1831 sbox.toggleItem(sb, new_item, true);
1832 sbox.setFocus(sb, new_item, true);
1836 closeAllDropdowns: function() {
1837 document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) {
1838 s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {}));
1843 function cbi_dropdown_init(sb) {
1844 if (!(this instanceof cbi_dropdown_init))
1845 return new cbi_dropdown_init(sb);
1847 this.multi = sb.hasAttribute('multiple');
1848 this.optional = sb.hasAttribute('optional');
1849 this.placeholder = sb.getAttribute('placeholder') || '---';
1850 this.display_items = parseInt(sb.getAttribute('display-items') || 3);
1851 this.dropdown_items = parseInt(sb.getAttribute('dropdown-items') || 5);
1852 this.create = sb.getAttribute('item-create') || '.create-item-input';
1853 this.template = sb.getAttribute('item-template') || 'script[type="item-template"]';
1856 ul = sb.querySelector('ul'),
1857 items = ul.querySelectorAll('li'),
1858 more = sb.appendChild(E('span', { class: 'more', tabindex: -1 }, '···')),
1859 open = sb.appendChild(E('span', { class: 'open', tabindex: -1 }, 'â–¾')),
1860 canary = sb.appendChild(E('div')),
1861 create = sb.querySelector(this.create),
1862 ndisplay = this.display_items,
1866 for (var i = 0; i < items.length; i++) {
1867 sbox.transformItem(sb, items[i]);
1869 if (items[i].hasAttribute('selected') && ndisplay-- > 0)
1870 items[i].setAttribute('display', n++);
1874 var sel = sb.querySelectorAll('[selected]');
1876 sel.forEach(function(s) {
1877 s.removeAttribute('selected');
1880 var s = sel[0] || items[0];
1882 s.setAttribute('selected', '');
1883 s.setAttribute('display', n++);
1888 if (this.optional && !ul.querySelector('li[value=""]')) {
1889 var placeholder = E('li', { placeholder: '' }, this.placeholder);
1890 ul.firstChild ? ul.insertBefore(placeholder, ul.firstChild) : ul.appendChild(placeholder);
1894 sbox.saveValues(sb, ul);
1896 ul.setAttribute('tabindex', -1);
1897 sb.setAttribute('tabindex', 0);
1900 sb.setAttribute('more', '')
1902 sb.removeAttribute('more');
1904 if (ndisplay === this.display_items)
1905 sb.setAttribute('empty', '')
1907 sb.removeAttribute('empty');
1909 more.innerHTML = (ndisplay === this.display_items) ? this.placeholder : '···';
1912 sb.addEventListener('click', function(ev) {
1913 if (!this.hasAttribute('open')) {
1914 if (ev.target.nodeName.toLowerCase() !== 'input')
1915 sbox.openDropdown(this);
1918 var li = findParent(ev.target, 'li');
1919 if (li && li.parentNode.classList.contains('dropdown'))
1920 sbox.toggleItem(this, li);
1923 ev.preventDefault();
1924 ev.stopPropagation();
1927 sb.addEventListener('keydown', function(ev) {
1928 if (ev.target.nodeName.toLowerCase() === 'input')
1931 if (!this.hasAttribute('open')) {
1932 switch (ev.keyCode) {
1937 sbox.openDropdown(this);
1938 ev.preventDefault();
1943 var active = findParent(document.activeElement, 'li');
1945 switch (ev.keyCode) {
1947 sbox.closeDropdown(this);
1952 if (!active.hasAttribute('selected'))
1953 sbox.toggleItem(this, active);
1954 sbox.closeDropdown(this);
1955 ev.preventDefault();
1961 sbox.toggleItem(this, active);
1962 ev.preventDefault();
1967 if (active && active.previousElementSibling) {
1968 sbox.setFocus(this, active.previousElementSibling);
1969 ev.preventDefault();
1974 if (active && active.nextElementSibling) {
1975 sbox.setFocus(this, active.nextElementSibling);
1976 ev.preventDefault();
1983 sb.addEventListener('cbi-dropdown-close', function(ev) {
1984 sbox.closeDropdown(this, true);
1987 if ('ontouchstart' in window) {
1988 sb.addEventListener('touchstart', function(ev) { ev.stopPropagation(); });
1989 window.addEventListener('touchstart', sbox.closeAllDropdowns);
1992 sb.addEventListener('mouseover', function(ev) {
1993 if (!this.hasAttribute('open'))
1996 var li = findParent(ev.target, 'li');
1998 if (li.parentNode.classList.contains('dropdown'))
1999 sbox.setFocus(this, li);
2001 ev.stopPropagation();
2005 sb.addEventListener('focus', function(ev) {
2006 document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) {
2007 if (s !== this || this.hasAttribute('open'))
2008 s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {}));
2012 canary.addEventListener('focus', function(ev) {
2013 sbox.closeDropdown(this.parentNode);
2016 window.addEventListener('mouseover', sbox.setFocus);
2017 window.addEventListener('click', sbox.closeAllDropdowns);
2021 create.addEventListener('keydown', function(ev) {
2022 switch (ev.keyCode) {
2024 sbox.createItems(sb, this.value);
2025 ev.preventDefault();
2032 create.addEventListener('focus', function(ev) {
2033 var cbox = findParent(this, 'li').querySelector('input[type="checkbox"]');
2034 if (cbox) cbox.checked = true;
2035 sb.setAttribute('locked-in', '');
2038 create.addEventListener('blur', function(ev) {
2039 var cbox = findParent(this, 'li').querySelector('input[type="checkbox"]');
2040 if (cbox) cbox.checked = false;
2041 sb.removeAttribute('locked-in');
2044 var li = findParent(create, 'li');
2046 li.setAttribute('unselectable', '');
2047 li.addEventListener('click', function(ev) {
2048 this.querySelector(sbox.create).focus();
2053 cbi_dropdown_init.prototype = CBIDropdown;
2055 function cbi_update_table(table, data, placeholder) {
2056 target = isElem(table) ? table : document.querySelector(table);
2058 if (!isElem(target))
2061 target.querySelectorAll('.tr.table-titles, .cbi-section-table-titles').forEach(function(thead) {
2064 thead.querySelectorAll('.th').forEach(function(th) {
2068 if (Array.isArray(data)) {
2069 var n = 0, rows = target.querySelectorAll('.tr');
2071 data.forEach(function(row) {
2072 var trow = E('div', { 'class': 'tr' });
2074 for (var i = 0; i < titles.length; i++) {
2075 var text = titles[i].innerText;
2076 var td = trow.appendChild(E('div', {
2077 'class': titles[i].className,
2078 'data-title': text ? text.trim() : null
2081 td.classList.remove('th');
2082 td.classList.add('td');
2085 trow.classList.add('cbi-rowstyle-%d'.format((n++ % 2) ? 2 : 1));
2088 target.replaceChild(trow, rows[n]);
2090 target.appendChild(trow);
2094 target.removeChild(rows[n]);
2096 if (placeholder && target.firstElementChild === target.lastElementChild) {
2097 var trow = target.appendChild(E('div', { 'class': 'tr placeholder' }));
2098 var td = trow.appendChild(E('div', { 'class': titles[0].className }, placeholder));
2100 td.classList.remove('th');
2101 td.classList.add('td');
2105 thead.parentNode.style.display = 'none';
2107 thead.parentNode.querySelectorAll('.tr, .cbi-section-table-row').forEach(function(trow) {
2108 if (trow !== thead) {
2110 trow.querySelectorAll('.th, .td').forEach(function(td) {
2111 if (n < titles.length) {
2112 var text = (titles[n++].innerText || '').trim();
2114 td.setAttribute('data-title', text);
2120 thead.parentNode.style.display = '';
2125 document.addEventListener('DOMContentLoaded', function() {
2126 document.querySelectorAll('.table').forEach(cbi_update_table);