mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
Further tweaks/fixes
This commit is contained in:
parent
d728648bfa
commit
960dc354c1
@ -43,43 +43,51 @@ function BitNodeModifiedStats(props: BitNodeModifiedStatsProps): React.ReactElem
|
||||
interface MultListProps {
|
||||
rows: (string | number)[][];
|
||||
color: string;
|
||||
noMargin?: boolean;
|
||||
}
|
||||
|
||||
function MultiplierList(props: MultListProps): React.ReactElement {
|
||||
return (
|
||||
<List disablePadding>
|
||||
{props.rows.map((data) => {
|
||||
const mult = data[0] as string,
|
||||
value = data[1] as number,
|
||||
improved = data[2] as number | null,
|
||||
bnMult = data[3] as number;
|
||||
function MultiplierList({ rows, color, noMargin = false }: MultListProps): React.ReactElement {
|
||||
const listItems = rows
|
||||
.map((data) => {
|
||||
const mult = data[0] as string,
|
||||
value = data[1] as number,
|
||||
improved = data[2] as number | null,
|
||||
bnMult = data[3] as number;
|
||||
|
||||
if (improved) {
|
||||
return (
|
||||
<ListItem key={mult} disableGutters sx={{ py: 0 }}>
|
||||
<ListItemText
|
||||
sx={{ my: 0.1 }}
|
||||
primary={
|
||||
<Typography color={props.color}>
|
||||
<b>{mult}</b>
|
||||
</Typography>
|
||||
}
|
||||
secondary={
|
||||
<span style={{ display: "flex", alignItems: "center", flexWrap: "wrap" }}>
|
||||
<BitNodeModifiedStats base={value} mult={bnMult} color={props.color} />
|
||||
<DoubleArrow fontSize="small" color="success" sx={{ mb: 1, mx: 1 }} />
|
||||
<BitNodeModifiedStats base={improved} mult={bnMult} color={Settings.theme.success} />
|
||||
</span>
|
||||
}
|
||||
disableTypography
|
||||
/>
|
||||
</ListItem>
|
||||
);
|
||||
}
|
||||
return <></>;
|
||||
})}
|
||||
</List>
|
||||
);
|
||||
if (improved) {
|
||||
return (
|
||||
<ListItem key={mult} disableGutters sx={{ py: 0 }}>
|
||||
<ListItemText
|
||||
sx={{ my: 0.1 }}
|
||||
primary={
|
||||
<Typography color={color}>
|
||||
<b>{mult}</b>
|
||||
</Typography>
|
||||
}
|
||||
secondary={
|
||||
<span style={{ display: "flex", alignItems: "center", flexWrap: "wrap" }}>
|
||||
<BitNodeModifiedStats base={value} mult={bnMult} color={color} />
|
||||
<DoubleArrow fontSize="small" color="success" sx={{ mb: 1, mx: 1 }} />
|
||||
<BitNodeModifiedStats base={improved} mult={bnMult} color={Settings.theme.success} />
|
||||
</span>
|
||||
}
|
||||
disableTypography
|
||||
/>
|
||||
</ListItem>
|
||||
);
|
||||
}
|
||||
return;
|
||||
})
|
||||
.filter((i) => i !== undefined);
|
||||
|
||||
if (listItems.length > 0) {
|
||||
return (
|
||||
<List disablePadding sx={{ mb: noMargin ? 0 : 2 }}>
|
||||
{listItems}
|
||||
</List>
|
||||
);
|
||||
}
|
||||
return <></>;
|
||||
}
|
||||
|
||||
export function PlayerMultipliers(): React.ReactElement {
|
||||
@ -125,7 +133,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
|
||||
return (
|
||||
<Paper sx={{ p: 1, maxHeight: 400, overflowY: "scroll" }}>
|
||||
<Typography variant="h6">Multipliers</Typography>
|
||||
<Box>
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -136,7 +143,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.hack}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -155,7 +161,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.hack}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -169,7 +174,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -183,7 +187,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -202,7 +205,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -216,7 +218,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -230,7 +231,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.cha}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -267,7 +267,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.primary}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -287,7 +286,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.primary}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierList
|
||||
rows={[
|
||||
@ -301,7 +299,6 @@ export function PlayerMultipliers(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<BladeburnerMults />
|
||||
</Box>
|
||||
|
@ -40,11 +40,12 @@ const EmployersModal = ({ open, onClose }: EmployersModalProps): React.ReactElem
|
||||
interface MultTableProps {
|
||||
rows: (string | number)[][];
|
||||
color: string;
|
||||
noMargin?: boolean;
|
||||
}
|
||||
|
||||
function MultiplierTable(props: MultTableProps): React.ReactElement {
|
||||
return (
|
||||
<Table sx={{ display: "table", width: "100%" }}>
|
||||
<Table sx={{ display: "table", width: "100%", mb: (props.noMargin ?? false) === true ? 0 : 2 }}>
|
||||
<TableBody>
|
||||
{props.rows.map((data) => {
|
||||
const mult = data[0] as string,
|
||||
@ -89,6 +90,7 @@ function BladeburnerMults(): React.ReactElement {
|
||||
["Bladeburner Field Analysis", player.bladeburner_analysis_mult],
|
||||
]}
|
||||
color={Settings.theme.primary}
|
||||
noMargin
|
||||
/>
|
||||
);
|
||||
}
|
||||
@ -354,6 +356,10 @@ export function CharacterStats(): React.ReactElement {
|
||||
<br />
|
||||
When there is a dim number next to a multiplier, that means that the multiplier in question is being
|
||||
affected by BitNode multipliers.
|
||||
<br />
|
||||
<br />
|
||||
The dim number is the raw multiplier, and the undimmed number is the effective multiplier, as dictated
|
||||
by the BitNode.
|
||||
</Typography>
|
||||
}
|
||||
>
|
||||
@ -379,7 +385,6 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.hack}
|
||||
/>
|
||||
<br />
|
||||
<MultiplierTable
|
||||
rows={[
|
||||
[
|
||||
@ -395,8 +400,6 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.hack}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierTable
|
||||
rows={[
|
||||
[
|
||||
@ -408,8 +411,6 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierTable
|
||||
rows={[
|
||||
[
|
||||
@ -421,8 +422,6 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierTable
|
||||
rows={[
|
||||
[
|
||||
@ -434,8 +433,6 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierTable
|
||||
rows={[
|
||||
[
|
||||
@ -447,8 +444,6 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierTable
|
||||
rows={[
|
||||
[
|
||||
@ -459,6 +454,7 @@ export function CharacterStats(): React.ReactElement {
|
||||
["Charisma Experience", player.charisma_exp_mult],
|
||||
]}
|
||||
color={Settings.theme.cha}
|
||||
noMargin
|
||||
/>
|
||||
</Box>
|
||||
|
||||
@ -477,8 +473,6 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.primary}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierTable
|
||||
rows={[
|
||||
["Company reputation gain", player.company_rep_mult],
|
||||
@ -491,8 +485,6 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.primary}
|
||||
/>
|
||||
<br />
|
||||
|
||||
<MultiplierTable
|
||||
rows={[
|
||||
["Crime success", player.crime_success_mult],
|
||||
@ -500,9 +492,7 @@ export function CharacterStats(): React.ReactElement {
|
||||
]}
|
||||
color={Settings.theme.combat}
|
||||
/>
|
||||
<br />
|
||||
<BladeburnerMults />
|
||||
<br />
|
||||
</Box>
|
||||
</Box>
|
||||
</Paper>
|
||||
|
Loading…
Reference in New Issue
Block a user