src/toolbar/HideTool.js
import {Controller} from "../Controller.js";
/** @private */
class HideTool extends Controller {
constructor(parent, cfg) {
super(parent, cfg);
if (!cfg.buttonElement) {
throw "Missing config: buttonElement";
}
const buttonElement = cfg.buttonElement;
this.on("enabled", (enabled) => {
if (!enabled) {
buttonElement.classList.add("disabled");
} else {
buttonElement.classList.remove("disabled");
}
});
this.on("active", (active) => {
if (active) {
buttonElement.classList.add("active");
this.viewer.cameraControl.doublePickFlyTo = false;
this._onPick = this.viewer.cameraControl.on("picked", (pickResult) => {
if (!pickResult.entity) {
return;
}
pickResult.entity.visible = false;
});
} else {
buttonElement.classList.remove("active");
this.viewer.cameraControl.doublePickFlyTo = false;
if (this._onPick !== undefined) {
this.viewer.cameraControl.off(this._onPick);
this._onPick = undefined;
}
}
});
buttonElement.addEventListener("click", (event) => {
if (this.getEnabled()) {
this.bimViewer._sectionTool.hideControl();
const active = this.getActive();
this.setActive(!active);
}
event.preventDefault();
});
this.bimViewer.on("reset", () => {
this.setActive(false);
});
}
}
export {HideTool};