___dtree.js
上传用户:lanchensha
上传日期:2022-02-27
资源大小:7530k
文件大小:12k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. // Node object
  2. function Node(id, pid, name, url, title, target, icon, iconOpen, open) {
  3. this.id = id;
  4. this.pid = pid;
  5. this.name = name;
  6. this.url = url;
  7. this.title = title;
  8. this.target = target;
  9. this.icon = icon;
  10. this.iconOpen = iconOpen;
  11. this._io = open || false;
  12. this._is = false;
  13. this._ls = false;
  14. this._hc = false;
  15. this._ai = 0;
  16. this._p;
  17. };
  18. // Tree object
  19. function dTree(objName) {
  20. this.config = {
  21. target : null,
  22. folderLinks : true,
  23. useSelection : true,
  24. useCookies : true,
  25. useLines : true,
  26. useIcons : true,
  27. useStatusText : false,
  28. closeSameLevel : false,
  29. inOrder : false
  30. }
  31. this.icon = {
  32. root : 'img/base.gif',
  33. folder : 'img/folder.gif',
  34. folderOpen : 'img/folderopen.gif',
  35. node : 'img/page.gif',
  36. empty : 'img/empty.gif',
  37. line : 'img/line.gif',
  38. join : 'img/join.gif',
  39. joinBottom : 'img/joinbottom.gif',
  40. plus : 'img/plus.gif',
  41. plusBottom : 'img/plusbottom.gif',
  42. minus : 'img/minus.gif',
  43. minusBottom : 'img/minusbottom.gif',
  44. nlPlus : 'img/nolines_plus.gif',
  45. nlMinus : 'img/nolines_minus.gif'
  46. };
  47. this.obj = objName;
  48. this.aNodes = [];
  49. this.aIndent = [];
  50. this.root = new Node(-1);
  51. this.selectedNode = null;
  52. this.selectedFound = false;
  53. this.completed = false;
  54. };
  55. // Adds a new node to the node array
  56. dTree.prototype.add = function(id, pid, name, url, title, target, icon, iconOpen, open) {
  57. this.aNodes[this.aNodes.length] = new Node(id, pid, name, url, title, target, icon, iconOpen, open);
  58. };
  59. // Open/close all nodes
  60. dTree.prototype.openAll = function() {
  61. this.oAll(true);
  62. };
  63. dTree.prototype.closeAll = function() {
  64. this.oAll(false);
  65. };
  66. // Outputs the tree to the page
  67. dTree.prototype.toString = function() {
  68. var str = '<div class="dtree">n';
  69. if (document.getElementById) {
  70. if (this.config.useCookies) this.selectedNode = this.getSelected();
  71. str += this.addNode(this.root);
  72. } else str += 'Browser not supported.';
  73. str += '</div>';
  74. if (!this.selectedFound) this.selectedNode = null;
  75. this.completed = true;
  76. return str;
  77. };
  78. // Creates the tree structure
  79. dTree.prototype.addNode = function(pNode) {
  80. var str = '';
  81. var n=0;
  82. if (this.config.inOrder) n = pNode._ai;
  83. for (n; n<this.aNodes.length; n++) {
  84. if (this.aNodes[n].pid == pNode.id) {
  85. var cn = this.aNodes[n];
  86. cn._p = pNode;
  87. cn._ai = n;
  88. this.setCS(cn);
  89. if (!cn.target && this.config.target) cn.target = this.config.target;
  90. if (cn._hc && !cn._io && this.config.useCookies) cn._io = this.isOpen(cn.id);
  91. if (!this.config.folderLinks && cn._hc) cn.url = null;
  92. if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound) {
  93. cn._is = true;
  94. this.selectedNode = n;
  95. this.selectedFound = true;
  96. }
  97. str += this.node(cn, n);
  98. if (cn._ls) break;
  99. }
  100. }
  101. return str;
  102. };
  103. // Creates the node icon, url and text
  104. dTree.prototype.node = function(node, nodeId) {
  105. var str = '<div class="dTreeNode">' + this.indent(node, nodeId);
  106. if (this.config.useIcons) {
  107. if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node._hc) ? this.icon.folder : this.icon.node);
  108. if (!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node;
  109. if (this.root.id == node.pid) {
  110. node.icon = this.icon.root;
  111. node.iconOpen = this.icon.root;
  112. }
  113. str += '<img id="i' + this.obj + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />';
  114. }
  115. if (node.url) {
  116. str += '<a id="s' + this.obj + nodeId + '" class="' + ((this.config.useSelection) ? ((node._is ? 'nodeSel' : 'node')) : 'node') + '" target="body" href="' + node.url + '"';
  117. if (node.title) str += ' title="' + node.title + '"';
  118. if (node.target) str += ' target="' + node.target + '"';
  119. if (this.config.useStatusText) str += ' onmouseover="window.status='' + node.name + '';return true;" onmouseout="window.status='';return true;" ';
  120. if (this.config.useSelection && ((node._hc && this.config.folderLinks) || !node._hc))
  121. str += ' onclick="javascript: ' + this.obj + '.s(' + nodeId + ');"';
  122. str += '>';
  123. }
  124. else if ((!this.config.folderLinks || !node.url) && node._hc && node.pid != this.root.id)
  125. str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');" class="node">';
  126. str += node.name;
  127. if (node.url || ((!this.config.folderLinks || !node.url) && node._hc)) str += '</a>';
  128. str += '</div>';
  129. if (node._hc) {
  130. str += '<div id="d' + this.obj + nodeId + '" class="clip" style="display:' + ((this.root.id == node.pid || node._io) ? 'block' : 'none') + ';">';
  131. str += this.addNode(node);
  132. str += '</div>';
  133. }
  134. this.aIndent.pop();
  135. return str;
  136. };
  137. // Adds the empty and line icons
  138. dTree.prototype.indent = function(node, nodeId) {
  139. var str = '';
  140. if (this.root.id != node.pid) {
  141. for (var n=0; n<this.aIndent.length; n++)
  142. str += '<img src="' + ( (this.aIndent[n] == 1 && this.config.useLines) ? this.icon.line : this.icon.empty ) + '" alt="" />';
  143. (node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);
  144. if (node._hc) {
  145. str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';
  146. if (!this.config.useLines) str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus;
  147. else str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) );
  148. str += '" alt="" /></a>';
  149. } else str += '<img src="' + ( (this.config.useLines) ? ((node._ls) ? this.icon.joinBottom : this.icon.join ) : this.icon.empty) + '" alt="" />';
  150. }
  151. return str;
  152. };
  153. // Checks if a node has any children and if it is the last sibling
  154. dTree.prototype.setCS = function(node) {
  155. var lastId;
  156. for (var n=0; n<this.aNodes.length; n++) {
  157. if (this.aNodes[n].pid == node.id) node._hc = true;
  158. if (this.aNodes[n].pid == node.pid) lastId = this.aNodes[n].id;
  159. }
  160. if (lastId==node.id) node._ls = true;
  161. };
  162. // Returns the selected node
  163. dTree.prototype.getSelected = function() {
  164. var sn = this.getCookie('cs' + this.obj);
  165. return (sn) ? sn : null;
  166. };
  167. // Highlights the selected node
  168. dTree.prototype.s = function(id) {
  169. if (!this.config.useSelection) return;
  170. var cn = this.aNodes[id];
  171. if (cn._hc && !this.config.folderLinks) return;
  172. if (this.selectedNode != id) {
  173. if (this.selectedNode || this.selectedNode==0) {
  174. eOld = document.getElementById("s" + this.obj + this.selectedNode);
  175. eOld.className = "node";
  176. }
  177. eNew = document.getElementById("s" + this.obj + id);
  178. eNew.className = "nodeSel";
  179. this.selectedNode = id;
  180. if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id);
  181. }
  182. };
  183. // Toggle Open or close
  184. dTree.prototype.o = function(id) {
  185. var cn = this.aNodes[id];
  186. this.nodeStatus(!cn._io, id, cn._ls);
  187. cn._io = !cn._io;
  188. if (this.config.closeSameLevel) this.closeLevel(cn);
  189. if (this.config.useCookies) this.updateCookie();
  190. };
  191. // Open or close all nodes
  192. dTree.prototype.oAll = function(status) {
  193. for (var n=0; n<this.aNodes.length; n++) {
  194. if (this.aNodes[n]._hc && this.aNodes[n].pid != this.root.id) {
  195. this.nodeStatus(status, n, this.aNodes[n]._ls)
  196. this.aNodes[n]._io = status;
  197. }
  198. }
  199. if (this.config.useCookies) this.updateCookie();
  200. };
  201. // Opens the tree to a specific node
  202. dTree.prototype.openTo = function(nId, bSelect, bFirst) {
  203. if (!bFirst) {
  204. for (var n=0; n<this.aNodes.length; n++) {
  205. if (this.aNodes[n].id == nId) {
  206. nId=n;
  207. break;
  208. }
  209. }
  210. }
  211. var cn=this.aNodes[nId];
  212. if (cn.pid==this.root.id || !cn._p) return;
  213. cn._io = true;
  214. cn._is = bSelect;
  215. if (this.completed && cn._hc) this.nodeStatus(true, cn._ai, cn._ls);
  216. if (this.completed && bSelect) this.s(cn._ai);
  217. else if (bSelect) this._sn=cn._ai;
  218. this.openTo(cn._p._ai, false, true);
  219. };
  220. // Closes all nodes on the same level as certain node
  221. dTree.prototype.closeLevel = function(node) {
  222. for (var n=0; n<this.aNodes.length; n++) {
  223. if (this.aNodes[n].pid == node.pid && this.aNodes[n].id != node.id && this.aNodes[n]._hc) {
  224. this.nodeStatus(false, n, this.aNodes[n]._ls);
  225. this.aNodes[n]._io = false;
  226. this.closeAllChildren(this.aNodes[n]);
  227. }
  228. }
  229. }
  230. // Closes all children of a node
  231. dTree.prototype.closeAllChildren = function(node) {
  232. for (var n=0; n<this.aNodes.length; n++) {
  233. if (this.aNodes[n].pid == node.id && this.aNodes[n]._hc) {
  234. if (this.aNodes[n]._io) this.nodeStatus(false, n, this.aNodes[n]._ls);
  235. this.aNodes[n]._io = false;
  236. this.closeAllChildren(this.aNodes[n]);
  237. }
  238. }
  239. }
  240. // Change the status of a node(open or closed)
  241. dTree.prototype.nodeStatus = function(status, id, bottom) {
  242. eDiv = document.getElementById('d' + this.obj + id);
  243. eJoin = document.getElementById('j' + this.obj + id);
  244. if (this.config.useIcons) {
  245. eIcon = document.getElementById('i' + this.obj + id);
  246. eIcon.src = (status) ? this.aNodes[id].iconOpen : this.aNodes[id].icon;
  247. }
  248. eJoin.src = (this.config.useLines)?
  249. ((status)?((bottom)?this.icon.minusBottom:this.icon.minus):((bottom)?this.icon.plusBottom:this.icon.plus)):
  250. ((status)?this.icon.nlMinus:this.icon.nlPlus);
  251. eDiv.style.display = (status) ? 'block': 'none';
  252. };
  253. // [Cookie] Clears a cookie
  254. dTree.prototype.clearCookie = function() {
  255. var now = new Date();
  256. var yesterday = new Date(now.getTime() - 1000 * 60 * 60 * 24);
  257. this.setCookie('co'+this.obj, 'cookieValue', yesterday);
  258. this.setCookie('cs'+this.obj, 'cookieValue', yesterday);
  259. };
  260. // [Cookie] Sets value in a cookie
  261. dTree.prototype.setCookie = function(cookieName, cookieValue, expires, path, domain, secure) {
  262. document.cookie =
  263. escape(cookieName) + '=' + escape(cookieValue)
  264. + (expires ? '; expires=' + expires.toGMTString() : '')
  265. + (path ? '; path=' + path : '')
  266. + (domain ? '; domain=' + domain : '')
  267. + (secure ? '; secure' : '');
  268. };
  269. // [Cookie] Gets a value from a cookie
  270. dTree.prototype.getCookie = function(cookieName) {
  271. var cookieValue = '';
  272. var posName = document.cookie.indexOf(escape(cookieName) + '=');
  273. if (posName != -1) {
  274. var posValue = posName + (escape(cookieName) + '=').length;
  275. var endPos = document.cookie.indexOf(';', posValue);
  276. if (endPos != -1) cookieValue = unescape(document.cookie.substring(posValue, endPos));
  277. else cookieValue = unescape(document.cookie.substring(posValue));
  278. }
  279. return (cookieValue);
  280. };
  281. // [Cookie] Returns ids of open nodes as a string
  282. dTree.prototype.updateCookie = function() {
  283. var str = '';
  284. for (var n=0; n<this.aNodes.length; n++) {
  285. if (this.aNodes[n]._io && this.aNodes[n].pid != this.root.id) {
  286. if (str) str += '.';
  287. str += this.aNodes[n].id;
  288. }
  289. }
  290. this.setCookie('co' + this.obj, str);
  291. };
  292. // [Cookie] Checks if a node id is in a cookie
  293. dTree.prototype.isOpen = function(id) {
  294. var aOpen = this.getCookie('co' + this.obj).split('.');
  295. for (var n=0; n<aOpen.length; n++)
  296. if (aOpen[n] == id) return true;
  297. return false;
  298. };
  299. // If Push and pop is not implemented by the browser
  300. if (!Array.prototype.push) {
  301. Array.prototype.push = function array_push() {
  302. for(var i=0;i<arguments.length;i++)
  303. this[this.length]=arguments[i];
  304. return this.length;
  305. }
  306. };
  307. if (!Array.prototype.pop) {
  308. Array.prototype.pop = function array_pop() {
  309. lastElement = this[this.length-1];
  310. this.length = Math.max(this.length-1,0);
  311. return lastElement;
  312. }
  313. };