mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
110 lines
4.2 KiB
TypeScript
110 lines
4.2 KiB
TypeScript
import "./deployments.scss"
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { RouteComponentProps } from "react-router";
|
|
import { t, Trans } from "@lingui/macro";
|
|
import { Deployment, deploymentApi } from "../../api/endpoints";
|
|
import { KubeObjectMenu, KubeObjectMenuProps } from "../kube-object/kube-object-menu";
|
|
import { MenuItem } from "../menu";
|
|
import { Icon } from "../icon";
|
|
import { DeploymentScaleDialog } from "./deployment-scale-dialog";
|
|
import { deploymentStore } from "./deployments.store";
|
|
import { replicaSetStore } from "../+workloads-replicasets/replicasets.store";
|
|
import { podsStore } from "../+workloads-pods/pods.store";
|
|
import { nodesStore } from "../+nodes/nodes.store";
|
|
import { eventStore } from "../+events/event.store";
|
|
import { KubeObjectListLayout } from "../kube-object";
|
|
import { IDeploymentsRouteParams } from "../+workloads";
|
|
import { _i18n } from "../../i18n";
|
|
import { cssNames } from "../../utils";
|
|
import kebabCase from "lodash/kebabCase";
|
|
import orderBy from "lodash/orderBy";
|
|
import { KubeEventIcon } from "../+events/kube-event-icon";
|
|
import { apiManager } from "../../api/api-manager";
|
|
|
|
enum sortBy {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
replicas = "replicas",
|
|
age = "age",
|
|
condition = "condition",
|
|
}
|
|
|
|
interface Props extends RouteComponentProps<IDeploymentsRouteParams> {
|
|
}
|
|
|
|
@observer
|
|
export class Deployments extends React.Component<Props> {
|
|
renderPods(deployment: Deployment) {
|
|
const { replicas, availableReplicas } = deployment.status
|
|
return `${availableReplicas || 0}/${replicas || 0}`
|
|
}
|
|
|
|
renderConditions(deployment: Deployment) {
|
|
const conditions = orderBy(deployment.getConditions(true), "type", "asc")
|
|
return conditions.map(({ type, message }) => (
|
|
<span key={type} className={cssNames("condition", kebabCase(type))} title={message}>
|
|
{type}
|
|
</span>
|
|
))
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<KubeObjectListLayout
|
|
className="Deployments" store={deploymentStore}
|
|
dependentStores={[replicaSetStore, podsStore, nodesStore, eventStore]}
|
|
sortingCallbacks={{
|
|
[sortBy.name]: (deployment: Deployment) => deployment.getName(),
|
|
[sortBy.namespace]: (deployment: Deployment) => deployment.getNs(),
|
|
[sortBy.replicas]: (deployment: Deployment) => deployment.getReplicas(),
|
|
[sortBy.age]: (deployment: Deployment) => deployment.getAge(false),
|
|
[sortBy.condition]: (deployment: Deployment) => deployment.getConditionsText(),
|
|
}}
|
|
searchFilters={[
|
|
(deployment: Deployment) => deployment.getSearchFields(),
|
|
(deployment: Deployment) => deployment.getConditionsText(),
|
|
]}
|
|
renderHeaderTitle={<Trans>Deployments</Trans>}
|
|
renderTableHeader={[
|
|
{ title: <Trans>Name</Trans>, className: "name", sortBy: sortBy.name },
|
|
{ title: <Trans>Namespace</Trans>, className: "namespace", sortBy: sortBy.namespace },
|
|
{ title: <Trans>Pods</Trans>, className: "pods" },
|
|
{ title: <Trans>Replicas</Trans>, className: "replicas", sortBy: sortBy.replicas },
|
|
{ className: "warning" },
|
|
{ title: <Trans>Age</Trans>, className: "age", sortBy: sortBy.age },
|
|
{ title: <Trans>Conditions</Trans>, className: "conditions", sortBy: sortBy.condition },
|
|
]}
|
|
renderTableContents={(deployment: Deployment) => [
|
|
deployment.getName(),
|
|
deployment.getNs(),
|
|
this.renderPods(deployment),
|
|
deployment.getReplicas(),
|
|
<KubeEventIcon object={deployment}/>,
|
|
deployment.getAge(),
|
|
this.renderConditions(deployment),
|
|
]}
|
|
renderItemMenu={(item: Deployment) => {
|
|
return <DeploymentMenu object={item}/>
|
|
}}
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
|
|
export function DeploymentMenu(props: KubeObjectMenuProps<Deployment>) {
|
|
const { object, toolbar } = props;
|
|
return (
|
|
<KubeObjectMenu {...props}>
|
|
<MenuItem onClick={() => DeploymentScaleDialog.open(object)}>
|
|
<Icon material="control_camera" title={_i18n._(t`Scale`)} interactive={toolbar}/>
|
|
<span className="title"><Trans>Scale</Trans></span>
|
|
</MenuItem>
|
|
</KubeObjectMenu>
|
|
)
|
|
}
|
|
|
|
apiManager.registerViews(deploymentApi, {
|
|
Menu: DeploymentMenu,
|
|
}); |