frontPanel/src/pages/IntegrationsPage/IntegrationsModal/IntegrationStep3/IntegrationStep3.tsx

77 lines
2.0 KiB
TypeScript
Raw Normal View History

2024-04-09 13:07:42 +00:00
import { Box, useMediaQuery, useTheme } from "@mui/material";
import { FC } from "react";
import { StepButtonsBlock } from "../StepButtonsBlock/StepButtonsBlock";
2024-04-09 13:07:42 +00:00
import { CustomSelect } from "../../../../components/CustomSelect/CustomSelect";
import { CustomRadioGroup } from "../../../../components/CustomRadioGroup/CustomRadioGroup";
type IntegrationStep3Props = {
handlePrevStep: () => void;
handleNextStep: () => void;
2024-04-09 13:07:42 +00:00
selectedStagePerformer: string | null;
setSelectedStagePerformer: (value: string | null) => void;
selectedStage: string | null;
setSelectedStage: (value: string | null) => void;
performers: string[];
stages: string[];
};
export const IntegrationStep3: FC<IntegrationStep3Props> = ({
handlePrevStep,
handleNextStep,
2024-04-09 13:07:42 +00:00
selectedStagePerformer,
setSelectedStagePerformer,
selectedStage,
setSelectedStage,
performers,
stages,
}) => {
const theme = useTheme();
2024-04-09 13:07:42 +00:00
const isMobile = useMediaQuery(theme.breakpoints.down(600));
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
return (
<Box
sx={{
display: "flex",
flexDirection: "column",
alignItems: "center",
height: "100%",
flexGrow: 1,
}}
>
2024-04-09 13:07:42 +00:00
<Box sx={{ width: "100%", marginTop: "20px", zIndex: 3 }}>
<CustomSelect
selectedItem={selectedStagePerformer}
items={performers}
setSelectedItem={setSelectedStagePerformer}
/>
</Box>
<Box
sx={{
marginTop: "20px",
flexGrow: 1,
width: "100%",
height: "346px",
}}
>
2024-04-09 13:07:42 +00:00
<CustomRadioGroup
items={stages}
selectedValue={selectedStage}
setSelectedValue={setSelectedStage}
/>
</Box>
<Box
sx={{
marginTop: "20px",
alignSelf: "end",
}}
>
<StepButtonsBlock
2024-04-10 09:38:30 +00:00
onLargeBtnClick={handleNextStep}
onSmallBtnClick={handlePrevStep}
2024-04-09 13:07:42 +00:00
/>
</Box>
</Box>
);
};