blob: f7bca370b3beeae9164aca99353b086e1d975d50 (
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
|
import * as React from 'react';
import { Link as ReactRounterLink } from 'react-router-dom';
export interface LinkProps {
to: string;
isExternal?: boolean;
shouldOpenInNewTab?: boolean;
style?: React.CSSProperties;
className?: string;
}
/**
* A generic link component which let's the developer render internal & external links, and their associated
* behaviors with a single link component. Many times we want a menu including both internal & external links
* and this abstracts away the differences of rendering both types of links.
*/
export const Link: React.StatelessComponent<LinkProps> = ({
style,
className,
isExternal,
to,
shouldOpenInNewTab,
children,
}) => {
if (isExternal) {
return (
<a target={shouldOpenInNewTab && '_blank'} className={className} style={style} href={to}>
{children}
</a>
);
} else {
return (
<ReactRounterLink to={to} className={className} style={style}>
{children}
</ReactRounterLink>
);
}
};
Link.defaultProps = {
isExternal: false,
shouldOpenInNewTab: false,
style: {},
className: '',
};
Link.displayName = 'Link';
|