mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Revamping {useDefineForClassFields: true} to avoid issues with non-observable class fields in some cases (from previous commit):
```
@observer
export class CommandContainer extends React.Component<CommandContainerProps> {
// without some defined initial value "commandComponent" is non-observable for some reasons
// when tsconfig.ts has {useDefineForClassFields:false}
@observable.ref commandComponent: React.ReactNode = null;
constructor(props: CommandContainerProps) {
super(props);
makeObservable(this);
}
```
Signed-off-by: Roman <ixrock@gmail.com>
115 lines
3.6 KiB
TypeScript
115 lines
3.6 KiB
TypeScript
/**
|
|
* 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<CommandContainerProps> {
|
|
@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 = <CommandDialog />;
|
|
});
|
|
}
|
|
window.addEventListener("keyup", (e) => this.escHandler(e), true);
|
|
commandDialogBus.addListener((event) => {
|
|
this.commandComponent = event.component;
|
|
});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Dialog isOpen={!!this.commandComponent} animated={true} onClose={() => this.commandComponent = null} modal={false}>
|
|
<div id="command-container">
|
|
{this.commandComponent}
|
|
</div>
|
|
</Dialog>
|
|
);
|
|
}
|
|
}
|