mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import "./service-ports.scss";
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { t } from "@lingui/macro";
|
|
import { Service, ServicePort } from "../../api/endpoints";
|
|
import { _i18n } from "../../i18n";
|
|
import { apiBase } from "../../api";
|
|
import { observable } from "mobx";
|
|
import { cssNames } from "../../utils";
|
|
import { Notifications } from "../notifications";
|
|
import { Spinner } from "../spinner";
|
|
|
|
interface Props {
|
|
service: Service;
|
|
}
|
|
|
|
@observer
|
|
export class ServicePorts extends React.Component<Props> {
|
|
@observable waiting = false;
|
|
|
|
async portForward(port: ServicePort): Promise<void> {
|
|
const { service } = this.props;
|
|
|
|
try {
|
|
this.waiting = true;
|
|
await apiBase.post(`/services/${service.getNs()}/${service.getName()}/port-forward/${port.port}`, {});
|
|
} catch (error) {
|
|
Notifications.error(error);
|
|
} finally {
|
|
this.waiting = false;
|
|
}
|
|
}
|
|
|
|
render(): JSX.Element {
|
|
const { service } = this.props;
|
|
return (
|
|
<div className={cssNames("ServicePorts", { waiting: this.waiting })}>
|
|
{
|
|
service.getPorts().map((port) => {
|
|
return(
|
|
<p key={port.toString()}>
|
|
<span
|
|
title={_i18n._(t`Open in a browser`)}
|
|
onClick={(): Promise<void> => this.portForward(port) }
|
|
>
|
|
{port.toString()}
|
|
{this.waiting && (
|
|
<Spinner />
|
|
)}
|
|
</span>
|
|
</p>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
}
|