nb.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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 recursiveObjectSet(item, value){
  65. for (var key in value){
  66. if (typeof value[key] !== 'object'){
  67. item[key] = value[key];
  68. }
  69. else {
  70. recursiveObjectSet(item[key], value[key]);
  71. }
  72. }
  73. }
  74. function syncToDOM(prop){
  75. nBind(function (item, $s, selector, value, key, thisByClass){
  76. value = typeof value === 'undefined' ? $s[selector] : value;
  77. var keyExists = typeof key !== 'undefined';
  78. if ((!item.children.length && !Array.isArray(value) && typeof value === 'object') || thisByClass){ //hash array on single leaf node -> set attrs on the tag
  79. recursiveObjectSet(item,value);
  80. //for (var key in value){
  81. //item[key] = value[key];
  82. //}
  83. if (!thisByClass){
  84. item.nbData = value;
  85. }
  86. return;
  87. }
  88. if (keyExists && "value" in item){ //if hash key-value pair. Usable for select > option
  89. item.value = key;
  90. }
  91. if (typeof value === "boolean" && item.type !== 'checkbox'){ //boolean means visibility, except checkbox
  92. if (value){
  93. item.style.display = "originalDisplay" in item ? item.originalDisplay : "";
  94. }
  95. else {
  96. item.originalDisplay = "originalDisplay" in item ? item.originalDisplay : item.style.display;
  97. item.style.display = "none";
  98. }
  99. return;
  100. }
  101. if (item.type === 'radio' && !keyExists){ //radiogroup set
  102. if (item.value === value){ //only item with right value to set
  103. item.checked = true;
  104. }
  105. return;
  106. }
  107. if (item.type === 'checkbox' && !keyExists){ //checkbox setting by boolean
  108. item.checked = !!value;
  109. return;
  110. }
  111. if (item.children.length && typeof value === "object"){ //recursive fill
  112. item.copy = item.copy || item.cloneNode(true); //original node
  113. item.nbData = value;
  114. var originalChildren = item.copy.children;
  115. var i = 0;
  116. var isArray = Array.isArray(value); //different logic for array and objects
  117. if (!isArray){ // if first key in array find as class name in one of subnodes
  118. var classFound = false;
  119. for (var key in value){
  120. if (item.getElementsByClassName(key).length){
  121. classFound = true;
  122. break;
  123. }
  124. }
  125. if (classFound){
  126. for (var key in value){
  127. var classSubnodes = item.getElementsByClassName(key);
  128. for (var i=0;i<classSubnodes.length;i++){
  129. 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
  130. }
  131. if (item.classList.contains(key)){
  132. arguments.callee(item, $s, selector, value[key], undefined, true); // recursively fill subnode with that data. No reason to pass a key, because key are class selector, not value for option
  133. }
  134. }
  135. return;
  136. }
  137. }
  138. item.innerHTML = ""; //remove sub nodes
  139. for (var key in value){ //otherwise iterate over array or object
  140. var newNode = originalChildren[i].cloneNode(true);
  141. item.appendChild(newNode);
  142. if (isArray){
  143. arguments.callee(newNode, $s, selector, value[key]);
  144. }
  145. else {
  146. arguments.callee(newNode, $s, selector, value[key], key);
  147. }
  148. i = (i +1) % originalChildren.length;
  149. }
  150. return;
  151. }
  152. if (!keyExists){ //default logic: set text or value to data value
  153. item[("value" in item) && item.tagName !== 'LI' ? "value" : "innerText"] = value;
  154. }
  155. else {
  156. item.innerText = value; // do not try to overwrite value on option nodes
  157. }
  158. },prop, "write");
  159. }
  160. function syncFromDOM(prop){
  161. nBind(function(item, $s, selector){
  162. if (item.type === 'radio'){
  163. if (item.checked)
  164. return item.value;
  165. return;
  166. }
  167. if (item.type === 'checkbox'){
  168. return item.checked;
  169. }
  170. if (item.tagName === 'SELECT'){
  171. return item.value;
  172. }
  173. if ("nbData" in item){
  174. var value = item.nbData;
  175. var isArray = Array.isArray(value); //different logic for array and objects
  176. if (item.children.length && typeof value === "object"){ //recursive fill
  177. if (!isArray){ // if first key in array find as class name in one of subnodes
  178. var classFound = false;
  179. for (var key in value){
  180. if (item.getElementsByClassName(key).length){
  181. classFound = true;
  182. break;
  183. }
  184. }
  185. if (classFound){
  186. for (var key in value){
  187. var classSubnodes = item.getElementsByClassName(key);
  188. for (var i=0;i<classSubnodes.length;i++){
  189. 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
  190. }
  191. }
  192. return value;
  193. }
  194. }
  195. else{
  196. value.length = 0;
  197. for (var key=0;key<item.children.length;key++){ //otherwise iterate over array or object
  198. value[key] = arguments.callee(item.children[key], $s, selector);
  199. }
  200. return value;
  201. }
  202. //else {
  203. //for (var key in value){
  204. //value[key] = arguments.callee(item.children[key], $s, selector);
  205. //}
  206. //}
  207. }
  208. if (!isArray && typeof value === 'object' && item.children.length === 0){ //hash array on single leaf node -> set attrs on the tag
  209. for (var key in value){
  210. value[key] = item[key];
  211. }
  212. return value;
  213. }
  214. if (!isArray && typeof value === 'object'){ //hash array on single leaf node -> set attrs on the tag
  215. value = {};
  216. for (var i=0;i<item.children.length;i++){
  217. var childItem = item.children[i];
  218. value[childItem.value] = childItem.innerText;
  219. }
  220. return value;
  221. }
  222. }
  223. if ("value" in item){
  224. return item.value;
  225. }
  226. return item.innerText;
  227. },prop, "read");
  228. }
  229. syncToDOM();
  230. var scopeProxy = new Proxy($s,{
  231. get(target, prop){
  232. //if (!(prop in target) && (document.getElementById(prop) ||
  233. //document.querySelectorAll(prop).length ||
  234. //document.getElementsByName(prop).length ||
  235. //document.getElementsByClassName(prop).length)){
  236. target[prop] = null;
  237. //}
  238. syncFromDOM(prop);
  239. return target[prop];
  240. },
  241. set(target, prop, value){
  242. //syncFromDOM();
  243. target[prop] = value
  244. syncToDOM(prop);
  245. return true;
  246. },
  247. })
  248. return scopeProxy;
  249. }
  250. function nbGetData(el){
  251. while (!('nbData' in el)){
  252. el = el.parentElement || return null;
  253. }
  254. return el.nbData;
  255. }