1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/dock/logs/controls.tsx
Alex Andreev 356712cbe1 Linter fixes
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2022-08-02 10:50:30 +03:00

127 lines
3.6 KiB
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import "./controls.scss";
import React from "react";
import { observer } from "mobx-react";
import { cssNames } from "../../../utils";
import { Checkbox } from "../../checkbox";
import { Icon } from "../../icon";
import type { LogTabViewModel } from "./logs-view-model";
import { withInjectables } from "@ogre-tools/injectable-react";
import openSaveFileDialogInjectable from "../../../utils/save-file.injectable";
import callForAllLogsInjectable from "./call-for-all-logs.injectable";
import { DownloadLogsDropdown } from "./download-logs-dropdown";
export interface LogControlsProps {
model: LogTabViewModel;
}
interface Dependencies {
openSaveFileDialog: (filename: string, contents: BlobPart | BlobPart[], type: string) => void;
callForAllLogs: (name: string, namespace: string) => Promise<string>;
}
const NonInjectedLogControls = observer(({ openSaveFileDialog, model, callForAllLogs }: Dependencies & LogControlsProps) => {
const tabData = model.logTabData.get();
const pod = model.pod.get();
if (!tabData || !pod) {
return null;
}
const logs = model.timestampSplitLogs.get();
const { showTimestamps, showPrevious: previous } = tabData;
const since = logs.length ? logs[0][0] : null;
const toggleTimestamps = () => {
model.updateLogTabData({ showTimestamps: !showTimestamps });
};
const togglePrevious = () => {
model.updateLogTabData({ showPrevious: !previous });
model.reloadLogs();
};
const downloadAllLogs = async () => {
const pod = model.pod.get();
if (pod) {
const logs = await callForAllLogs(pod.getName(), pod.getNs());
openSaveFileDialog(`${pod.getName()}.log`, logs, "text/plain");
}
};
const downloadLogs = () => {
return new Promise((resolve) => {
const fileName = pod.getName();
const logsToDownload: string[] = showTimestamps
? model.logs.get()
: model.logsWithoutTimestamps.get();
openSaveFileDialog(`${fileName}.log`, logsToDownload.join("\n"), "text/plain");
resolve(true);
});
};
return (
<div className={cssNames("LogControls flex gaps align-center justify-space-between wrap")}>
<div className="time-range">
{since && (
<span>
Logs from
{" "}
<b>{new Date(since).toLocaleString()}</b>
</span>
)}
</div>
<div className="flex gaps align-center">
<Checkbox
label="Show timestamps"
value={showTimestamps}
onChange={toggleTimestamps}
className="show-timestamps"
/>
<Checkbox
label="Show previous terminated container"
value={previous}
onChange={togglePrevious}
className="show-previous"
/>
<DownloadLogsDropdown
downloadVisibleLogs={downloadLogs}
downloadAllLogs={downloadAllLogs}
/>
<Icon
material="get_app"
onClick={downloadLogs}
tooltip="Download"
className="download-icon"
/>
<Icon
material="refresh"
onClick={downloadAllLogs}
tooltip="Download"
className="download-icon"
/>
</div>
</div>
);
});
export const LogControls = withInjectables<Dependencies, LogControlsProps>(NonInjectedLogControls, {
getProps: (di, props) => ({
openSaveFileDialog: di.inject(openSaveFileDialogInjectable),
callForAllLogs: di.inject(callForAllLogsInjectable),
...props,
}),
});