import "./clusters-menu.scss" import React from "react"; import { remote } from "electron" import type { Cluster } from "../../../main/cluster"; import { DragDropContext, Draggable, DraggableProvided, Droppable, DroppableProvided, DropResult } from "react-beautiful-dnd"; import { observer } from "mobx-react"; import { _i18n } from "../../i18n"; import { t, Trans } from "@lingui/macro"; import { userStore } from "../../../common/user-store"; import { ClusterId, clusterStore } from "../../../common/cluster-store"; import { workspaceStore } from "../../../common/workspace-store"; import { ClusterIcon } from "../cluster-icon"; import { Icon } from "../icon"; import { autobind, cssNames, IClassName } from "../../utils"; import { Badge } from "../badge"; import { isActiveRoute, navigate } from "../../navigation"; import { addClusterURL } from "../+add-cluster"; import { clusterSettingsURL } from "../+cluster-settings"; import { landingURL } from "../+landing-page"; import { Tooltip } from "../tooltip"; import { ConfirmDialog } from "../confirm-dialog"; import { clusterIpc } from "../../../common/cluster-ipc"; import { clusterViewURL } from "./cluster-view.route"; import { globalPageMenuRegistry, globalPageRegistry } from "../../../extensions/registries"; import { compile } from "path-to-regexp"; interface Props { className?: IClassName; } @observer export class ClustersMenu extends React.Component { showCluster = (clusterId: ClusterId) => { navigate(clusterViewURL({ params: { clusterId } })); } addCluster = () => { navigate(addClusterURL()); } showContextMenu = (cluster: Cluster) => { const { Menu, MenuItem } = remote const menu = new Menu(); menu.append(new MenuItem({ label: _i18n._(t`Settings`), click: () => { navigate(clusterSettingsURL({ params: { clusterId: cluster.id } })) } })); if (cluster.online) { menu.append(new MenuItem({ label: _i18n._(t`Disconnect`), click: async () => { if (clusterStore.isActive(cluster.id)) { navigate(landingURL()); clusterStore.setActive(null); } await clusterIpc.disconnect.invokeFromRenderer(cluster.id); } })) } menu.append(new MenuItem({ label: _i18n._(t`Remove`), click: () => { ConfirmDialog.open({ okButtonProps: { primary: false, accent: true, label: _i18n._(t`Remove`), }, ok: () => { if (clusterStore.activeClusterId === cluster.id) { navigate(landingURL()); } clusterStore.removeById(cluster.id); }, message:

Are you sure want to remove cluster {cluster.contextName}?

, }) } })); menu.popup({ window: remote.getCurrentWindow() }) } @autobind() swapClusterIconOrder(result: DropResult) { if (result.reason === "DROP") { const { currentWorkspaceId } = workspaceStore; const { source: { index: from }, destination: { index: to }, } = result clusterStore.swapIconOrders(currentWorkspaceId, from, to) } } render() { const { className } = this.props const { newContexts } = userStore const workspace = workspaceStore.getById(workspaceStore.currentWorkspaceId) const clusters = clusterStore.getByWorkspaceId(workspace.id) const activeClusterId = clusterStore.activeCluster return (
{({ innerRef, droppableProps, placeholder }: DroppableProvided) => (
{clusters.map((cluster, index) => { const isActive = cluster.id === activeClusterId; return ( {({ draggableProps, dragHandleProps, innerRef }: DraggableProvided) => (
this.showCluster(cluster.id)} onContextMenu={() => this.showContextMenu(cluster)} />
)}
) })} {placeholder}
)}
Add Cluster {newContexts.size > 0 && ( new}/> )}
{globalPageMenuRegistry.getItems().map(({ title, target, components: { Icon } }) => { const registeredPage = globalPageRegistry.getByPageMenuTarget(target); if (!registeredPage) return; const { routePath, exact } = registeredPage; return ( navigate(compile(routePath)(target.params))} /> ) })}
); } }