aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/documentation/source_link.tsx
blob: 6588ee39e8c7f350438b7729fb2e3cc58c2634ca (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
import * as _ from 'lodash';
import * as React from 'react';
import { Source } from 'ts/types';
import { colors } from 'ts/utils/colors';

interface SourceLinkProps {
    source: Source;
    baseUrl: string;
    version: string;
    subPackageName: string;
}

const packagesWithNamespace = ['connect'];

export function SourceLink(props: SourceLinkProps) {
    const src = props.source;
    const url = props.baseUrl;
    const pkg = props.subPackageName;
    let tagPrefix = pkg;
    if (_.includes(packagesWithNamespace, pkg)) {
        tagPrefix = `@0xproject/${pkg}`;
    }
    const sourceCodeUrl = `${url}/blob/${tagPrefix}%40${props.version}/packages/${pkg}/${src.fileName}#L${src.line}`;
    return (
        <div className="pt2" style={{ fontSize: 14 }}>
            <a href={sourceCodeUrl} target="_blank" className="underline" style={{ color: colors.grey }}>
                Source
            </a>
        </div>
    );
}