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
|
import * as React from 'react';
import {
constants,
DocAgnosticFormat,
DocsInfo,
DocsInfoConfig,
Documentation,
SupportedDocJson,
TypeDocNode,
} from '@0xproject/react-docs';
import * as v0TypeDocJson from './json/0.1.12.json';
import * as v2TypeDocJson from './json/0.2.0.json';
// tslint:disable-next-line:no-implicit-dependencies no-var-requires
const IntroMarkdownV1 = require('md/introduction');
const docSections = {
introduction: 'introduction',
web3Wrapper: 'web3Wrapper',
types: constants.TYPES_SECTION_NAME,
};
const docsInfoConfig: DocsInfoConfig = {
id: 'web3Wrapper',
type: SupportedDocJson.TypeDoc,
displayName: 'Web3 Wrapper',
packageUrl: 'https://github.com/0xProject/0x-monorepo',
menu: {
introduction: [docSections.introduction],
web3Wrapper: [docSections.web3Wrapper],
types: [docSections.types],
},
sections: docSections,
typeConfigs: {
typeNameToExternalLink: {
Web3: 'https://github.com/ethereum/wiki/wiki/JavaScript-API',
Provider: 'https://github.com/0xProject/web3-typescript-typings/blob/f5bcb96/index.d.ts#L150',
BigNumber: 'http://mikemcl.github.io/bignumber.js',
},
typeNameToPrefix: {
Provider: 'Web3',
},
typeNameToDocSection: {
Web3Wrapper: docSections.web3Wrapper,
},
},
};
const docsInfo = new DocsInfo(docsInfoConfig);
const availableVersions = ['0.1.12', '0.2.0'];
const versionToDocJSON: { [semver: string]: object } = {
[availableVersions[0]]: v0TypeDocJson,
[availableVersions[1]]: v2TypeDocJson,
};
export interface DocsProps {}
export interface DocsState {
selectedVersion: string;
docAgnosticFormat?: DocAgnosticFormat;
}
export class Docs extends React.Component<DocsProps, DocsState> {
constructor(props: DocsProps) {
super(props);
this.state = {
selectedVersion: availableVersions[1],
docAgnosticFormat: docsInfo.convertToDocAgnosticFormat(v2TypeDocJson),
};
}
public render(): React.ReactNode {
return (
<Documentation
selectedVersion={this.state.selectedVersion}
availableVersions={availableVersions}
docsInfo={docsInfo}
docAgnosticFormat={this.state.docAgnosticFormat}
sourceUrl={this._getSourceUrl()}
onVersionSelected={this._onVersionSelected.bind(this)}
/>
);
}
private _onVersionSelected(semver: string): void {
const selectedDocJSON = versionToDocJSON[semver];
this.setState({
selectedVersion: semver,
docAgnosticFormat: docsInfo.convertToDocAgnosticFormat(selectedDocJSON as TypeDocNode),
});
}
private _getSourceUrl(): string {
const sourceUrl = `${docsInfoConfig.packageUrl}/blob/@0xproject/web3-wrapper@${
this.state.selectedVersion
}/packages`;
return sourceUrl;
}
}
|