2023-03-06 18:25:08 +13:00
|
|
|
import { useState } from 'react';
|
2023-02-08 14:15:49 +13:00
|
|
|
import { Container } from "reactstrap";
|
|
|
|
import Header from "../components/Header";
|
2023-03-06 18:25:08 +13:00
|
|
|
import ActivationStep from "../components/steps/activation/ActivationStep";
|
2023-02-08 14:15:49 +13:00
|
|
|
import AddressStep from "../components/steps/address/AddressStep";
|
|
|
|
import SoilStep from "../components/steps/soilvariant/SoilStep";
|
|
|
|
import HabitatStep from "../components/steps/habitat/HabitatStep";
|
|
|
|
import ZoneStep from "../components/steps/zone/ZoneStep";
|
|
|
|
import SummaryStep from "../components/steps/summary/SummaryStep";
|
2023-02-21 16:58:20 +13:00
|
|
|
import CompleteStep from "../components/steps/complete/CompleteStep";
|
2023-03-06 18:25:08 +13:00
|
|
|
import { StepperWizard } from "../components/providers/StepperProvider";
|
2023-02-21 16:58:20 +13:00
|
|
|
import { useFilter } from "../components/providers/FilterProvider";
|
2023-03-06 18:25:08 +13:00
|
|
|
import { Box, Typography, Modal, Button } from '@mui/material';
|
|
|
|
|
2023-02-08 14:15:49 +13:00
|
|
|
|
2023-02-21 16:58:20 +13:00
|
|
|
const ApplyPage = () => {
|
2023-03-06 18:25:08 +13:00
|
|
|
const [error, setError] = useState("");
|
2023-02-21 16:58:20 +13:00
|
|
|
const { submit } = useFilter();
|
|
|
|
|
2023-03-06 18:25:08 +13:00
|
|
|
const onSubmit = async () => {
|
|
|
|
try {
|
|
|
|
await submit();
|
|
|
|
} catch (e) {
|
|
|
|
setError("There was a problem sending data to the API. Please try again.");
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-21 16:58:20 +13:00
|
|
|
return (
|
2023-03-06 18:25:08 +13:00
|
|
|
<>
|
|
|
|
<Container fluid className="main-container p-0">
|
|
|
|
<Header />
|
|
|
|
<StepperWizard>
|
|
|
|
<ActivationStep label="Activate" tooltip="Enter your activation key" />
|
|
|
|
<AddressStep label="Enter address" tooltip="Enter your address" />
|
|
|
|
<SoilStep label="Choose soil" tooltip="Describe the moisture content of your soil" />
|
|
|
|
<HabitatStep label="Choose habitat" tooltip="Specify type of landscape to be planted" />
|
|
|
|
<ZoneStep label="Select zone" tooltip="Specify geographical detail" />
|
|
|
|
<SummaryStep label="Summary" tooltip="Check your inputs" onSubmit={onSubmit} />
|
|
|
|
<CompleteStep label="Complete" tooltip="Complete your application" />
|
|
|
|
</StepperWizard>
|
|
|
|
</Container>
|
|
|
|
<Modal open={error.length > 0} onClose={() => setError("")}>
|
|
|
|
<Box sx={{
|
|
|
|
position: 'absolute',
|
|
|
|
top: '50%',
|
|
|
|
left: '50%',
|
|
|
|
transform: 'translate(-50%, -50%)',
|
|
|
|
width: 400,
|
|
|
|
bgcolor: 'background.paper',
|
|
|
|
border: '2px solid #000',
|
|
|
|
boxShadow: 24,
|
|
|
|
color: 'white',
|
|
|
|
p: 4,
|
|
|
|
}}>
|
|
|
|
<Typography variant="h4" component="h2">Error</Typography>
|
|
|
|
<Typography sx={{ mt: 2 }}>{error}</Typography>
|
|
|
|
<Box sx={{ display: 'flex', flexDirection: 'row' }}>
|
|
|
|
<Box sx={{ flex: '1 1 auto' }} />
|
|
|
|
<Button onClick={() => setError("")}>Close</Button>
|
|
|
|
</Box>
|
|
|
|
</Box>
|
|
|
|
</Modal>
|
|
|
|
</>);
|
2023-02-21 16:58:20 +13:00
|
|
|
};
|
2023-02-08 14:15:49 +13:00
|
|
|
|
|
|
|
export default ApplyPage;
|