All files / src/components/common/StatCard MobileStatCard.tsx

0% Statements 0/26
0% Branches 0/6
0% Functions 0/12
0% Lines 0/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137                                                                                                                                                                                                                                                                                 
import React from "react";
import { StatCardProps } from "@common/StatCard/StatCard";
import { Box, Stack, styled } from "@mui/material";
import { Text } from "@common/Text";
import { palette } from "@palette";
import Grid from "@mui/material/Grid";
import {
  Accordion,
  AccordionDetails,
  AccordionSummary,
} from "@common/Accordion";
import { useAppDispatch } from "@redux/hooks";
 
const MobileStatCard = ({ title, mainStat, stats, actions }: StatCardProps) => {
  const [expanded, setExpanded] = React.useState<boolean>(false);
  const handleExpanded = () => {
    setExpanded((prevState) => !prevState);
  };
 
  const accordionSummary = {
    "& .MuiAccordionSummary-expandIconWrapper": {
      transform: "rotate(90deg)",
 
      "&.Mui-expanded": {
        transform: "rotate(-90deg)",
      },
    },
  };
 
  const [mainStatVal, mainStatSup] = `${mainStat.value}`.split(".");
 
  return (
    <Stack>
      <StyledTitle>{title}</StyledTitle>
      <Accordion expanded={expanded} onClick={handleExpanded}>
        <Stack>
          <AccordionSummary sx={accordionSummary}>
            <StyledContainer>
              <StyledMainStatValue>
                {mainStatVal}
                <MainStatSup>.{mainStatSup}</MainStatSup>
              </StyledMainStatValue>
              <MainStatTitle>
                {mainStat.title}
                {mainStat.isAmount && <span> (USD)</span>}
              </MainStatTitle>
            </StyledContainer>
          </AccordionSummary>
        </Stack>
        <AccordionDetails>
          <Stack spacing={1}>
            {stats.map(({ isAmount, title, value, percent }, index) => {
              const [val, sup] = `${value}`.split(".");
 
              return (
                <Grid
                  key={index}
                  container
                  spacing={1}
                  justifyContent="space-between"
                  sx={{ m: 0, pr: 1 }}
                >
                  <StatText>
                    {title}
                    {percent && ` (\u0025)`}
                    {isAmount && " (USD)"}
                  </StatText>
                  <StatValue>
                    {Number(val).toLocaleString("en-US")}
                    <StatSup>.{sup}</StatSup>
                  </StatValue>
                </Grid>
              );
            })}
          </Stack>
        </AccordionDetails>
      </Accordion>
      {actions}
    </Stack>
  );
};
 
export default MobileStatCard;
 
const StyledTitle = styled(Text)(() => ({
  fontSize: 24,
  fontWeight: 300,
  lineHeight: "24.3px",
  letterSpacing: "-0.01em",
  color: palette.neutral[750],
}));
 
const StatText = styled(Text)(() => ({
  fontSize: 14,
  fontWeight: 350,
  lineHeight: "16.8px",
  color: palette.neutral[750],
}));
 
const StatValue = styled(Text)(() => ({
  fontSize: 16,
  fontWeight: 300,
  lineHeight: "16.8px",
  color: palette.neutral[750],
}));
 
const StatSup = styled("sup")(() => ({
  fontSize: 7,
}));
 
const MainStatTitle = styled(Text)(() => ({
  fontSize: 12,
  fontWeight: 300,
  lineHeight: "16.8px",
  color: palette.neutral[500],
}));
 
const StyledMainStatValue = styled(Text)(() => ({
  fontSize: 24,
  fontWeight: 300,
  lineHeight: "24.3px",
  letterSpacing: "-1%",
  background: palette.gradient[10],
  textFillColor: "transparent",
  backgroundClip: "text",
}));
 
const MainStatSup = styled("sup")(() => ({
  fontSize: 9,
}));
 
const StyledContainer = styled(Box)(() => ({
  display: "flex",
  flexDirection: "column",
  justifyContent: "space-between",
}));