Sandcastle-header.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. (function () {
  2. "use strict";
  3. let defaultAction;
  4. let bucket = window.location.href;
  5. const pos = bucket.lastIndexOf("/");
  6. if (pos > 0 && pos < bucket.length - 1) {
  7. bucket = bucket.substring(pos + 1);
  8. }
  9. window.Sandcastle = {
  10. bucket: bucket,
  11. declare: function () {},
  12. highlight: function () {},
  13. registered: [],
  14. finishedLoading: function () {
  15. window.Sandcastle.reset();
  16. if (defaultAction) {
  17. window.Sandcastle.highlight(defaultAction);
  18. defaultAction();
  19. defaultAction = undefined;
  20. }
  21. document.body.className = document.body.className.replace(
  22. /(?:\s|^)sandcastle-loading(?:\s|$)/,
  23. " "
  24. );
  25. },
  26. addToggleButton: function (text, checked, onchange, toolbarID) {
  27. window.Sandcastle.declare(onchange);
  28. const input = document.createElement("input");
  29. input.checked = checked;
  30. input.type = "checkbox";
  31. input.style.pointerEvents = "none";
  32. const label = document.createElement("label");
  33. label.appendChild(input);
  34. label.appendChild(document.createTextNode(text));
  35. label.style.pointerEvents = "none";
  36. const button = document.createElement("button");
  37. button.type = "button";
  38. button.className = "cesium-button";
  39. button.appendChild(label);
  40. button.onclick = function () {
  41. window.Sandcastle.reset();
  42. window.Sandcastle.highlight(onchange);
  43. input.checked = !input.checked;
  44. onchange(input.checked);
  45. };
  46. document.getElementById(toolbarID || "toolbar").appendChild(button);
  47. },
  48. addToolbarButton: function (text, onclick, toolbarID) {
  49. window.Sandcastle.declare(onclick);
  50. const button = document.createElement("button");
  51. button.type = "button";
  52. button.className = "cesium-button";
  53. button.onclick = function () {
  54. window.Sandcastle.reset();
  55. window.Sandcastle.highlight(onclick);
  56. onclick();
  57. };
  58. button.textContent = text;
  59. document.getElementById(toolbarID || "toolbar").appendChild(button);
  60. },
  61. addDefaultToolbarButton: function (text, onclick, toolbarID) {
  62. window.Sandcastle.addToolbarButton(text, onclick, toolbarID);
  63. defaultAction = onclick;
  64. },
  65. addDefaultToolbarMenu: function (options, toolbarID) {
  66. window.Sandcastle.addToolbarMenu(options, toolbarID);
  67. defaultAction = options[0].onselect;
  68. },
  69. addToolbarMenu: function (options, toolbarID) {
  70. const menu = document.createElement("select");
  71. menu.className = "cesium-button";
  72. menu.onchange = function () {
  73. window.Sandcastle.reset();
  74. const item = options[menu.selectedIndex];
  75. if (item && typeof item.onselect === "function") {
  76. item.onselect();
  77. }
  78. };
  79. document.getElementById(toolbarID || "toolbar").appendChild(menu);
  80. if (!defaultAction && typeof options[0].onselect === "function") {
  81. defaultAction = options[0].onselect;
  82. }
  83. for (let i = 0, len = options.length; i < len; ++i) {
  84. const option = document.createElement("option");
  85. option.textContent = options[i].text;
  86. option.value = options[i].value;
  87. menu.appendChild(option);
  88. }
  89. },
  90. reset: function () {},
  91. };
  92. if (window.location.protocol === "file:") {
  93. if (
  94. window.confirm(
  95. "You must host this app on a web server.\nSee contributor's guide for more info?"
  96. )
  97. ) {
  98. window.location =
  99. "https://github.com/CesiumGS/cesium/wiki/Contributor%27s-Guide";
  100. }
  101. }
  102. })();