1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Delete cluster dialog refactoring

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-08-26 15:06:27 +03:00 committed by Sebastian Malton
parent 12e97773a7
commit dacb575532
3 changed files with 70 additions and 29 deletions

View File

@ -32,9 +32,9 @@ import logger from "./logger";
import { VersionDetector } from "./cluster-detectors/version-detector"; import { VersionDetector } from "./cluster-detectors/version-detector";
import { DetectorRegistry } from "./cluster-detectors/detector-registry"; import { DetectorRegistry } from "./cluster-detectors/detector-registry";
import plimit from "p-limit"; import plimit from "p-limit";
import { toJS } from "../common/utils";
import type { ClusterState, ClusterRefreshOptions, ClusterMetricsResourceType, ClusterId, ClusterMetadata, ClusterModel, ClusterPreferences, ClusterPrometheusPreferences, UpdateClusterModel } from "../common/cluster-types"; import type { ClusterState, ClusterRefreshOptions, ClusterMetricsResourceType, ClusterId, ClusterMetadata, ClusterModel, ClusterPreferences, ClusterPrometheusPreferences, UpdateClusterModel } from "../common/cluster-types";
import { ClusterMetadataKey, initialNodeShellImage, ClusterStatus } from "../common/cluster-types"; import { ClusterMetadataKey, initialNodeShellImage, ClusterStatus } from "../common/cluster-types";
import { storedKubeConfigFolder, toJS } from "../common/utils";
/** /**
* Cluster * Cluster
@ -712,4 +712,8 @@ export class Cluster implements ClusterModel, ClusterState {
get imagePullSecret(): string { get imagePullSecret(): string {
return this.preferences.imagePullSecret || ""; return this.preferences.imagePullSecret || "";
} }
isInLocalKubeconfig() {
return this.kubeConfigPath.includes(storedKubeConfigFolder());
}
} }

View File

@ -32,4 +32,10 @@
> * { > * {
margin-left: var(--margin) margin-left: var(--margin)
} }
}
.hr {
@apply mt-7;
height: 1px;
background: #dfdfdf80;
} }

View File

@ -25,7 +25,7 @@ import { observer } from "mobx-react";
import React from "react"; import React from "react";
import { Button } from "../button"; import { Button } from "../button";
import type { Context, KubeConfig } from "@kubernetes/client-node"; import type { KubeConfig } from "@kubernetes/client-node";
import type { Cluster } from "../../../main/cluster"; import type { Cluster } from "../../../main/cluster";
import { saveKubeconfig } from "./save-config"; import { saveKubeconfig } from "./save-config";
import { requestMain } from "../../../common/ipc"; import { requestMain } from "../../../common/ipc";
@ -36,6 +36,7 @@ import { boundMethod } from "autobind-decorator";
import { Dialog } from "../dialog"; import { Dialog } from "../dialog";
import { Icon } from "../icon"; import { Icon } from "../icon";
import { Select } from "../select"; import { Select } from "../select";
import { Checkbox } from "../checkbox";
type DialogState = { type DialogState = {
isOpen: boolean, isOpen: boolean,
@ -70,16 +71,23 @@ export class DeleteClusterDialog extends React.Component {
static close() { static close() {
dialogState.isOpen = false; dialogState.isOpen = false;
dialogState.cluster = null;
dialogState.config = null;
} }
@boundMethod @boundMethod
onOpen() { onOpen() {
this.showContextSwitch = false;
this.newCurrentContext = ""; this.newCurrentContext = "";
if (this.isCurrentContext()) {
this.showContextSwitch = true;
}
} }
@boundMethod
onClose() { onClose() {
DeleteClusterDialog.close(); DeleteClusterDialog.close();
this.showContextSwitch = false;
} }
removeContext() { removeContext() {
@ -114,8 +122,14 @@ export class DeleteClusterDialog extends React.Component {
this.onClose(); this.onClose();
} }
renderCurrentContextSwitch(contexts: Context[]) { isCurrentContext() {
return dialogState.config.currentContext == dialogState.cluster.contextName;
}
renderCurrentContextSwitch() {
if (!this.showContextSwitch) return null; if (!this.showContextSwitch) return null;
const { cluster, config } = dialogState;
const contexts = config.contexts.filter(context => context.name !== cluster.contextName);
const options = [ const options = [
...contexts.map(context => ({ ...contexts.map(context => ({
@ -126,57 +140,74 @@ export class DeleteClusterDialog extends React.Component {
return ( return (
<div className="mt-4"> <div className="mt-4">
<p className="mb-4 font-semibold">Choose new current-context</p>
<Select <Select
options={options} options={options}
onChange={({ value }) => this.newCurrentContext = value} onChange={({ value }) => this.newCurrentContext = value}
themeName="light" themeName="light"
className="ml-[1px] mr-[1px]" className="ml-[1px] mr-[1px]"
noOptionsMessage={() => "There are no other contexts left"}
/> />
</div> </div>
); );
} }
renderWarning() {
const { cluster } = dialogState;
const isInternalKubeconfig = cluster.isInLocalKubeconfig();
let warning: JSX.Element = null;
if (this.isCurrentContext()) {
warning = <p data-testd="context-warning">
This will remove active context in kubeconfig. Use drop down below to&nbsp;select a&nbsp;different one.
</p>;
} else if (!isInternalKubeconfig) {
warning = <p>The contents of kubeconfig file will be changed!</p>;
}
if (!warning) {
return null;
}
return (
<div className={styles.warning}>
<Icon material="warning_amber" className={styles.warningIcon}/>
{warning}
</div>
);
}
render() { render() {
const { cluster, config, isOpen } = dialogState; const { cluster, config, isOpen } = dialogState;
if (!cluster || !config) return null; if (!cluster || !config) return null;
const isCurrentContext = config.currentContext == cluster.contextName;
const contexts = config.contexts.filter(context => context.name !== cluster.contextName);
const warning = isCurrentContext ? (
<>
<p data-testid="context-warning">The <b>current-context</b> field from the kubeconfig file indicates a minikube context
that will cease to exist after the change. This will affect the operation of kubectl.{" "}
{contexts.length > 0 && (
<b
className="cursor-pointer underline"
onClick={() => this.showContextSwitch = !this.showContextSwitch}
>Replace current context</b>
)}
</p>
</>
) : (
<p>The contents of your kubeconfig file will be changed!</p>
);
return ( return (
<Dialog <Dialog
className={styles.dialog} className={styles.dialog}
isOpen={isOpen} isOpen={isOpen}
close={this.onClose} close={this.onClose}
open={this.onOpen} onOpen={this.onOpen}
> >
<div className={styles.dialogContent}> <div className={styles.dialogContent}>
<div> <div>
Delete the <b>{cluster.getMeta().name}</b> context from <b>{cluster.kubeConfigPath}</b>? Delete the <b>{cluster.getMeta().name}</b> context from <b>{cluster.kubeConfigPath}</b>?
</div> </div>
<div className={styles.warning}> {this.renderWarning()}
<Icon material="warning_amber" className={styles.warningIcon}/> <hr className={styles.hr}/>
{warning} <div className="mt-4">
<Checkbox
theme="light"
label={(
<>
<span className="font-semibold">Select current-context</span>{" "}
{!this.isCurrentContext() && "(optional)"}
</>
)}
value={this.showContextSwitch}
onChange={value => this.showContextSwitch = value}
/>
</div> </div>
{this.renderCurrentContextSwitch(contexts)} {this.renderCurrentContextSwitch()}
</div> </div>
<div className={styles.dialogButtons}> <div className={styles.dialogButtons}>
<Button <Button