Move Hero to bottom, give interface explicit names

This commit is contained in:
Steve Klebanoff
2018-12-18 14:36:46 -08:00
parent fa612fe173
commit fa5acd07b0

View File

@@ -1,7 +1,7 @@
import * as React from 'react'; import * as React from 'react';
import styled from 'styled-components'; import styled from 'styled-components';
import {addFadeInAnimation} from 'ts/@next/constants/animations'; import { addFadeInAnimation } from 'ts/@next/constants/animations';
interface Props { interface Props {
title: string; title: string;
@@ -15,38 +15,6 @@ interface Props {
actions?: React.ReactNode; actions?: React.ReactNode;
} }
export const Hero = (props: Props) => (
<Section>
<Wrap isCentered={!props.figure} isFullWidth={props.isFullWidth} isCenteredMobile={props.isCenteredMobile}>
{props.figure &&
<Content width="400px">
{props.figure}
</Content>
}
<Content width={props.maxWidth ? props.maxWidth : (props.figure ? '546px' : '678px')}>
<Title isLarge={props.isLargeTitle} maxWidth={props.maxWidthHeading}>
{props.title}
</Title>
<Description>
{props.description}
</Description>
{props.actions &&
<ButtonWrap>
{props.actions}
</ButtonWrap>
}
</Content>
</Wrap>
</Section>
);
Hero.defaultProps = {
isCenteredMobile: true,
};
const Section = styled.section` const Section = styled.section`
padding: 120px 0; padding: 120px 0;
@@ -55,26 +23,41 @@ const Section = styled.section`
} }
`; `;
const Wrap = styled.div<{ isCentered?: boolean; isFullWidth?: boolean; isCenteredMobile?: boolean }>` interface WrapProps {
isCentered?: boolean;
isFullWidth?: boolean;
isCenteredMobile?: boolean;
}
const Wrap =
styled.div <
WrapProps >
`
width: calc(100% - 60px); width: calc(100% - 60px);
margin: 0 auto; margin: 0 auto;
@media (min-width: 768px) { @media (min-width: 768px) {
max-width: ${props => !props.isFullWidth ? '895px' : '1136px'}; max-width: ${props => (!props.isFullWidth ? '895px' : '1136px')};
flex-direction: row-reverse; flex-direction: row-reverse;
display: flex; display: flex;
align-items: center; align-items: center;
text-align: ${props => props.isCentered && 'center'}; text-align: ${props => props.isCentered && 'center'};
justify-content: ${props => props.isCentered ? 'center' : 'space-between'}; justify-content: ${props => (props.isCentered ? 'center' : 'space-between')};
} }
@media (max-width: 768px) { @media (max-width: 768px) {
text-align: ${props => props.isCenteredMobile ? `center` : 'left'}; text-align: ${props => (props.isCenteredMobile ? `center` : 'left')};
} }
`; `;
const Title = styled.h1<{ isLarge?: any; maxWidth?: string }>` interface TitleProps {
font-size: ${props => props.isLarge ? '80px' : '50px'}; isLarge?: any;
maxWidth?: string;
}
const Title =
styled.h1 <
TitleProps >
`
font-size: ${props => (props.isLarge ? '80px' : '50px')};
font-weight: 300; font-weight: 300;
line-height: 1.1; line-height: 1.1;
margin-left: auto; margin-left: auto;
@@ -99,14 +82,15 @@ const Description = styled.p`
padding: 0; padding: 0;
margin-bottom: 50px; margin-bottom: 50px;
color: ${props => props.theme.introTextColor}; color: ${props => props.theme.introTextColor};
${addFadeInAnimation('0.5s', '0.15s')} ${addFadeInAnimation('0.5s', '0.15s')} @media (max-width: 1024px) {
@media (max-width: 1024px) {
margin-bottom: 30px; margin-bottom: 30px;
} }
`; `;
const Content = styled.div<{ width: string }>` const Content =
styled.div <
{ width: string } >
`
width: 100%; width: 100%;
@media (min-width: 768px) { @media (min-width: 768px) {
@@ -123,10 +107,10 @@ const ButtonWrap = styled.div`
} }
> *:nth-child(1) { > *:nth-child(1) {
${addFadeInAnimation('0.6s', '0.3s')} ${addFadeInAnimation('0.6s', '0.3s')};
} }
> *:nth-child(2) { > *:nth-child(2) {
${addFadeInAnimation('0.6s', '0.4s')} ${addFadeInAnimation('0.6s', '0.4s')};
} }
@media (max-width: 500px) { @media (max-width: 500px) {
@@ -144,3 +128,25 @@ const ButtonWrap = styled.div`
} }
} }
`; `;
export const Hero = (props: Props) => (
<Section>
<Wrap isCentered={!props.figure} isFullWidth={props.isFullWidth} isCenteredMobile={props.isCenteredMobile}>
{props.figure && <Content width="400px">{props.figure}</Content>}
<Content width={props.maxWidth ? props.maxWidth : props.figure ? '546px' : '678px'}>
<Title isLarge={props.isLargeTitle} maxWidth={props.maxWidthHeading}>
{props.title}
</Title>
<Description>{props.description}</Description>
{props.actions && <ButtonWrap>{props.actions}</ButtonWrap>}
</Content>
</Wrap>
</Section>
);
Hero.defaultProps = {
isCenteredMobile: true,
};