mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-20 13:15:48 +01:00
64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
import React from "react";
|
|
|
|
import Typography from "@mui/material/Typography";
|
|
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 { Adjuster } from "./Adjuster";
|
|
import { Player } from "@player";
|
|
|
|
const bigNumber = 1e27;
|
|
|
|
export function GangDev(): React.ReactElement {
|
|
function addTonsGangCycles(): void {
|
|
if (Player.gang) {
|
|
Player.gang.storedCycles = bigNumber;
|
|
}
|
|
}
|
|
|
|
function modifyGangCycles(modify: number): (x: number) => void {
|
|
return function (cycles: number): void {
|
|
if (Player.gang) {
|
|
Player.gang.storedCycles += cycles * modify;
|
|
}
|
|
};
|
|
}
|
|
|
|
function resetGangCycles(): void {
|
|
if (Player.gang) {
|
|
Player.gang.storedCycles = 0;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Accordion TransitionProps={{ unmountOnExit: true }}>
|
|
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
|
|
<Typography>Gang</Typography>
|
|
</AccordionSummary>
|
|
<AccordionDetails>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<Typography>Cycles:</Typography>
|
|
</td>
|
|
<td>
|
|
<Adjuster
|
|
label="cycles"
|
|
placeholder="amt"
|
|
tons={addTonsGangCycles}
|
|
add={modifyGangCycles(1)}
|
|
subtract={modifyGangCycles(-1)}
|
|
reset={resetGangCycles}
|
|
/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</AccordionDetails>
|
|
</Accordion>
|
|
);
|
|
}
|