2017-12-15 16:09:09 +02:00
|
|
|
import React from 'react';
|
|
|
|
import styled from 'styled-components';
|
|
|
|
import { Card, H2, P } from '../';
|
|
|
|
import remcalc from 'remcalc';
|
|
|
|
|
|
|
|
const CardStyled = styled(Card)`
|
|
|
|
margin-bottom: ${remcalc(36)};
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Header = styled.header`
|
|
|
|
background: ${props => props.theme.primary};
|
|
|
|
padding: ${remcalc(50)} ${remcalc(120)};
|
|
|
|
position: relative;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Main = styled.div`
|
|
|
|
padding: ${remcalc(50)} ${remcalc(120)};
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin: 0;
|
|
|
|
line-height: ${remcalc(26)};
|
|
|
|
font-size: ${remcalc(21)};
|
|
|
|
|
|
|
|
& + p {
|
|
|
|
margin-top: ${remcalc(24)};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default allProps => {
|
2017-12-15 16:53:59 +02:00
|
|
|
const { name, content, components, sections, depth, description } = allProps;
|
2017-12-15 16:09:09 +02:00
|
|
|
|
|
|
|
const Tag = depth === 2 ? CardStyled : 'div';
|
|
|
|
const TagMain = depth === 2 ? Main : 'div';
|
|
|
|
return (
|
2017-12-18 13:25:50 +02:00
|
|
|
<Tag id={name.replace(/\s+/g, '-').toLowerCase()}>
|
2017-12-15 16:09:09 +02:00
|
|
|
{name &&
|
|
|
|
depth !== 1 && (
|
|
|
|
<Header>
|
|
|
|
<H2 style={{ color: 'white' }}>{name}</H2>
|
2017-12-15 16:53:59 +02:00
|
|
|
{description && <P style={{ color: 'white' }}>{description}</P>}
|
2017-12-15 16:09:09 +02:00
|
|
|
</Header>
|
|
|
|
)}
|
|
|
|
<TagMain>
|
|
|
|
{content}
|
|
|
|
{components}
|
|
|
|
{sections}
|
|
|
|
</TagMain>
|
|
|
|
</Tag>
|
|
|
|
);
|
|
|
|
};
|