mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 00:32:51 +02:00
GO: Various changes before 2.6.0 (#1120)
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
import React from "react";
|
||||
import { Container, Tab, Tabs } from "@mui/material";
|
||||
|
||||
import { GoInstructionsPage } from "./GoInstructionsPage";
|
||||
import { BorderInnerSharp, Help, ManageSearch, History } from "@mui/icons-material";
|
||||
import { GoStatusPage } from "./GoStatusPage";
|
||||
import { GoHistoryPage } from "./GoHistoryPage";
|
||||
import { GoGameboardWrapper } from "./GoGameboardWrapper";
|
||||
import { boardStyles } from "../boardState/goStyles";
|
||||
|
||||
export function GoRoot(): React.ReactElement {
|
||||
const classes = boardStyles();
|
||||
const [value, setValue] = React.useState(0);
|
||||
|
||||
function handleChange(event: React.SyntheticEvent, tab: number): void {
|
||||
setValue(tab);
|
||||
}
|
||||
|
||||
function showInstructions() {
|
||||
setValue(3);
|
||||
}
|
||||
|
||||
return (
|
||||
<Container disableGutters maxWidth="lg" sx={{ mx: 0 }}>
|
||||
<Tabs variant="fullWidth" value={value} onChange={handleChange} sx={{ minWidth: "fit-content", maxWidth: "45%" }}>
|
||||
<Tab label="IPvGO Subnet" icon={<BorderInnerSharp />} iconPosition={"start"} className={classes.tab} />
|
||||
<Tab label="Status" icon={<ManageSearch />} iconPosition={"start"} className={classes.tab} />
|
||||
<Tab label="History" icon={<History />} iconPosition={"start"} className={classes.tab} />
|
||||
<Tab label="How to Play" icon={<Help />} iconPosition={"start"} className={classes.tab} />
|
||||
</Tabs>
|
||||
{value === 0 && <GoGameboardWrapper showInstructions={showInstructions} />}
|
||||
{value === 1 && <GoStatusPage />}
|
||||
{value === 2 && <GoHistoryPage />}
|
||||
{value === 3 && <GoInstructionsPage />}
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user