mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Fixes pod logs not working on initial load - Removes DockStore as a dependency of all *TabStore - Removes all the reactions about loading new data from the stores - Removes dependencies on selectedTabId from all *TabStore's Signed-off-by: Sebastian Malton <sebastian@malton.name>
82 lines
2.2 KiB
TypeScript
82 lines
2.2 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, saveFileDialog } from "../../../utils";
|
|
import { Checkbox } from "../../checkbox";
|
|
import { Icon } from "../../icon";
|
|
import type { LogTabViewModel } from "./logs-view-model";
|
|
|
|
export interface LogControlsProps {
|
|
model: LogTabViewModel;
|
|
}
|
|
|
|
export const LogControls = observer(({ model }: LogControlsProps) => {
|
|
const tabData = model.logTabData.get();
|
|
|
|
if (!tabData) {
|
|
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 downloadLogs = () => {
|
|
const fileName = model.pod.get().getName();
|
|
const logsToDownload: string[] = showTimestamps
|
|
? model.logs.get()
|
|
: model.logsWithoutTimestamps.get();
|
|
|
|
saveFileDialog(`${fileName}.log`, logsToDownload.join("\n"), "text/plain");
|
|
};
|
|
|
|
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[0]).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"
|
|
/>
|
|
<Icon
|
|
material="get_app"
|
|
onClick={downloadLogs}
|
|
tooltip="Download"
|
|
className="download-icon"
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|