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
|
import * as React from 'react';
import {withRouter} from 'react-router-dom';
import styled from 'styled-components';
import {Button} from 'ts/@next/components/button';
import {Icon} from 'ts/@next/components/icon';
interface Props {
icon?: string;
iconComponent?: React.ReactNode;
title: string;
linkLabel: string;
linkUrl?: string;
linkAction?: () => void;
}
class BaseComponent extends React.PureComponent<Props> {
public onClick = (): void => {
const {
linkAction,
linkUrl,
} = this.props;
if (linkAction) {
linkAction();
} else {
this.props.history.push(linkUrl);
}
}
public render(): React.ReactNode {
const {
icon,
iconComponent,
linkUrl,
linkAction,
title,
linkLabel,
} = this.props;
return (
<Wrap onClick={this.onClick}>
<div>
<Icon
name={icon}
component={iconComponent}
size="large"
margin={[0, 0, 'default', 0]}
/>
<Title>
{title}
</Title>
<Button
isWithArrow={true}
isTransparent={true}
href={linkUrl}
onClick={linkAction}
>
{linkLabel}
</Button>
</div>
</Wrap>
);
}
}
export const BlockIconLink = withRouter(BaseComponent);
const Wrap = styled.div`
width: calc(50% - 15px);
height: 400px;
padding: 40px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
transition: background-color 0.25s;
background-color: ${props => props.theme.lightBgColor};
cursor: pointer;
a,
button {
pointer-events: none;
}
@media (max-width: 900px) {
width: 100%;
margin-top: 30px;
}
&:hover {
background-color: #002d28;
}
`;
const Title = styled.h2`
font-size: 20px;
margin-bottom: 30px;
color: ${props => props.theme.linkColor};
`;
|