1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/dialog/logs-dialog.tsx
2022-04-06 10:34:16 -04:00

59 lines
1.7 KiB
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import "./logs-dialog.scss";
import React from "react";
import type { DialogProps } from "../dialog";
import { Dialog } from "../dialog";
import { Wizard, WizardStep } from "../wizard";
import { Notifications } from "../notifications";
import { Button } from "../button";
import { Icon } from "../icon";
import { clipboard } from "electron";
// todo: make as external BrowserWindow (?)
export interface LogsDialogProps extends DialogProps {
title: string;
logs: string;
}
export class LogsDialog extends React.Component<LogsDialogProps> {
public logsElem: HTMLElement;
copyToClipboard = () => {
clipboard.writeText(this.props.logs);
Notifications.ok(`Logs copied to clipboard.`);
};
render() {
const { title, logs, ...dialogProps } = this.props;
const header = <h5>{title}</h5>;
const customButtons = (
<div className="buttons flex gaps align-center justify-space-between">
<Button plain onClick={this.copyToClipboard}>
<Icon material="assignment"/> Copy to clipboard
</Button>
<Button plain onClick={dialogProps.close}>
Close
</Button>
</div>
);
return (
<Dialog {...dialogProps} className="LogsDialog">
<Wizard header={header} done={dialogProps.close}>
<WizardStep scrollable={false} customButtons={customButtons}>
<code className="block" ref={e => this.logsElem = e}>
{logs || "There are no logs available."}
</code>
</WizardStep>
</Wizard>
</Dialog>
);
}
}