nb.js 10 KB

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