nb.js 12 KB

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