aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/banner.tsx
blob: 76fc1d09e5ba291a242113eeffc9bb92a4ae40a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import * as React from 'react';
import styled from 'styled-components';

import { colors } from 'ts/style/colors';

import { Button } from 'ts/components/button';
import { ThemeInterface } from 'ts/components/siteWrap';
import { Paragraph } from 'ts/components/text';

import { Column, Section } from 'ts/components/newLayout';

interface Props {
    heading?: string;
    subline?: string;
    mainCta?: CTAButton;
    secondaryCta?: CTAButton;
    theme?: ThemeInterface;
}

interface CTAButton {
    text: string;
    href?: string;
    onClick?: () => void;
    shouldOpenInNewTab?: boolean;
}

interface BorderProps {
    isBottom?: boolean;
}

export const Banner: React.StatelessComponent<Props> = (props: Props) => {
    const { heading, subline, mainCta, secondaryCta } = props;
    return (
        <CustomSection bgColor={colors.brandDark} isFlex={true} flexBreakpoint="900px" paddingMobile="120px 0">
            <Border />
            <Border isBottom={true} />

            <Column>
                <CustomHeading>{heading}</CustomHeading>

                {subline && (
                    <Paragraph color={colors.white} isMuted={0.5} isNoMargin={true}>
                        {subline}
                    </Paragraph>
                )}
            </Column>
            <Column>
                <ButtonWrap>
                    {mainCta && (
                        <Button
                            color={colors.white}
                            isTransparent={false}
                            href={mainCta.href}
                            target={mainCta.shouldOpenInNewTab ? '_blank' : ''}
                        >
                            {mainCta.text}
                        </Button>
                    )}

                    {secondaryCta && (
                        <Button
                            color={colors.white}
                            href={secondaryCta.href}
                            onClick={secondaryCta.onClick}
                            isTransparent={true}
                        >
                            {secondaryCta.text}
                        </Button>
                    )}
                </ButtonWrap>
            </Column>
        </CustomSection>
    );
};

const CustomSection = styled(Section)`
    color: ${colors.white};
    margin-top: 30px;

    @media (max-width: 900px) {
        text-align: center;

        p {
            margin-bottom: 30px;
        }

        div:last-child {
            margin-bottom: 0;
        }
    }
`;

const CustomHeading = styled.h2`
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 10px @media (max-width: 768px) {
        font-size: 30px;
    }
`;

const ButtonWrap = styled.div`
    display: inline-block;

    @media (min-width: 768px) {
        * + * {
            margin-left: 15px;
        }
    }

    @media (max-width: 768px) {
        a,
        button {
            display: block;
            width: 220px;
        }

        * + * {
            margin-top: 15px;
        }
    }
`;

// Note let's refactor this
// is it absolutely necessary to have a stateless component
// to pass props down into the styled icon?
const Border =
    styled.div <
    BorderProps >
    `
    position: absolute;
    background-image: ${props =>
        props.isBottom ? 'url(/images/banner/bottomofcta.png);' : 'url(/images/banner/topofcta.png);'};
    background-position: ${props => (props.isBottom ? 'left top' : 'left bottom')};
    left: 0;
    width: calc(100% + 214px);
    height: 40px;
    top: ${props => !props.isBottom && 0};
    bottom: ${props => props.isBottom && 0};
    transform: translate(-112px);

    @media (max-width: 768px) {
        width: calc(100% + 82px);
        height: 40px;
        transform: translate(-41px);
        background-size: auto 80px;
    }
`;