/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import styles from "./cluster-status.module.scss"; import { computed, observable, makeObservable } from "mobx"; import { disposeOnUnmount, observer } from "mobx-react"; import React from "react"; import { ipcRendererOn } from "../../../common/ipc"; import type { Cluster } from "../../../common/cluster/cluster"; import type { IClassName } from "../../utils"; import { isBoolean, hasTypedProperty, isObject, isString, cssNames } from "../../utils"; import { Button } from "../button"; import { Icon } from "../icon"; import { Spinner } from "../spinner"; import type { KubeAuthUpdate } from "../../../common/cluster-types"; import type { CatalogEntityRegistry } from "../../api/catalog/entity/registry"; import { requestClusterActivation } from "../../ipc"; import type { NavigateToEntitySettings } from "../../../common/front-end-routing/routes/entity-settings/navigate-to-entity-settings.injectable"; import { withInjectables } from "@ogre-tools/injectable-react"; import navigateToEntitySettingsInjectable from "../../../common/front-end-routing/routes/entity-settings/navigate-to-entity-settings.injectable"; import catalogEntityRegistryInjectable from "../../api/catalog/entity/registry.injectable"; export interface ClusterStatusProps { className?: IClassName; cluster: Cluster; } interface Dependencies { navigateToEntitySettings: NavigateToEntitySettings; entityRegistry: CatalogEntityRegistry; } @observer class NonInjectedClusterStatus extends React.Component { @observable authOutput: KubeAuthUpdate[] = []; @observable isReconnecting = false; constructor(props: ClusterStatusProps & Dependencies) { super(props); makeObservable(this); } get cluster(): Cluster { return this.props.cluster; } @computed get entity() { return this.props.entityRegistry.getById(this.cluster.id); } @computed get hasErrors(): boolean { return this.authOutput.some(({ isError }) => isError); } componentDidMount() { disposeOnUnmount(this, [ ipcRendererOn(`cluster:${this.cluster.id}:connection-update`, (evt, res: unknown) => { if ( isObject(res) && hasTypedProperty(res, "message", isString) && hasTypedProperty(res, "isError", isBoolean) ) { this.authOutput.push(res); } else { console.warn(`Got invalid connection update for ${this.cluster.id}`, { update: res }); } }), ]); } componentDidUpdate(prevProps: Readonly): void { if (prevProps.cluster.id !== this.props.cluster.id) { this.isReconnecting = false; this.authOutput = []; } } reconnect = async () => { this.authOutput = []; this.isReconnecting = true; try { await requestClusterActivation(this.cluster.id, true); } catch (error) { this.authOutput.push({ message: String(error), isError: true, }); } finally { this.isReconnecting = false; } }; manageProxySettings = () => { this.props.navigateToEntitySettings(this.cluster.id, "proxy"); }; renderAuthenticationOutput() { return (
        {
          this.authOutput.map(({ message, isError }, index) => (
            

{message.trim()}

)) }
); } renderStatusIcon() { if (this.hasErrors) { return ; } return ( <>
          

{this.isReconnecting ? "Reconnecting" : "Connecting"} …

); } renderReconnectionHelp() { if (this.hasErrors && !this.isReconnecting) { return ( <>