mirror of
https://github.com/calli-eve/eve-pi.git
synced 2026-02-11 18:28:49 +01:00
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { AccessToken } from "@/types";
|
|
import { Box, Stack, Typography } from "@mui/material";
|
|
import { CharacterRow } from "../Characters/CharacterRow";
|
|
import { PlanetaryInteractionRow } from "../PlanetaryInteraction/PlanetaryInteractionRow";
|
|
import { useContext } from "react";
|
|
import { SessionContext } from "@/app/context/Context";
|
|
|
|
export const AccountCard = ({
|
|
characters,
|
|
sessionReady,
|
|
}: {
|
|
characters: AccessToken[];
|
|
sessionReady: boolean;
|
|
}) => {
|
|
const { compactMode } = useContext(SessionContext);
|
|
return (
|
|
<Box
|
|
sx={{
|
|
padding: 1,
|
|
borderBottom: compactMode ? "" : "solid 1px gray",
|
|
borderRight: compactMode ? "solid 1px gray" : "",
|
|
}}
|
|
>
|
|
<Typography style={{ fontSize: "0.8rem" }} paddingLeft={2}>
|
|
{characters[0].account !== "-"
|
|
? `Account: ${characters[0].account}`
|
|
: ""}
|
|
</Typography>
|
|
{characters.map((c) => (
|
|
<Stack
|
|
key={c.character.characterId}
|
|
direction="row"
|
|
alignItems="flex-start"
|
|
>
|
|
<CharacterRow character={c} />
|
|
{sessionReady && <PlanetaryInteractionRow character={c} />}
|
|
</Stack>
|
|
))}
|
|
</Box>
|
|
);
|
|
};
|