TreeBasicController.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:5k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.widget.TreeBasicController");
  9. dojo.require("dojo.event.*");
  10. dojo.require("dojo.json");
  11. dojo.require("dojo.io.*");
  12. dojo.widget.defineWidget("dojo.widget.TreeBasicController", dojo.widget.HtmlWidget, {widgetType:"TreeBasicController", DNDController:"", dieWithTree:false, initialize:function (args, frag) {
  13. if (this.DNDController == "create") {
  14. dojo.require("dojo.dnd.TreeDragAndDrop");
  15. this.DNDController = new dojo.dnd.TreeDNDController(this);
  16. }
  17. }, listenTree:function (tree) {
  18. dojo.event.topic.subscribe(tree.eventNames.createDOMNode, this, "onCreateDOMNode");
  19. dojo.event.topic.subscribe(tree.eventNames.treeClick, this, "onTreeClick");
  20. dojo.event.topic.subscribe(tree.eventNames.treeCreate, this, "onTreeCreate");
  21. dojo.event.topic.subscribe(tree.eventNames.treeDestroy, this, "onTreeDestroy");
  22. if (this.DNDController) {
  23. this.DNDController.listenTree(tree);
  24. }
  25. }, unlistenTree:function (tree) {
  26. dojo.event.topic.unsubscribe(tree.eventNames.createDOMNode, this, "onCreateDOMNode");
  27. dojo.event.topic.unsubscribe(tree.eventNames.treeClick, this, "onTreeClick");
  28. dojo.event.topic.unsubscribe(tree.eventNames.treeCreate, this, "onTreeCreate");
  29. dojo.event.topic.unsubscribe(tree.eventNames.treeDestroy, this, "onTreeDestroy");
  30. }, onTreeDestroy:function (message) {
  31. var tree = message.source;
  32. this.unlistenTree(tree);
  33. if (this.dieWithTree) {
  34. this.destroy();
  35. }
  36. }, onCreateDOMNode:function (message) {
  37. var node = message.source;
  38. if (node.expandLevel > 0) {
  39. this.expandToLevel(node, node.expandLevel);
  40. }
  41. }, onTreeCreate:function (message) {
  42. var tree = message.source;
  43. var _this = this;
  44. if (tree.expandLevel) {
  45. dojo.lang.forEach(tree.children, function (child) {
  46. _this.expandToLevel(child, tree.expandLevel - 1);
  47. });
  48. }
  49. }, expandToLevel:function (node, level) {
  50. if (level == 0) {
  51. return;
  52. }
  53. var children = node.children;
  54. var _this = this;
  55. var handler = function (node, expandLevel) {
  56. this.node = node;
  57. this.expandLevel = expandLevel;
  58. this.process = function () {
  59. for (var i = 0; i < this.node.children.length; i++) {
  60. var child = node.children[i];
  61. _this.expandToLevel(child, this.expandLevel);
  62. }
  63. };
  64. };
  65. var h = new handler(node, level - 1);
  66. this.expand(node, false, h, h.process);
  67. }, onTreeClick:function (message) {
  68. var node = message.source;
  69. if (node.isLocked()) {
  70. return false;
  71. }
  72. if (node.isExpanded) {
  73. this.collapse(node);
  74. } else {
  75. this.expand(node);
  76. }
  77. }, expand:function (node, sync, callObj, callFunc) {
  78. node.expand();
  79. if (callFunc) {
  80. callFunc.apply(callObj, [node]);
  81. }
  82. }, collapse:function (node) {
  83. node.collapse();
  84. }, canMove:function (child, newParent) {
  85. if (child.actionIsDisabled(child.actions.MOVE)) {
  86. return false;
  87. }
  88. if (child.parent !== newParent && newParent.actionIsDisabled(newParent.actions.ADDCHILD)) {
  89. return false;
  90. }
  91. var node = newParent;
  92. while (node.isTreeNode) {
  93. if (node === child) {
  94. return false;
  95. }
  96. node = node.parent;
  97. }
  98. return true;
  99. }, move:function (child, newParent, index) {
  100. if (!this.canMove(child, newParent)) {
  101. return false;
  102. }
  103. var result = this.doMove(child, newParent, index);
  104. if (!result) {
  105. return result;
  106. }
  107. if (newParent.isTreeNode) {
  108. this.expand(newParent);
  109. }
  110. return result;
  111. }, doMove:function (child, newParent, index) {
  112. child.tree.move(child, newParent, index);
  113. return true;
  114. }, canRemoveNode:function (child) {
  115. if (child.actionIsDisabled(child.actions.REMOVE)) {
  116. return false;
  117. }
  118. return true;
  119. }, removeNode:function (node, callObj, callFunc) {
  120. if (!this.canRemoveNode(node)) {
  121. return false;
  122. }
  123. return this.doRemoveNode(node, callObj, callFunc);
  124. }, doRemoveNode:function (node, callObj, callFunc) {
  125. node.tree.removeNode(node);
  126. if (callFunc) {
  127. callFunc.apply(dojo.lang.isUndefined(callObj) ? this : callObj, [node]);
  128. }
  129. }, canCreateChild:function (parent, index, data) {
  130. if (parent.actionIsDisabled(parent.actions.ADDCHILD)) {
  131. return false;
  132. }
  133. return true;
  134. }, createChild:function (parent, index, data, callObj, callFunc) {
  135. if (!this.canCreateChild(parent, index, data)) {
  136. return false;
  137. }
  138. return this.doCreateChild.apply(this, arguments);
  139. }, doCreateChild:function (parent, index, data, callObj, callFunc) {
  140. var widgetType = data.widgetType ? data.widgetType : "TreeNode";
  141. var newChild = dojo.widget.createWidget(widgetType, data);
  142. parent.addChild(newChild, index);
  143. this.expand(parent);
  144. if (callFunc) {
  145. callFunc.apply(callObj, [newChild]);
  146. }
  147. return newChild;
  148. }});