bitburner-src/src/ui/React/LogBoxManager.tsx

163 lines
4.8 KiB
TypeScript
Raw Normal View History

2021-10-01 07:00:50 +02:00
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";
2021-10-05 06:59:40 +02:00
import Draggable from "react-draggable";
2021-10-05 07:23:20 +02:00
import { ResizableBox } from "react-resizable";
2021-10-07 21:02:54 +02:00
import makeStyles from "@mui/styles/makeStyles";
import createStyles from "@mui/styles/createStyles";
2021-10-05 07:23:20 +02:00
import ArrowForwardIosIcon from "@mui/icons-material/ArrowForwardIos";
2021-10-15 19:49:03 +02:00
import _ from "lodash";
2021-10-01 07:00:50 +02:00
export const LogBoxEvents = new EventEmitter<[RunningScript]>();
interface Log {
id: string;
script: RunningScript;
}
export function LogBoxManager(): React.ReactElement {
const [logs, setLogs] = useState<Log[]>([]);
useEffect(
() =>
LogBoxEvents.subscribe((script: RunningScript) => {
const id = script.server + "-" + script.filename + script.args.map((x: any): string => `${x}`).join("-");
setLogs((old) => {
return [
...old,
{
id: id,
script: script,
},
];
});
}),
[],
);
function close(id: string): void {
setLogs((old) => old.filter((l) => l.id !== id));
}
return (
<>
{logs.map((log) => (
<LogWindow key={log.id} script={log.script} id={log.id} onClose={() => close(log.id)} />
))}
</>
);
}
interface IProps {
script: RunningScript;
id: string;
onClose: () => void;
}
2021-10-07 21:02:54 +02:00
const useStyles = makeStyles(() =>
createStyles({
logs: {
overflowY: "scroll",
overflowX: "hidden",
scrollbarWidth: "auto",
display: "flex",
flexDirection: "column-reverse",
},
}),
);
2021-10-01 07:00:50 +02:00
function LogWindow(props: IProps): React.ReactElement {
2021-10-07 21:02:54 +02:00
const classes = useStyles();
2021-10-01 07:00:50 +02:00
const container = useRef<HTMLDivElement>(null);
const setRerender = useState(false)[1];
function rerender(): void {
setRerender((old) => !old);
}
useEffect(() => {
const id = setInterval(rerender, 1000);
return () => clearInterval(id);
}, []);
function kill(): void {
killWorkerScript(props.script, props.script.server, true);
props.onClose();
}
2021-10-15 19:49:03 +02:00
//useEffect(() => TerminalEvents.subscribe(_.debounce(async () => rerender(), 25, { maxWait: 50 })), []);
2021-10-15 19:59:42 +02:00
function updateLayer(): void {
2021-10-15 19:49:03 +02:00
const c = container.current;
if (c === null) return;
2021-10-15 20:04:42 +02:00
// This number is getTime on 2021-10-15, the reason we need this is to remove a
2021-10-15 20:05:56 +02:00
// large number from getTime so it's value fits in an int32 (from int64).
// The date is arbitrary but it is the date that this "stay-on-top" mechanic was released
// so every future date is guaranteed to be at least after that.
2021-10-15 20:04:42 +02:00
const date = 1634320967207;
// +1500 so it's at least on top of everything else in the game.
c.style.zIndex = new Date().getTime() - date + 1500 + "";
2021-10-15 19:49:03 +02:00
rerender();
}
2021-10-01 07:00:50 +02:00
return (
2021-10-15 19:59:42 +02:00
<Draggable handle=".drag">
2021-10-01 07:00:50 +02:00
<Paper
style={{
2021-10-05 06:59:40 +02:00
display: "flex",
flexFlow: "column",
position: "fixed",
2021-10-05 07:30:37 +02:00
left: "40%",
top: "30%",
zIndex: 1400,
2021-10-01 07:00:50 +02:00
}}
2021-10-05 06:59:40 +02:00
ref={container}
2021-10-01 07:00:50 +02:00
>
2021-10-15 19:59:42 +02:00
<div onMouseDown={updateLayer}>
<Paper
style={{
cursor: "grab",
}}
2021-10-05 07:23:20 +02:00
>
2021-10-15 19:59:42 +02:00
<Box className="drag" display="flex" alignItems="center">
<Typography color="primary" variant="h6">
{props.script.filename} {props.script.args.map((x: any): string => `${x}`).join(" ")}
</Typography>
<Box position="absolute" right={0}>
<Button onClick={kill}>Kill Script</Button>
<Button onClick={props.onClose}>Close</Button>
</Box>
2021-10-05 07:23:20 +02:00
</Box>
2021-10-15 19:59:42 +02:00
</Paper>
<Paper sx={{ overflow: "scroll", overflowWrap: "break-word", whiteSpace: "pre-line" }}>
<ResizableBox
className={classes.logs}
height={500}
width={500}
handle={
<span style={{ position: "absolute", right: "-10px", bottom: "-13px", cursor: "nw-resize" }}>
<ArrowForwardIosIcon color="primary" style={{ transform: "rotate(45deg)" }} />
</span>
}
>
<Box>
{props.script.logs.map(
(line: string, i: number): JSX.Element => (
<Typography key={i}>
{line}
<br />
</Typography>
),
)}
</Box>
</ResizableBox>
</Paper>
</div>
2021-10-01 07:00:50 +02:00
</Paper>
2021-10-05 06:59:40 +02:00
</Draggable>
2021-10-01 07:00:50 +02:00
);
}