/** * 3D Foundation Project * Copyright 2025 Smithsonian Institution * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import System from "@ff/graph/System"; import SystemView, { customElement, html } from "@ff/scene/ui/SystemView"; import CVTaskProvider, { IActiveTaskEvent } from "../../components/CVTaskProvider"; //////////////////////////////////////////////////////////////////////////////// /** * Panel displaying the user interface for the currently active task. */ @customElement("sv-task-panel") export default class TaskPanel extends SystemView { protected taskProvider: CVTaskProvider = null; constructor(system?: System) { super(system); this.taskProvider = system.getMainComponent(CVTaskProvider); if (!this.taskProvider) { throw new Error("missing task provider"); } } protected firstConnected() { this.classList.add("sv-scrollable", "sv-panel", "sv-task-panel"); } protected connected() { super.connected(); this.taskProvider.on("active-component", this.onUpdate, this); } protected disconnected() { this.taskProvider.off("active-component", this.onUpdate, this); super.disconnected(); } protected render() { const task = this.taskProvider.activeComponent; if (!task) { return html``; } const viewElement = task.createView(); return html`
${task.text}
${viewElement}
`; } }