1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/dashboard/client/components/dock/terminal-tab.tsx
Jari Kolehmainen 6d4a7f657d
Terminal dock tab improvements (#294)
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2020-04-26 10:54:16 +03:00

61 lines
1.4 KiB
TypeScript

import "./terminal-tab.scss"
import React from "react"
import { observer } from "mobx-react";
import { Trans } from "@lingui/macro";
import { autobind, cssNames } from "../../utils";
import { DockTab, DockTabProps } from "./dock-tab";
import { Icon } from "../icon";
import { terminalStore } from "./terminal.store";
import { dockStore } from "./dock.store";
import { reaction } from "mobx";
interface Props extends DockTabProps {
}
@observer
export class TerminalTab extends React.Component<Props> {
componentDidMount() {
reaction(() => this.isDisconnected, () => {
dockStore.closeTab(this.tabId)
})
}
get tabId() {
return this.props.value.id;
}
get isDisconnected() {
return terminalStore.isDisconnected(this.tabId);
}
@autobind()
reconnect() {
terminalStore.reconnect(this.tabId);
}
render() {
const tabIcon = <Icon svg="terminal"/>;
const className = cssNames("TerminalTab", this.props.className, {
disconnected: this.isDisconnected,
});
return (
<DockTab
{...this.props}
className={className}
icon={tabIcon}
moreActions={this.isDisconnected && (
<Icon
small
material="refresh"
className="restart-icon"
tooltip={<Trans>Restart session</Trans>}
onClick={this.reconnect}
/>
)}
/>
)
}
}