frontPanel/src/ui_kit/Stepper.tsx

60 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-09-15 12:37:12 +00:00
import * as React from "react";
import MobileStepper from "@mui/material/MobileStepper";
import { Box, Typography, useMediaQuery, useTheme } from "@mui/material";
2023-03-03 20:07:19 +00:00
interface Props {
2023-09-15 12:37:12 +00:00
desc?: string;
activeStep?: number;
steps?: number;
2023-03-03 20:07:19 +00:00
}
2023-09-15 12:37:12 +00:00
export default function ProgressMobileStepper({ desc, activeStep = 1, steps = 7 }: Props) {
const theme = useTheme();
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
2023-03-01 22:59:51 +00:00
return (
2023-09-15 12:37:12 +00:00
<Box
sx={{
maxWidth: isTablet ? "800px" : "100%",
width: "100%",
display: "flex",
justifyContent: "center",
flexDirection: "column",
height: "51px",
borderRadius: "13px",
border: "solid #7E2AEA 1px",
padding: "0 0 20px 0",
overflow: "hidden",
}}
>
<MobileStepper
variant="progress"
steps={steps}
position="static"
activeStep={activeStep}
sx={{
width: "100%",
flexGrow: 1,
paddingLeft: 0,
"& .css-1ej0n1q-MuiLinearProgress-root-MuiMobileStepper-progress": {
height: "10px",
background: "#ffffff",
width: "100%",
},
"& .css-1v0msyf-MuiLinearProgress-bar1": {
background: "#7e2aea",
},
}}
nextButton={<></>}
backButton={<></>}
/>
<Box sx={{ padding: "3px 3px 3px 20px" }}>
<Typography sx={{ fontWeight: 400, fontSize: "12px", lineHeight: "14.22px" }}>
{" "}
Шаг {activeStep} из {steps - 1}
</Typography>
<Typography>{desc}</Typography>
</Box>
2023-03-01 22:59:51 +00:00
</Box>
);
2023-09-15 12:37:12 +00:00
}