nb.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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. var items = [root.getElementById(selector)];
  16. items = items[0] ? items : root.querySelectorAll(selector);
  17. items = items.length ? items : root.getElementsByName(selector);
  18. items = items.length ? items : root.getElementsByClassName(selector);
  19. return items;
  20. }
  21. if (a instanceof HTMLElement){
  22. root = a;
  23. $s = b;
  24. }
  25. else if (typeof a === "string"){
  26. root = searchElement(document, a)[0];
  27. $s = b;
  28. }
  29. if (b instanceof HTMLElement){
  30. root = b;
  31. }
  32. else if (typeof b === "string"){
  33. root = searchElement(document, a)[0];
  34. }
  35. function nBind(callback, prop, direction){
  36. direction = direction || "write";
  37. for (var selector in $s){
  38. var result = [];
  39. selector = prop || selector; //change selector to passed if it
  40. var items = [document.getElementById(selector)];
  41. items = items[0] ? items : document.querySelectorAll(selector);
  42. items = items.length ? items : document.getElementsByName(selector);
  43. items = items.length ? items : document.getElementsByClassName(selector);
  44. for (var i=0,item=items[i];i<items.length;i++,item=items[i]){
  45. if (direction == "write" && Array.isArray($s[selector]) && (item.children.length == 0 || (items.length == $s[selector].length))){
  46. callback(item, $s, selector, $s[selector][i]);
  47. }
  48. else {
  49. var res = callback(item, $s, selector);
  50. if (typeof res !== "undefined"){
  51. result.push(res)
  52. }
  53. }
  54. }
  55. $s[selector] = result.length ? (result.length == 1 ? result[0] : result) : $s[selector];
  56. if (prop) return; //exit if selector passed, no iteration
  57. }
  58. }
  59. function syncToDOM(prop){
  60. nBind(function (item, $s, selector, value, key){
  61. value = typeof value === 'undefined' ? $s[selector] : value;
  62. var keyExists = typeof key !== 'undefined';
  63. if (!item.children.length && !Array.isArray(value) && typeof value === 'object'){ //hash array on single leaf node -> set attrs on the tag
  64. for (var key in value){
  65. item[key] = value[key];
  66. }
  67. item.nbData = value;
  68. return;
  69. }
  70. if (keyExists && "value" in item){ //if hash key-value pair. Usable for select > option
  71. item.value = key;
  72. }
  73. if (typeof value === "boolean" && item.type !== 'checkbox'){ //boolean means visibility, except checkbox
  74. if (value){
  75. item.style.display = "originalDisplay" in item ? item.originalDisplay : "";
  76. }
  77. else {
  78. item.originalDisplay = item.style.display;
  79. item.style.display = "none";
  80. }
  81. return;
  82. }
  83. if (item.type === 'radio' && !keyExists){ //radiogroup set
  84. if (item.value === value){ //only item with right value to set
  85. item.checked = true;
  86. }
  87. return;
  88. }
  89. if (item.type === 'checkbox' && !keyExists){ //checkbox setting by boolean
  90. item.checked = !!value;
  91. return;
  92. }
  93. if (item.children.length && typeof value === "object"){ //recursive fill
  94. item.copy = item.copy || item.cloneNode(true); //original node
  95. item.nbData = value;
  96. var originalChildren = item.copy.children;
  97. var i = 0;
  98. var isArray = Array.isArray(value); //different logic for array and objects
  99. if (!isArray){ // if first key in array find as class name in one of subnodes
  100. var classFound = false;
  101. for (var key in value){
  102. if (item.getElementsByClassName(key).length){
  103. classFound = true;
  104. break;
  105. }
  106. }
  107. if (classFound){
  108. for (var key in value){
  109. var classSubnodes = item.getElementsByClassName(key);
  110. for (var i=0;i<classSubnodes.length;i++){
  111. 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
  112. }
  113. }
  114. return;
  115. }
  116. }
  117. item.innerHTML = ""; //remove sub nodes
  118. for (var key in value){ //otherwise iterate over array or object
  119. var newNode = originalChildren[i].cloneNode(true);
  120. item.appendChild(newNode);
  121. if (isArray){
  122. arguments.callee(newNode, $s, selector, value[key]);
  123. }
  124. else {
  125. arguments.callee(newNode, $s, selector, value[key], key);
  126. }
  127. i = (i +1) % originalChildren.length;
  128. }
  129. return;
  130. }
  131. if (!keyExists){ //default logic: set text or value to data value
  132. item["value" in item ? "value" : "innerText"] = value;
  133. }
  134. else {
  135. item.innerText = value; // do not try to overwrite value on option nodes
  136. }
  137. },prop, "write");
  138. }
  139. function syncFromDOM(prop){
  140. nBind(function(item, $s, selector){
  141. if (item.type === 'radio'){
  142. if (item.checked)
  143. return item.value;
  144. return;
  145. }
  146. if (item.type === 'checkbox'){
  147. return item.checked;
  148. }
  149. if (item.tagName === 'SELECT'){
  150. return item.value;
  151. }
  152. if ("nbData" in item){
  153. var value = item.nbData;
  154. var isArray = Array.isArray(value); //different logic for array and objects
  155. if (item.children.length && typeof value === "object"){ //recursive fill
  156. if (!isArray){ // if first key in array find as class name in one of subnodes
  157. var classFound = false;
  158. for (var key in value){
  159. if (item.getElementsByClassName(key).length){
  160. classFound = true;
  161. break;
  162. }
  163. }
  164. if (classFound){
  165. for (var key in value){
  166. var classSubnodes = item.getElementsByClassName(key);
  167. for (var i=0;i<classSubnodes.length;i++){
  168. 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
  169. }
  170. }
  171. return value;
  172. }
  173. }
  174. else{
  175. value.length = 0;
  176. for (var key=0;key<item.children.length;key++){ //otherwise iterate over array or object
  177. value[key] = arguments.callee(item.children[key], $s, selector);
  178. }
  179. return value;
  180. }
  181. //else {
  182. //for (var key in value){
  183. //value[key] = arguments.callee(item.children[key], $s, selector);
  184. //}
  185. //}
  186. }
  187. if (!isArray && typeof value === 'object' && item.children.length === 0){ //hash array on single leaf node -> set attrs on the tag
  188. for (var key in value){
  189. value[key] = item[key];
  190. }
  191. return value;
  192. }
  193. if (!isArray && typeof value === 'object'){ //hash array on single leaf node -> set attrs on the tag
  194. value = {};
  195. for (var i=0;i<item.children.length;i++){
  196. var childItem = item.children[i];
  197. value[childItem.value] = childItem.innerText;
  198. }
  199. return value;
  200. }
  201. }
  202. if ("value" in item){
  203. return item.value;
  204. }
  205. return item.innerText;
  206. },prop, "read");
  207. }
  208. syncToDOM();
  209. var scopeProxy = new Proxy($s,{
  210. get(target, prop){
  211. //if (!(prop in target) && (document.getElementById(prop) ||
  212. //document.querySelectorAll(prop).length ||
  213. //document.getElementsByName(prop).length ||
  214. //document.getElementsByClassName(prop).length)){
  215. target[prop] = null;
  216. //}
  217. syncFromDOM(prop);
  218. return target[prop];
  219. },
  220. set(target, prop, value){
  221. //syncFromDOM();
  222. target[prop] = value
  223. syncToDOM(prop);
  224. return true;
  225. },
  226. })
  227. return scopeProxy;
  228. }