mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
112 lines
4.4 KiB
TypeScript
112 lines
4.4 KiB
TypeScript
/**
|
|
* 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 "./statefulsets.scss";
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import type { RouteComponentProps } from "react-router";
|
|
import type { StatefulSet } from "../../api/endpoints";
|
|
import { podsStore } from "../+workloads-pods/pods.store";
|
|
import { statefulSetStore } from "./statefulset.store";
|
|
import { nodesStore } from "../+nodes/nodes.store";
|
|
import { eventStore } from "../+events/event.store";
|
|
import type { KubeObjectMenuProps } from "../kube-object/kube-object-menu";
|
|
import { KubeObjectListLayout } from "../kube-object";
|
|
import { KubeObjectStatusIcon } from "../kube-object-status-icon";
|
|
import { StatefulSetScaleDialog } from "./statefulset-scale-dialog";
|
|
import { MenuItem } from "../menu/menu";
|
|
import { Icon } from "../icon/icon";
|
|
import type { StatefulSetsRouteParams } from "../../../common/routes";
|
|
|
|
enum columnId {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
pods = "pods",
|
|
age = "age",
|
|
replicas = "replicas",
|
|
}
|
|
|
|
interface Props extends RouteComponentProps<StatefulSetsRouteParams> {
|
|
}
|
|
|
|
@observer
|
|
export class StatefulSets extends React.Component<Props> {
|
|
renderPods(statefulSet: StatefulSet) {
|
|
const { readyReplicas, currentReplicas } = statefulSet.status;
|
|
|
|
return `${readyReplicas || 0}/${currentReplicas || 0}`;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<KubeObjectListLayout
|
|
isConfigurable
|
|
tableId="workload_statefulsets"
|
|
className="StatefulSets" store={statefulSetStore}
|
|
dependentStores={[podsStore, nodesStore, eventStore]}
|
|
sortingCallbacks={{
|
|
[columnId.name]: (statefulSet: StatefulSet) => statefulSet.getName(),
|
|
[columnId.namespace]: (statefulSet: StatefulSet) => statefulSet.getNs(),
|
|
[columnId.age]: (statefulSet: StatefulSet) => statefulSet.getTimeDiffFromNow(),
|
|
[columnId.replicas]: (statefulSet: StatefulSet) => statefulSet.getReplicas(),
|
|
}}
|
|
searchFilters={[
|
|
(statefulSet: StatefulSet) => statefulSet.getSearchFields(),
|
|
]}
|
|
renderHeaderTitle="Stateful Sets"
|
|
renderTableHeader={[
|
|
{ title: "Name", className: "name", sortBy: columnId.name, id: columnId.name },
|
|
{ title: "Namespace", className: "namespace", sortBy: columnId.namespace, id: columnId.namespace },
|
|
{ title: "Pods", className: "pods", id: columnId.pods },
|
|
{ title: "Replicas", className: "replicas", sortBy: columnId.replicas, id: columnId.replicas },
|
|
{ className: "warning", showWithColumn: columnId.replicas },
|
|
{ title: "Age", className: "age", sortBy: columnId.age, id: columnId.age },
|
|
]}
|
|
renderTableContents={(statefulSet: StatefulSet) => [
|
|
statefulSet.getName(),
|
|
statefulSet.getNs(),
|
|
this.renderPods(statefulSet),
|
|
statefulSet.getReplicas(),
|
|
<KubeObjectStatusIcon key="icon" object={statefulSet}/>,
|
|
statefulSet.getAge(),
|
|
]}
|
|
renderItemMenu={(item: StatefulSet) => {
|
|
return <StatefulSetMenu object={item}/>;
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export function StatefulSetMenu(props: KubeObjectMenuProps<StatefulSet>) {
|
|
const { object, toolbar } = props;
|
|
|
|
return (
|
|
<>
|
|
<MenuItem onClick={() => StatefulSetScaleDialog.open(object)}>
|
|
<Icon material="open_with" tooltip="Scale" interactive={toolbar}/>
|
|
<span className="title">Scale</span>
|
|
</MenuItem>
|
|
</>
|
|
);
|
|
}
|