mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
119 lines
3.4 KiB
TypeScript
119 lines
3.4 KiB
TypeScript
import "./hotbar-menu.scss";
|
|
import "./hotbar.commands";
|
|
|
|
import React, { ReactNode } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { HotbarIcon } from "./hotbar-icon";
|
|
import { cssNames, IClassName } from "../../utils";
|
|
import { catalogEntityRegistry } from "../../api/catalog-entity-registry";
|
|
import { defaultHotbarCells, HotbarItem, HotbarStore } from "../../../common/hotbar-store";
|
|
import { CatalogEntity, catalogEntityRunContext } from "../../api/catalog-entity";
|
|
import { Icon } from "../icon";
|
|
import { Badge } from "../badge";
|
|
import { CommandOverlay } from "../command-palette";
|
|
import { HotbarSwitchCommand } from "./hotbar-switch-command";
|
|
import { ClusterStore } from "../../../common/cluster-store";
|
|
|
|
interface Props {
|
|
className?: IClassName;
|
|
}
|
|
|
|
@observer
|
|
export class HotbarMenu extends React.Component<Props> {
|
|
get hotbar() {
|
|
return HotbarStore.getInstance().getActive();
|
|
}
|
|
|
|
isActive(item: CatalogEntity) {
|
|
return ClusterStore.getInstance().activeClusterId == item.getId();
|
|
}
|
|
|
|
getEntity(item: HotbarItem) {
|
|
const hotbar = HotbarStore.getInstance().getActive();
|
|
|
|
if (!hotbar) {
|
|
return null;
|
|
}
|
|
|
|
return item ? catalogEntityRegistry.items.find((entity) => entity.metadata.uid === item.entity.uid) : null;
|
|
}
|
|
|
|
previous() {
|
|
HotbarStore.getInstance().switchToPrevious();
|
|
}
|
|
|
|
next() {
|
|
HotbarStore.getInstance().switchToNext();
|
|
}
|
|
|
|
openSelector() {
|
|
CommandOverlay.open(<HotbarSwitchCommand />);
|
|
}
|
|
|
|
renderGrid() {
|
|
if (!this.hotbar.items.length) return;
|
|
|
|
return this.hotbar.items.map((item, index) => {
|
|
const entity = this.getEntity(item);
|
|
|
|
return (
|
|
<HotbarCell key={index}>
|
|
{entity && (
|
|
<HotbarIcon
|
|
key={index}
|
|
index={index}
|
|
entity={entity}
|
|
isActive={this.isActive(entity)}
|
|
onClick={() => entity.onRun(catalogEntityRunContext)}
|
|
/>
|
|
)}
|
|
{!entity && (
|
|
<div className="cellDeleteButton" onClick={() => HotbarStore.getInstance().removeEmptyCell(index)}>
|
|
<Icon material="close" smallest/>
|
|
</div>
|
|
)}
|
|
</HotbarCell>
|
|
);
|
|
});
|
|
}
|
|
|
|
renderAddCellButton() {
|
|
return (
|
|
<button className="AddCellButton" onClick={() => HotbarStore.getInstance().addEmptyCell()}>
|
|
<Icon material="add"/>
|
|
</button>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { className } = this.props;
|
|
const hotbarIndex = HotbarStore.getInstance().activeHotbarIndex + 1;
|
|
|
|
return (
|
|
<div className={cssNames("HotbarMenu flex column", className)}>
|
|
<div className="HotbarItems flex column gaps">
|
|
{this.renderGrid()}
|
|
{this.hotbar.items.length != defaultHotbarCells && this.renderAddCellButton()}
|
|
</div>
|
|
<div className="HotbarSelector flex align-center">
|
|
<Icon material="play_arrow" className="previous box" onClick={() => this.previous()} />
|
|
<div className="box grow flex align-center">
|
|
<Badge small label={hotbarIndex} onClick={() => this.openSelector()} />
|
|
</div>
|
|
<Icon material="play_arrow" className="next box" onClick={() => this.next()} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
interface HotbarCellProps {
|
|
children?: ReactNode;
|
|
}
|
|
|
|
function HotbarCell(props: HotbarCellProps) {
|
|
return (
|
|
<div className="HotbarCell">{props.children}</div>
|
|
);
|
|
}
|