nb.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. /*
  2. Copyright 2016-100500 Ivan Grynkin
  3. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
  4. to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
  5. 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:
  6. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  7. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  8. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  9. 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
  10. DEALINGS IN THE SOFTWARE.
  11. */
  12. function nbInit(a,b){
  13. var root=document, $s=a;
  14. function searchElement(root, selector){
  15. if (root === document){
  16. var items = [root.getElementById(selector)];
  17. }
  18. else {
  19. items = root.querySelectorAll("#" + selector);
  20. }
  21. items = items[0] ? items : root.querySelectorAll(selector);
  22. items = items.length ? items : root === document ? root.getElementsByName(selector) : root.querySelectorAll("[name='" + selector + "']");
  23. items = items.length ? items : root.getElementsByClassName(selector);
  24. return items;
  25. }
  26. if (a instanceof HTMLElement){
  27. root = a;
  28. $s = b;
  29. }
  30. else if (typeof a === "string"){
  31. root = searchElement(document, a)[0];
  32. $s = b;
  33. }
  34. if (b instanceof HTMLElement){
  35. root = b;
  36. }
  37. else if (typeof b === "string"){
  38. root = searchElement(document, a)[0];
  39. }
  40. if (typeof $s === "undefined"){
  41. $s = {}
  42. }
  43. function nBind(callback, prop, direction){
  44. direction = direction || "write";
  45. for (var selector in $s){
  46. var result = [];
  47. selector = prop || selector; //change selector to passed if it
  48. var items = searchElement(root, selector);
  49. for (var i=0,item=items[i];i<items.length;i++,item=items[i]){
  50. if (direction == "write" && Array.isArray($s[selector]) && (item.children.length == 0 || (items.length == $s[selector].length && items.length > 1))){
  51. callback(item, $s, selector, $s[selector][i]);
  52. }
  53. else {
  54. var res = callback(item, $s, selector);
  55. if (typeof res !== "undefined"){
  56. result.push(res)
  57. }
  58. }
  59. }
  60. $s[selector] = result.length ? (result.length == 1 ? result[0] : result) : $s[selector];
  61. if (prop) return; //exit if selector passed, no iteration
  62. }
  63. }
  64. function syncToDOM(prop){
  65. nBind(function (item, $s, selector, value, key){
  66. value = typeof value === 'undefined' ? $s[selector] : value;
  67. var keyExists = typeof key !== 'undefined';
  68. if (!item.children.length && !Array.isArray(value) && typeof value === 'object'){ //hash array on single leaf node -> set attrs on the tag
  69. for (var key in value){
  70. item[key] = value[key];
  71. }
  72. item.nbData = value;
  73. return;
  74. }
  75. if (keyExists && "value" in item){ //if hash key-value pair. Usable for select > option
  76. item.value = key;
  77. }
  78. if (typeof value === "boolean" && item.type !== 'checkbox'){ //boolean means visibility, except checkbox
  79. if (value){
  80. item.style.display = "originalDisplay" in item ? item.originalDisplay : "";
  81. }
  82. else {
  83. item.originalDisplay = item.style.display;
  84. item.style.display = "none";
  85. }
  86. return;
  87. }
  88. if (item.type === 'radio' && !keyExists){ //radiogroup set
  89. if (item.value === value){ //only item with right value to set
  90. item.checked = true;
  91. }
  92. return;
  93. }
  94. if (item.type === 'checkbox' && !keyExists){ //checkbox setting by boolean
  95. item.checked = !!value;
  96. return;
  97. }
  98. if (item.children.length && typeof value === "object"){ //recursive fill
  99. item.copy = item.copy || item.cloneNode(true); //original node
  100. item.nbData = value;
  101. var originalChildren = item.copy.children;
  102. var i = 0;
  103. var isArray = Array.isArray(value); //different logic for array and objects
  104. if (!isArray){ // if first key in array find as class name in one of subnodes
  105. var classFound = false;
  106. for (var key in value){
  107. if (item.getElementsByClassName(key).length){
  108. classFound = true;
  109. break;
  110. }
  111. }
  112. if (classFound){
  113. for (var key in value){
  114. var classSubnodes = item.getElementsByClassName(key);
  115. for (var i=0;i<classSubnodes.length;i++){
  116. arguments.callee(classSubnodes[i], $s, selector, value[key]); // recursively fill subnode with that data. No reason to pass a key, because key are class selector, not value for option
  117. }
  118. }
  119. return;
  120. }
  121. }
  122. item.innerHTML = ""; //remove sub nodes
  123. for (var key in value){ //otherwise iterate over array or object
  124. var newNode = originalChildren[i].cloneNode(true);
  125. item.appendChild(newNode);
  126. if (isArray){
  127. arguments.callee(newNode, $s, selector, value[key]);
  128. }
  129. else {
  130. arguments.callee(newNode, $s, selector, value[key], key);
  131. }
  132. i = (i +1) % originalChildren.length;
  133. }
  134. return;
  135. }
  136. if (!keyExists){ //default logic: set text or value to data value
  137. item[("value" in item) && item.tagName !== 'LI' ? "value" : "innerText"] = value;
  138. }
  139. else {
  140. item.innerText = value; // do not try to overwrite value on option nodes
  141. }
  142. },prop, "write");
  143. }
  144. function syncFromDOM(prop){
  145. nBind(function(item, $s, selector){
  146. if (item.type === 'radio'){
  147. if (item.checked)
  148. return item.value;
  149. return;
  150. }
  151. if (item.type === 'checkbox'){
  152. return item.checked;
  153. }
  154. if (item.tagName === 'SELECT'){
  155. return item.value;
  156. }
  157. if ("nbData" in item){
  158. var value = item.nbData;
  159. var isArray = Array.isArray(value); //different logic for array and objects
  160. if (item.children.length && typeof value === "object"){ //recursive fill
  161. if (!isArray){ // if first key in array find as class name in one of subnodes
  162. var classFound = false;
  163. for (var key in value){
  164. if (item.getElementsByClassName(key).length){
  165. classFound = true;
  166. break;
  167. }
  168. }
  169. if (classFound){
  170. for (var key in value){
  171. var classSubnodes = item.getElementsByClassName(key);
  172. for (var i=0;i<classSubnodes.length;i++){
  173. value[key] = arguments.callee(classSubnodes[i], $s, selector); // recursively fill subnode with that data. No reason to pass a key, because key are class selector, not value for option
  174. }
  175. }
  176. return value;
  177. }
  178. }
  179. else{
  180. value.length = 0;
  181. for (var key=0;key<item.children.length;key++){ //otherwise iterate over array or object
  182. value[key] = arguments.callee(item.children[key], $s, selector);
  183. }
  184. return value;
  185. }
  186. //else {
  187. //for (var key in value){
  188. //value[key] = arguments.callee(item.children[key], $s, selector);
  189. //}
  190. //}
  191. }
  192. if (!isArray && typeof value === 'object' && item.children.length === 0){ //hash array on single leaf node -> set attrs on the tag
  193. for (var key in value){
  194. value[key] = item[key];
  195. }
  196. return value;
  197. }
  198. if (!isArray && typeof value === 'object'){ //hash array on single leaf node -> set attrs on the tag
  199. value = {};
  200. for (var i=0;i<item.children.length;i++){
  201. var childItem = item.children[i];
  202. value[childItem.value] = childItem.innerText;
  203. }
  204. return value;
  205. }
  206. }
  207. if ("value" in item){
  208. return item.value;
  209. }
  210. return item.innerText;
  211. },prop, "read");
  212. }
  213. syncToDOM();
  214. var scopeProxy = new Proxy($s,{
  215. get(target, prop){
  216. //if (!(prop in target) && (document.getElementById(prop) ||
  217. //document.querySelectorAll(prop).length ||
  218. //document.getElementsByName(prop).length ||
  219. //document.getElementsByClassName(prop).length)){
  220. target[prop] = null;
  221. //}
  222. syncFromDOM(prop);
  223. return target[prop];
  224. },
  225. set(target, prop, value){
  226. //syncFromDOM();
  227. target[prop] = value
  228. syncToDOM(prop);
  229. return true;
  230. },
  231. })
  232. return scopeProxy;
  233. }