/** * Copyright (c) 2021 OpenLens Authors * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import "./replicaset-scale-dialog.scss"; import React, { Component } from "react"; import { computed, observable, makeObservable } from "mobx"; import { observer } from "mobx-react"; import { Dialog, DialogProps } from "../dialog"; import { Wizard, WizardStep } from "../wizard"; import { Icon } from "../icon"; import { Slider } from "../slider"; import { Notifications } from "../notifications"; import { cssNames } from "../../utils"; import { ReplicaSet, replicaSetApi } from "../../api/endpoints/replica-set.api"; interface Props extends Partial { } const dialogState = observable.object({ isOpen: false, data: null as ReplicaSet, }); @observer export class ReplicaSetScaleDialog extends Component { @observable ready = false; @observable currentReplicas = 0; @observable desiredReplicas = 0; constructor(props: Props) { super(props); makeObservable(this); } static open(replicaSet: ReplicaSet) { dialogState.isOpen = true; dialogState.data = replicaSet; } static close() { dialogState.isOpen = false; } get replicaSet() { return dialogState.data; } close = () => { ReplicaSetScaleDialog.close(); }; onOpen = async () => { const { replicaSet } = this; this.currentReplicas = await 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 () => { const { replicaSet } = this; const { currentReplicas, desiredReplicas, close } = this; try { if (currentReplicas !== desiredReplicas) { await replicaSetApi.scale({ name: replicaSet.getName(), namespace: replicaSet.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 replicaSetName = this.replicaSet ? this.replicaSet.getName() : ""; const header = (
Scale Replica Set {replicaSetName}
); return ( {this.renderContents()} ); } }