import "./deployment-scale-dialog.scss"; import React, { Component } from "react"; import { computed, observable } from "mobx"; import { observer } from "mobx-react"; import { Dialog, DialogProps } from "../dialog"; import { Wizard, WizardStep } from "../wizard"; import { Deployment, deploymentApi } from "../../api/endpoints"; import { Icon } from "../icon"; import { Slider } from "../slider"; import { Notifications } from "../notifications"; import { cssNames } from "../../utils"; interface Props extends Partial { } @observer export class DeploymentScaleDialog extends Component { @observable static isOpen = false; @observable static data: Deployment = null; @observable ready = false; @observable currentReplicas = 0; @observable desiredReplicas = 0; static open(deployment: Deployment) { DeploymentScaleDialog.isOpen = true; DeploymentScaleDialog.data = deployment; } static close() { DeploymentScaleDialog.isOpen = false; } get deployment() { return DeploymentScaleDialog.data; } close = () => { DeploymentScaleDialog.close(); }; @computed get scaleMax() { const { currentReplicas } = this; const defaultMax = 50; return currentReplicas <= defaultMax ? defaultMax * 2 : currentReplicas * 2; } onOpen = async () => { const { deployment } = this; this.currentReplicas = await deploymentApi.getReplicas({ namespace: deployment.getNs(), name: deployment.getName(), }); this.desiredReplicas = this.currentReplicas; this.ready = true; }; onClose = () => { this.ready = false; }; onChange = (evt: React.ChangeEvent, value: number) => { this.desiredReplicas = value; }; scale = async () => { const { deployment } = this; const { currentReplicas, desiredReplicas, close } = this; try { if (currentReplicas !== desiredReplicas) { await deploymentApi.scale({ name: deployment.getName(), namespace: deployment.getNs(), }, desiredReplicas); } close(); } catch (err) { Notifications.error(err); } }; desiredReplicasUp = () => { this.desiredReplicas < this.scaleMax && this.desiredReplicas++; }; desiredReplicasDown = () => { this.desiredReplicas > 0 && this.desiredReplicas--; }; renderContents() { const { currentReplicas, desiredReplicas, onChange, scaleMax } = this; const warning = currentReplicas < 10 && desiredReplicas > 90; return ( <>
Current replica scale: {currentReplicas}
Desired number of replicas: {desiredReplicas}
{warning &&
High number of replicas may cause cluster performance issues
} ); } render() { const { className, ...dialogProps } = this.props; const deploymentName = this.deployment ? this.deployment.getName() : ""; const header = (
Scale Deployment {deploymentName}
); return ( {this.renderContents()} ); } }