mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
183 lines
5.5 KiB
TypeScript
183 lines
5.5 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import "./dialog.scss";
|
|
|
|
import React, { Component } from "react";
|
|
import type { IObservableValue } from "mobx";
|
|
import { computed, observable, makeObservable } from "mobx";
|
|
import { observer } from "mobx-react";
|
|
import type { DialogProps } from "../../dialog";
|
|
import { Dialog } from "../../dialog";
|
|
import { Wizard, WizardStep } from "../../wizard";
|
|
import { Icon } from "../../icon";
|
|
import { Slider } from "../../slider";
|
|
import { Notifications } from "../../notifications";
|
|
import { cssNames } from "../../../utils";
|
|
import type { ReplicaSet, ReplicaSetApi } from "../../../../common/k8s-api/endpoints";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import replicaSetApiInjectable from "../../../../common/k8s-api/endpoints/replica-set.api.injectable";
|
|
import replicaSetScaleDialogStateInjectable from "./state.injectable";
|
|
|
|
export interface ReplicaSetScaleDialogProps extends Partial<DialogProps> {
|
|
}
|
|
|
|
interface Dependencies {
|
|
replicaSetApi: ReplicaSetApi;
|
|
state: IObservableValue<ReplicaSet | undefined>;
|
|
}
|
|
|
|
@observer
|
|
class NonInjectedReplicaSetScaleDialog extends Component<ReplicaSetScaleDialogProps & Dependencies> {
|
|
@observable ready = false;
|
|
@observable currentReplicas = 0;
|
|
@observable desiredReplicas = 0;
|
|
|
|
constructor(props: ReplicaSetScaleDialogProps & Dependencies) {
|
|
super(props);
|
|
makeObservable(this);
|
|
}
|
|
|
|
close = () => {
|
|
this.props.state.set(undefined);
|
|
};
|
|
|
|
onOpen = async (replicaSet: ReplicaSet) => {
|
|
this.currentReplicas = await this.props.replicaSetApi.getReplicas({
|
|
namespace: replicaSet.getNs(),
|
|
name: replicaSet.getName(),
|
|
});
|
|
this.desiredReplicas = this.currentReplicas;
|
|
this.ready = true;
|
|
};
|
|
|
|
onClose = () => {
|
|
this.ready = false;
|
|
};
|
|
|
|
onChange = (evt: React.ChangeEvent, value: number) => {
|
|
this.desiredReplicas = value;
|
|
};
|
|
|
|
@computed get scaleMax() {
|
|
const { currentReplicas } = this;
|
|
const defaultMax = 50;
|
|
|
|
return currentReplicas <= defaultMax
|
|
? defaultMax * 2
|
|
: currentReplicas * 2;
|
|
}
|
|
|
|
scale = async (replicaSet: ReplicaSet) => {
|
|
const { currentReplicas, desiredReplicas, close } = this;
|
|
|
|
try {
|
|
if (currentReplicas !== desiredReplicas) {
|
|
await this.props.replicaSetApi.scale({
|
|
name: replicaSet.getName(),
|
|
namespace: replicaSet.getNs(),
|
|
}, desiredReplicas);
|
|
}
|
|
close();
|
|
} catch (err) {
|
|
Notifications.checkedError(err, "Unknown error occured while scaling ReplicaSet");
|
|
}
|
|
};
|
|
|
|
private readonly scaleMin = 0;
|
|
|
|
desiredReplicasUp = () => {
|
|
this.desiredReplicas = Math.min(this.scaleMax, this.desiredReplicas + 1);
|
|
};
|
|
|
|
desiredReplicasDown = () => {
|
|
this.desiredReplicas = Math.max(this.scaleMin, this.desiredReplicas - 1);
|
|
};
|
|
|
|
renderContents(replicaSet: ReplicaSet) {
|
|
const { currentReplicas, desiredReplicas, onChange, scaleMax } = this;
|
|
const warning = currentReplicas < 10 && desiredReplicas > 90;
|
|
|
|
return (
|
|
<Wizard
|
|
header={(
|
|
<h5>
|
|
{"Scale Replica Set "}
|
|
<span>{replicaSet.getName()}</span>
|
|
</h5>
|
|
)}
|
|
done={this.close}
|
|
>
|
|
<WizardStep
|
|
contentClass="flex gaps column"
|
|
next={() => this.scale(replicaSet)}
|
|
nextLabel="Scale"
|
|
disabledNext={!this.ready}
|
|
>
|
|
<div className="current-scale" data-testid="current-scale">
|
|
{`Current replica scale: ${currentReplicas}`}
|
|
</div>
|
|
<div className="flex gaps align-center">
|
|
<div className="desired-scale" data-testid="desired-scale">
|
|
{`Desired number of replicas: ${desiredReplicas}`}
|
|
</div>
|
|
<div className="slider-container flex align-center" data-testid="slider">
|
|
<Slider
|
|
value={desiredReplicas}
|
|
max={scaleMax}
|
|
onChange={onChange}
|
|
/>
|
|
</div>
|
|
<div className="plus-minus-container flex gaps">
|
|
<Icon
|
|
material="remove_circle_outline"
|
|
onClick={this.desiredReplicasDown}
|
|
data-testid="desired-replicas-down"
|
|
/>
|
|
<Icon
|
|
material="add_circle_outline"
|
|
onClick={this.desiredReplicasUp}
|
|
data-testid="desired-replicas-up"
|
|
/>
|
|
</div>
|
|
</div>
|
|
{warning && (
|
|
<div className="warning" data-testid="warning">
|
|
<Icon material="warning"/>
|
|
High number of replicas may cause cluster performance issues
|
|
</div>
|
|
)}
|
|
</WizardStep>
|
|
</Wizard>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { className, state, ...dialogProps } = this.props;
|
|
const replicaSet = state.get();
|
|
|
|
return (
|
|
<Dialog
|
|
{...dialogProps}
|
|
isOpen={Boolean(replicaSet)}
|
|
className={cssNames("ReplicaSetScaleDialog", className)}
|
|
onOpen={replicaSet && (() => this.onOpen(replicaSet))}
|
|
onClose={this.onClose}
|
|
close={this.close}
|
|
>
|
|
{replicaSet && this.renderContents(replicaSet)}
|
|
</Dialog>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const ReplicaSetScaleDialog = withInjectables<Dependencies, ReplicaSetScaleDialogProps>(NonInjectedReplicaSetScaleDialog, {
|
|
getProps: (di, props) => ({
|
|
...props,
|
|
replicaSetApi: di.inject(replicaSetApiInjectable),
|
|
state: di.inject(replicaSetScaleDialogStateInjectable),
|
|
}),
|
|
});
|