import React, { useState, useEffect, useRef } from "react"; import { EventEmitter } from "../../utils/EventEmitter"; import { RunningScript } from "../../Script/RunningScript"; import { killWorkerScript } from "../../Netscript/killWorkerScript"; import Typography from "@mui/material/Typography"; import Box from "@mui/material/Box"; import Button from "@mui/material/Button"; import Paper from "@mui/material/Paper"; import Draggable from "react-draggable"; import { ResizableBox } from "react-resizable"; import makeStyles from "@mui/styles/makeStyles"; import createStyles from "@mui/styles/createStyles"; import ArrowForwardIosIcon from "@mui/icons-material/ArrowForwardIos"; import { workerScripts } from "../../Netscript/WorkerScripts"; import { startWorkerScript } from "../../NetscriptWorker"; import { GetServer } from "../../Server/AllServers"; import { Theme } from "@mui/material"; let layerCounter = 0; export const LogBoxEvents = new EventEmitter<[RunningScript]>(); export const LogBoxClearEvents = new EventEmitter<[]>(); interface Log { id: string; script: RunningScript; } let logs: Log[] = []; export function LogBoxManager(): React.ReactElement { const setRerender = useState(true)[1]; function rerender(): void { setRerender((o) => !o); } useEffect( () => LogBoxEvents.subscribe((script: RunningScript) => { const id = script.server + "-" + script.filename + script.args.map((x: any): string => `${x}`).join("-"); if (logs.find((l) => l.id === id)) return; logs.push({ id: id, script: script, }); rerender(); }), [], ); useEffect(() => LogBoxClearEvents.subscribe(() => { logs = []; rerender(); }), ); function close(id: string): void { logs = logs.filter((l) => l.id !== id); rerender(); } return ( <> {logs.map((log) => ( close(log.id)} /> ))} ); } interface IProps { script: RunningScript; id: string; onClose: () => void; } const useStyles = makeStyles((theme: Theme) => createStyles({ logs: { overflowY: "scroll", overflowX: "hidden", scrollbarWidth: "auto", display: "flex", flexDirection: "column-reverse", }, success: { color: theme.colors.success, }, error: { color: theme.palette.error.main, }, primary: { color: theme.palette.primary.main, }, info: { color: theme.palette.info.main, }, warning: { color: theme.palette.warning.main, }, }), ); function LogWindow(props: IProps): React.ReactElement { const classes = useStyles(); const container = useRef(null); const setRerender = useState(false)[1]; function rerender(): void { setRerender((old) => !old); } useEffect(() => { updateLayer(); const id = setInterval(rerender, 1000); return () => clearInterval(id); }, []); function kill(): void { killWorkerScript(props.script, props.script.server, true); } function run(): void { const server = GetServer(props.script.server); if (server === null) return; startWorkerScript(props.script, server); } function updateLayer(): void { const c = container.current; if (c === null) return; c.style.zIndex = 1500 + layerCounter + ""; layerCounter++; rerender(); } function title(): string { const maxLength = 30; const t = `${props.script.filename} ${props.script.args.map((x: any): string => `${x}`).join(" ")}`; if (t.length <= maxLength) { return t; } return t.slice(0, maxLength - 3) + "..."; } function lineClass(s: string): string { if (s.match(/(^\[[^\]]+\] )?ERROR/) || s.match(/(^\[[^\]]+\] )?FAIL/)) { return classes.error; } if (s.match(/(^\[[^\]]+\] )?SUCCESS/)) { return classes.success; } if (s.match(/(^\[[^\]]+\] )?WARN/)) { return classes.warning; } if (s.match(/(^\[[^\]]+\] )?INFO/)) { return classes.info; } return classes.primary; } return (
{title()} {!workerScripts.has(props.script.pid) && } {workerScripts.has(props.script.pid) && } } > {props.script.logs.map( (line: string, i: number): JSX.Element => ( {line}
), )}
); }