aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/link.tsx
blob: ae62aad0ceca235b3444a8c0af7a4d2c852fe537 (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
import * as React from 'react';
import { Link as ReactRounterLink } from 'react-router-dom';
import { LinkType } from 'ts/types';

export interface LinkProps {
    to: string;
    type?: LinkType;
    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,
    type,
    to,
    shouldOpenInNewTab,
    children,
}) => {
    const styleWithDefault = {
        textDecoration: 'none',
        ...style,
    };

    switch (type) {
        case LinkType.External:
            return (
                <a target={shouldOpenInNewTab && '_blank'} className={className} style={styleWithDefault} href={to}>
                    {children}
                </a>
            );
        case LinkType.ReactRoute:
            return (
                <ReactRounterLink to={to} className={className} style={styleWithDefault}>
                    {children}
                </ReactRounterLink>
            );
        case LinkType.ReactScroll:
            return <div>TODO</div>;
        default:
            throw new Error(`Unrecognized LinkType: ${type}`);
    }
};

Link.defaultProps = {
    type: LinkType.ReactRoute,
    shouldOpenInNewTab: true,
    style: {},
    className: '',
};

Link.displayName = 'Link';