right-tree/frontend/src/components/steps/Step.js

31 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-11-09 15:29:18 +13:00
import { useEffect, useState } from 'react';
import { Row, Col } from 'reactstrap'
2021-11-09 15:29:18 +13:00
import SampleBackground from '../../assets/img/stepBackgrounds/step1.jpg';
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])
return (
2021-11-09 15:29:18 +13:00
<div className='step-container' style={{backgroundImage: `url(${stepBackgroundImage})`}}>
<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'}}>
{props.informationComponent}
</Col>
2021-11-09 15:29:18 +13:00
<Col lg={{ size: "8" }} md="7" sm="12" style={{display: 'flex', alignItems: 'center'}}>
{props.selectionComponent}
</Col>
</Row>
)}
</div>
</div>
);
}