mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-23 08:03:48 +01:00
Merge pull request #3220 from phyzical/bugfix/3214
add similar sort to the faction joined list
This commit is contained in:
commit
4c64863314
@ -19,6 +19,7 @@ import { IRouter } from "../../ui/Router";
|
|||||||
import { Faction } from "../Faction";
|
import { Faction } from "../Faction";
|
||||||
import { joinFaction } from "../FactionHelpers";
|
import { joinFaction } from "../FactionHelpers";
|
||||||
import { Factions } from "../Factions";
|
import { Factions } from "../Factions";
|
||||||
|
import { FactionNames } from "../data/FactionNames";
|
||||||
|
|
||||||
export const InvitationsSeen: string[] = [];
|
export const InvitationsSeen: string[] = [];
|
||||||
|
|
||||||
@ -80,6 +81,11 @@ export function FactionsRoot(props: IProps): React.ReactElement {
|
|||||||
).length;
|
).length;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const allFactions = Object.values(FactionNames).map(faction => faction as string)
|
||||||
|
const allJoinedFactions = props.player.factions.slice(0);
|
||||||
|
allJoinedFactions.sort((a, b) =>
|
||||||
|
allFactions.indexOf(a) - allFactions.indexOf(b));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container disableGutters maxWidth="md" sx={{ mx: 0, mb: 10 }}>
|
<Container disableGutters maxWidth="md" sx={{ mx: 0, mb: 10 }}>
|
||||||
<Typography variant="h4">Factions</Typography>
|
<Typography variant="h4">Factions</Typography>
|
||||||
@ -92,11 +98,11 @@ export function FactionsRoot(props: IProps): React.ReactElement {
|
|||||||
<Typography variant="h5" color="primary" mt={2} mb={1}>
|
<Typography variant="h5" color="primary" mt={2} mb={1}>
|
||||||
Factions you have joined:
|
Factions you have joined:
|
||||||
</Typography>
|
</Typography>
|
||||||
{(props.player.factions.length > 0 && (
|
{(allJoinedFactions.length > 0 && (
|
||||||
<Paper sx={{ my: 1, p: 1, pb: 0, display: "inline-block" }}>
|
<Paper sx={{ my: 1, p: 1, pb: 0, display: "inline-block" }}>
|
||||||
<Table padding="none" style={{ width: "fit-content" }}>
|
<Table padding="none" style={{ width: "fit-content" }}>
|
||||||
<TableBody>
|
<TableBody>
|
||||||
{props.player.factions.map((faction: string) => (
|
{allJoinedFactions.map((faction: string) => (
|
||||||
<TableRow key={faction}>
|
<TableRow key={faction}>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
<Typography noWrap mb={1}>
|
<Typography noWrap mb={1}>
|
||||||
|
Loading…
Reference in New Issue
Block a user