import "./log-controls.scss"; import React from "react"; import { observer } from "mobx-react"; import { Pod } from "../../api/endpoints"; import { cssNames, saveFileDialog } from "../../utils"; import { IPodLogsData, podLogsStore } from "./log.store"; import { Checkbox } from "../checkbox"; import { Icon } from "../icon"; interface Props { tabData: IPodLogsData logs: string[] save: (data: Partial) => void reload: () => void } export const LogControls = observer((props: Props) => { const { tabData, save, reload, logs } = props; const { showTimestamps, previous } = tabData; const since = logs.length ? podLogsStore.getTimestamps(logs[0]) : null; const pod = new Pod(tabData.pod); const toggleTimestamps = () => { save({ showTimestamps: !showTimestamps }); }; const togglePrevious = () => { save({ previous: !previous }); reload(); }; const downloadLogs = () => { const fileName = pod.getName(); const logsToDownload = showTimestamps ? logs : podLogsStore.logsWithoutTimestamps; saveFileDialog(`${fileName}.log`, logsToDownload.join("\n"), "text/plain"); }; return (
{since && `Logs from ${new Date(since[0]).toLocaleString()}`}
); });