123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- (function () {
- "use strict";
- let defaultAction;
- let bucket = window.location.href;
- const pos = bucket.lastIndexOf("/");
- if (pos > 0 && pos < bucket.length - 1) {
- bucket = bucket.substring(pos + 1);
- }
- window.Sandcastle = {
- bucket: bucket,
- declare: function () {},
- highlight: function () {},
- registered: [],
- finishedLoading: function () {
- window.Sandcastle.reset();
- if (defaultAction) {
- window.Sandcastle.highlight(defaultAction);
- defaultAction();
- defaultAction = undefined;
- }
- document.body.className = document.body.className.replace(
- /(?:\s|^)sandcastle-loading(?:\s|$)/,
- " "
- );
- },
- addToggleButton: function (text, checked, onchange, toolbarID) {
- window.Sandcastle.declare(onchange);
- const input = document.createElement("input");
- input.checked = checked;
- input.type = "checkbox";
- input.style.pointerEvents = "none";
- const label = document.createElement("label");
- label.appendChild(input);
- label.appendChild(document.createTextNode(text));
- label.style.pointerEvents = "none";
- const button = document.createElement("button");
- button.type = "button";
- button.className = "cesium-button";
- button.appendChild(label);
- button.onclick = function () {
- window.Sandcastle.reset();
- window.Sandcastle.highlight(onchange);
- input.checked = !input.checked;
- onchange(input.checked);
- };
- document.getElementById(toolbarID || "toolbar").appendChild(button);
- },
- addToolbarButton: function (text, onclick, toolbarID) {
- window.Sandcastle.declare(onclick);
- const button = document.createElement("button");
- button.type = "button";
- button.className = "cesium-button";
- button.onclick = function () {
- window.Sandcastle.reset();
- window.Sandcastle.highlight(onclick);
- onclick();
- };
- button.textContent = text;
- document.getElementById(toolbarID || "toolbar").appendChild(button);
- },
- addDefaultToolbarButton: function (text, onclick, toolbarID) {
- window.Sandcastle.addToolbarButton(text, onclick, toolbarID);
- defaultAction = onclick;
- },
- addDefaultToolbarMenu: function (options, toolbarID) {
- window.Sandcastle.addToolbarMenu(options, toolbarID);
- defaultAction = options[0].onselect;
- },
- addToolbarMenu: function (options, toolbarID) {
- const menu = document.createElement("select");
- menu.className = "cesium-button";
- menu.onchange = function () {
- window.Sandcastle.reset();
- const item = options[menu.selectedIndex];
- if (item && typeof item.onselect === "function") {
- item.onselect();
- }
- };
- document.getElementById(toolbarID || "toolbar").appendChild(menu);
- if (!defaultAction && typeof options[0].onselect === "function") {
- defaultAction = options[0].onselect;
- }
- for (let i = 0, len = options.length; i < len; ++i) {
- const option = document.createElement("option");
- option.textContent = options[i].text;
- option.value = options[i].value;
- menu.appendChild(option);
- }
- },
- reset: function () {},
- };
- if (window.location.protocol === "file:") {
- if (
- window.confirm(
- "You must host this app on a web server.\nSee contributor's guide for more info?"
- )
- ) {
- window.location =
- "https://github.com/CesiumGS/cesium/wiki/Contributor%27s-Guide";
- }
- }
- })();
|