/* Copyright 2016-100500 Ivan Grynkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ function nbInit(a,b){ var root=document, $s=a; var dom = null; var closure = null; function searchElement(root, selector){ if ((selector.indexOf('|dom') === selector.length - 4) && (selector.length > 4)){ selector = selector.slice(0,selector.length - 4) dom = true; } if ((selector.indexOf('|closure') === selector.length - 8) && (selector.length > 8)){ selector = selector.slice(0,selector.length - 8) closure = true; } if (root === document){ var items = [root.getElementById(selector)]; } else { items = root.querySelectorAll("#" + selector); } items = items[0] ? items : root.querySelectorAll(selector); items = items.length ? items : root === document ? root.getElementsByName(selector) : root.querySelectorAll("[name='" + selector + "']"); items = items.length ? items : root.getElementsByClassName(selector); return items; } if (a instanceof HTMLElement){ root = a; $s = b; } else if (typeof a === "string"){ root = searchElement(document, a)[0]; $s = b; } if (b instanceof HTMLElement){ root = b; } else if (typeof b === "string"){ root = searchElement(document, a)[0]; } if (typeof $s === "undefined"){ $s = {} } function nBind(callback, prop, direction){ direction = direction || "write"; for (var selector in $s){ var result = []; selector = prop || selector; //change selector to passed if it var items = searchElement(root, selector); for (var i=0,item=items[i];i 1))){ if (closure){ callback(item, $s, selector, $s[selector]); } else { callback(item, $s, selector, $s[selector][i]); } } else { var res = callback(item, $s, selector); if (typeof res !== "undefined"){ result.push(res) } } } $s[selector] = result.length ? (result.length == 1 ? result[0] : result) : $s[selector]; if (prop) return; //exit if selector passed, no iteration } } function recursiveObjectSet(item, value){ if (typeof item === 'undefined'){ return; } for (var key in value){ if (typeof value[key] !== 'object'){ item[key] = value[key]; } else { recursiveObjectSet(item[key], value[key]); } } } function syncToDOM(prop){ nBind(function (item, $s, selector, value, key, thisByClass){ value = typeof value === 'undefined' ? $s[selector] : value; var keyExists = typeof key !== 'undefined'; if (closure){ item.nbData = value[0].apply(item, value.slice(1)) return; } if ((!item.children.length && !Array.isArray(value) && typeof value === 'object') || thisByClass || dom){ //hash array on single leaf node -> set attrs on the tag recursiveObjectSet(item,value); if (!thisByClass && !dom){ item.nbData = value; } return; } if (keyExists && "value" in item){ //if hash key-value pair. Usable for select > option item.value = key; } if (typeof value === "boolean" && item.type !== 'checkbox'){ //boolean means visibility, except checkbox if (value){ item.style.display = "originalDisplay" in item ? item.originalDisplay : ""; } else { item.originalDisplay = "originalDisplay" in item ? item.originalDisplay : item.style.display; item.style.display = "none"; } return; } if (item.type === 'radio' && !keyExists){ //radiogroup set if (item.value === value){ //only item with right value to set item.checked = true; } return; } if (item.type === 'checkbox' && !keyExists){ //checkbox setting by boolean item.checked = !!value; return; } if (item.children.length && typeof value === "object"){ //recursive fill item.copy = item.copy || item.cloneNode(true); //original node item.nbData = value; var originalChildren = item.copy.children; var i = 0; var isArray = Array.isArray(value); //different logic for array and objects if (!isArray){ // if first key in array find as class name in one of subnodes var classFound = false; for (var key in value){ if (item.getElementsByClassName(key).length){ classFound = true; break; } } if (classFound){ for (var key in value){ var classSubnodes = item.getElementsByClassName(key); for (var i=0;i set attrs on the tag for (var key in value){ value[key] = item[key]; } return value; } if (!isArray && typeof value === 'object'){ //hash array on single leaf node -> set attrs on the tag value = {}; for (var i=0;i