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

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.demoEngine.DemoNavigator");
  9. dojo.require("dojo.widget.*");
  10. dojo.require("dojo.widget.HtmlWidget");
  11. dojo.require("dojo.widget.Button");
  12. dojo.require("dojo.widget.demoEngine.DemoItem");
  13. dojo.require("dojo.io.*");
  14. dojo.require("dojo.lfx.*");
  15. dojo.require("dojo.lang.common");
  16. dojo.widget.defineWidget("my.widget.demoEngine.DemoNavigator", dojo.widget.HtmlWidget, {templateString:"<div dojoAttachPoint="domNode">nt<table width="100%" cellspacing="0" cellpadding="5">ntt<tbody>nttt<tr dojoAttachPoint="navigationContainer">ntttt<td dojoAttachPoint="categoriesNode" valign="top" width="1%">nttttt<h1>Categories</h1>nttttt<div dojoAttachPoint="categoriesButtonsNode"></div>ntttt</td>nntttt<td dojoAttachPoint="demoListNode" valign="top">nttttt<div dojoAttachPoint="demoListWrapperNode">ntttttt<div dojoAttachPoint="demoListContainerNode">ntttttt</div>nttttt</div>ntttt</td>nttt</tr>nttt<tr>ntttt<td colspan="2">nttttt<div dojoAttachPoint="demoNode"></div>ntttt</td>nttt</tr>ntt</tbody>nt</table>n</div>n", templateCssString:".demoNavigatorListWrapper {ntborder:1px solid #dcdbdb;ntbackground-color:#f8f8f8;ntpadding:2px;n}nn.demoNavigatorListContainer {ntborder:1px solid #f0f0f0;ntbackground-color:#fff;ntpadding:1em;n}nn.demoNavigator h1 {ntmargin-top: 0px;ntmargin-bottom: 10px;ntfont-size: 1.2em;ntborder-bottom:1px dotted #a9ccf5;n}nn.demoNavigator .dojoButton {ntmargin-bottom: 5px;n}nn.demoNavigator .dojoButton .dojoButtonContents {ntfont-size: 1.1em;ntwidth: 100px;ntcolor: black;n}n", templateCssPath:dojo.uri.moduleUri("dojo.widget", "demoEngine/templates/DemoNavigator.css"), postCreate:function () {
  17. dojo.html.addClass(this.domNode, this.domNodeClass);
  18. dojo.html.addClass(this.demoListWrapperNode, this.demoListWrapperClass);
  19. dojo.html.addClass(this.demoListContainerNode, this.demoListContainerClass);
  20. if (dojo.render.html.ie) {
  21. dojo.debug("render ie");
  22. dojo.html.hide(this.demoListWrapperNode);
  23. } else {
  24. dojo.debug("render non-ie");
  25. dojo.lfx.html.fadeHide(this.demoListWrapperNode, 0).play();
  26. }
  27. this.getRegistry(this.demoRegistryUrl);
  28. this.demoContainer = dojo.widget.createWidget("DemoContainer", {returnImage:this.returnImage}, this.demoNode);
  29. dojo.event.connect(this.demoContainer, "returnToDemos", this, "returnToDemos");
  30. this.demoContainer.hide();
  31. }, returnToDemos:function () {
  32. this.demoContainer.hide();
  33. if (dojo.render.html.ie) {
  34. dojo.debug("render ie");
  35. dojo.html.show(this.navigationContainer);
  36. } else {
  37. dojo.debug("render non-ie");
  38. dojo.lfx.html.fadeShow(this.navigationContainer, 250).play();
  39. }
  40. dojo.lang.forEach(this.categoriesChildren, dojo.lang.hitch(this, function (child) {
  41. child.checkSize();
  42. }));
  43. dojo.lang.forEach(this.demoListChildren, dojo.lang.hitch(this, function (child) {
  44. child.checkSize();
  45. }));
  46. }, show:function () {
  47. dojo.html.show(this.domNode);
  48. dojo.html.setOpacity(this.domNode, 1);
  49. dojo.html.setOpacity(this.navigationContainer, 1);
  50. dojo.lang.forEach(this.categoriesChildren, dojo.lang.hitch(this, function (child) {
  51. child.checkSize();
  52. }));
  53. dojo.lang.forEach(this.demoListChildren, dojo.lang.hitch(this, function (child) {
  54. child.checkSize();
  55. }));
  56. }, getRegistry:function (url) {
  57. dojo.io.bind({url:url, load:dojo.lang.hitch(this, this.processRegistry), mimetype:"text/json"});
  58. }, processRegistry:function (type, registry, e) {
  59. dojo.debug("Processing Registry");
  60. this.registry = registry;
  61. dojo.lang.forEach(this.registry.navigation, dojo.lang.hitch(this, this.addCategory));
  62. }, addCategory:function (category) {
  63. var newCat = dojo.widget.createWidget("Button", {caption:category.name});
  64. if (!dojo.lang.isObject(this.registry.categories)) {
  65. this.registry.categories = function () {
  66. };
  67. }
  68. this.registry.categories[category.name] = category;
  69. this.categoriesChildren.push(newCat);
  70. this.categoriesButtonsNode.appendChild(newCat.domNode);
  71. newCat.domNode.categoryName = category.name;
  72. dojo.event.connect(newCat, "onClick", this, "onSelectCategory");
  73. }, addDemo:function (demoName) {
  74. var demo = this.registry.definitions[demoName];
  75. if (dojo.render.html.ie) {
  76. dojo.html.show(this.demoListWrapperNode);
  77. } else {
  78. dojo.lfx.html.fadeShow(this.demoListWrapperNode, 250).play();
  79. }
  80. var newDemo = dojo.widget.createWidget("DemoItem", {viewDemoImage:this.viewDemoImage, name:demoName, description:demo.description, thumbnail:demo.thumbnail});
  81. this.demoListChildren.push(newDemo);
  82. this.demoListContainerNode.appendChild(newDemo.domNode);
  83. dojo.event.connect(newDemo, "onSelectDemo", this, "onSelectDemo");
  84. }, onSelectCategory:function (e) {
  85. catName = e.currentTarget.categoryName;
  86. dojo.debug("Selected Category: " + catName);
  87. dojo.lang.forEach(this.demoListChildren, function (child) {
  88. child.destroy();
  89. });
  90. this.demoListChildren = [];
  91. dojo.lang.forEach(this.registry.categories[catName].demos, dojo.lang.hitch(this, function (demoName) {
  92. this.addDemo(demoName);
  93. }));
  94. }, onSelectDemo:function (e) {
  95. dojo.debug("Demo Selected: " + e.target.name);
  96. if (dojo.render.html.ie) {
  97. dojo.debug("render ie");
  98. dojo.html.hide(this.navigationContainer);
  99. this.demoContainer.show();
  100. this.demoContainer.showDemo();
  101. } else {
  102. dojo.debug("render non-ie");
  103. dojo.lfx.html.fadeHide(this.navigationContainer, 250, null, dojo.lang.hitch(this, function () {
  104. this.demoContainer.show();
  105. this.demoContainer.showDemo();
  106. })).play();
  107. }
  108. this.demoContainer.loadDemo(this.registry.definitions[e.target.name].url);
  109. this.demoContainer.setName(e.target.name);
  110. this.demoContainer.setSummary(this.registry.definitions[e.target.name].description);
  111. }}, "", function () {
  112. this.demoRegistryUrl = "demoRegistry.json";
  113. this.registry = function () {
  114. };
  115. this.categoriesNode = "";
  116. this.categoriesButtonsNode = "";
  117. this.navigationContainer = "";
  118. this.domNodeClass = "demoNavigator";
  119. this.demoNode = "";
  120. this.demoContainer = "";
  121. this.demoListWrapperNode = "";
  122. this.demoListWrapperClass = "demoNavigatorListWrapper";
  123. this.demoListContainerClass = "demoNavigatorListContainer";
  124. this.returnImage = "images/dojoDemos.gif";
  125. this.viewDemoImage = "images/viewDemo.png";
  126. this.demoListChildren = [];
  127. this.categoriesChildren = [];
  128. });