2021-11-09 15:29:18 +13:00
|
|
|
import { useEffect, useState } from 'react';
|
2021-10-18 15:46:18 +13:00
|
|
|
import { Row, Col } from 'reactstrap'
|
2021-11-09 15:29:18 +13:00
|
|
|
import SampleBackground from '../../assets/img/stepBackgrounds/step1.jpg';
|
2021-10-18 15:46:18 +13:00
|
|
|
|
|
|
|
export default function Step(props) {
|
2021-11-09 15:29:18 +13:00
|
|
|
|
|
|
|
const [stepBackgroundImage, setStepBackground] = useState(SampleBackground)
|
|
|
|
|
|
|
|
useEffect(() => setStepBackground(props.backgroundImage || SampleBackground), [props.backgroundImage])
|
2021-10-18 15:46:18 +13:00
|
|
|
|
|
|
|
return (
|
2021-11-09 15:29:18 +13:00
|
|
|
<div className='step-container' style={{backgroundImage: `url(${stepBackgroundImage})`}}>
|
2021-10-18 15:46:18 +13:00
|
|
|
<div className='step-overlay'>
|
|
|
|
{props.contentComponent ? (
|
|
|
|
props.contentComponent
|
|
|
|
) : (
|
|
|
|
<Row style={{height: '100%'}}>
|
2021-11-09 15:29:18 +13:00
|
|
|
<Col lg={{ size: "4" }} md="5" sm="12" style={{display: 'flex', alignItems: 'center', justifyContent: 'center', paddingRight: '50px', paddingLeft: '50px'}}>
|
2021-10-18 15:46:18 +13:00
|
|
|
{props.informationComponent}
|
|
|
|
</Col>
|
2021-11-09 15:29:18 +13:00
|
|
|
<Col lg={{ size: "8" }} md="7" sm="12" style={{display: 'flex', alignItems: 'center'}}>
|
2021-10-18 15:46:18 +13:00
|
|
|
{props.selectionComponent}
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|