nb.js 12 KB

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