/** * Copyright (c) 2021 OpenLens Authors * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import "./command-container.scss"; import { action, observable, makeObservable } from "mobx"; import { observer } from "mobx-react"; import React from "react"; import { Dialog } from "../dialog"; import { EventEmitter } from "../../../common/event-emitter"; import { subscribeToBroadcast } from "../../../common/ipc"; import { CommandDialog } from "./command-dialog"; import { CommandRegistration, commandRegistry } from "../../../extensions/registries/command-registry"; import type { ClusterId } from "../../../common/cluster-store"; export type CommandDialogEvent = { component: React.ReactElement }; const commandDialogBus = new EventEmitter<[CommandDialogEvent]>(); export class CommandOverlay { static open(component: React.ReactElement) { commandDialogBus.emit({ component }); } static close() { commandDialogBus.emit({ component: null }); } } export interface CommandContainerProps { clusterId?: ClusterId; } @observer export class CommandContainer extends React.Component { @observable.ref commandComponent: React.ReactNode; constructor(props: CommandContainerProps) { super(props); makeObservable(this); } private escHandler(event: KeyboardEvent) { if (event.key === "Escape") { event.stopPropagation(); this.closeDialog(); } } @action private closeDialog() { this.commandComponent = null; } private findCommandById(commandId: string) { return commandRegistry.getItems().find((command) => command.id === commandId); } private runCommand(command: CommandRegistration) { command.action({ entity: commandRegistry.activeEntity }); } componentDidMount() { if (this.props.clusterId) { subscribeToBroadcast(`command-palette:run-action:${this.props.clusterId}`, (event, commandId: string) => { const command = this.findCommandById(commandId); if (command) { this.runCommand(command); } }); } else { subscribeToBroadcast("command-palette:open", () => { this.commandComponent = ; }); } window.addEventListener("keyup", (e) => this.escHandler(e), true); commandDialogBus.addListener((event) => { this.commandComponent = event.component; }); } render() { return ( this.commandComponent = null} modal={false}>
{this.commandComponent}
); } }