mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-04 04:17:33 +01:00
75 lines
2.3 KiB
TypeScript
75 lines
2.3 KiB
TypeScript
import React, { useState } from "react";
|
|
|
|
import Accordion from "@mui/material/Accordion";
|
|
import AccordionSummary from "@mui/material/AccordionSummary";
|
|
import AccordionDetails from "@mui/material/AccordionDetails";
|
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
|
|
|
import Typography from "@mui/material/Typography";
|
|
import Button from "@mui/material/Button";
|
|
import Select, { SelectChangeEvent } from "@mui/material/Select";
|
|
import { IPlayer } from "../../PersonObjects/IPlayer";
|
|
import { Programs as AllPrograms } from "../../Programs/Programs";
|
|
import MenuItem from "@mui/material/MenuItem";
|
|
|
|
interface IProps {
|
|
player: IPlayer;
|
|
}
|
|
|
|
export function Programs(props: IProps): React.ReactElement {
|
|
const [program, setProgram] = useState("NUKE.exe");
|
|
function setProgramDropdown(event: SelectChangeEvent<string>): void {
|
|
setProgram(event.target.value as string);
|
|
}
|
|
function addProgram(): void {
|
|
if (!props.player.hasProgram(program)) {
|
|
props.player.getHomeComputer().programs.push(program);
|
|
}
|
|
}
|
|
|
|
function addAllPrograms(): void {
|
|
for (const i in AllPrograms) {
|
|
if (!props.player.hasProgram(AllPrograms[i].name)) {
|
|
props.player.getHomeComputer().programs.push(AllPrograms[i].name);
|
|
}
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Accordion TransitionProps={{ unmountOnExit: true }}>
|
|
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
|
|
<Typography>Programs</Typography>
|
|
</AccordionSummary>
|
|
<AccordionDetails>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<Typography>Program:</Typography>
|
|
</td>
|
|
<td>
|
|
<Select onChange={setProgramDropdown} value={program}>
|
|
{Object.values(AllPrograms).map((program) => (
|
|
<MenuItem key={program.name} value={program.name}>
|
|
{program.name}
|
|
</MenuItem>
|
|
))}
|
|
</Select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<Typography>Add:</Typography>
|
|
</td>
|
|
<td>
|
|
<Button onClick={addProgram}>One</Button>
|
|
<Button onClick={addAllPrograms}>All</Button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</AccordionDetails>
|
|
</Accordion>
|
|
);
|
|
}
|