70 lines
2.2 KiB
TypeScript
70 lines
2.2 KiB
TypeScript
import * as React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { Dispatch } from 'redux';
|
|
import { DocPage as DocPageComponent, DocPageProps } from 'ts/pages/documentation/doc_page';
|
|
import { Dispatcher } from 'ts/redux/dispatcher';
|
|
import { State } from 'ts/redux/reducer';
|
|
import { DocPackages, ScreenWidths } from 'ts/types';
|
|
import { Translate } from 'ts/utils/translate';
|
|
|
|
import { DocsInfoConfig, SupportedDocJson } from '../types';
|
|
import { DocsInfo } from '../utils/docs_info';
|
|
|
|
/* tslint:disable:no-var-requires */
|
|
const IntroMarkdown1 = require('md/docs/migrations/1/introduction');
|
|
const InstallationMarkdown1 = require('md/docs/migrations/1/installation');
|
|
/* tslint:enable:no-var-requires */
|
|
|
|
const markdownSections = {
|
|
introduction: 'introduction',
|
|
installation: 'installation',
|
|
};
|
|
|
|
const docsInfoConfig: DocsInfoConfig = {
|
|
id: DocPackages.Migrations,
|
|
packageName: '@0x/migrations',
|
|
type: SupportedDocJson.TypeDoc,
|
|
displayName: 'Migrations',
|
|
packageUrl: 'https://github.com/0xProject/0x-monorepo/packages/migrations',
|
|
markdownMenu: {
|
|
'getting-started': [markdownSections.introduction, markdownSections.installation],
|
|
},
|
|
sectionNameToMarkdownByVersion: {
|
|
'2.0.4': {
|
|
[markdownSections.introduction]: IntroMarkdown1,
|
|
[markdownSections.installation]: InstallationMarkdown1,
|
|
},
|
|
},
|
|
markdownSections,
|
|
};
|
|
const docsInfo = new DocsInfo(docsInfoConfig);
|
|
|
|
interface ConnectedState {
|
|
docsVersion: string;
|
|
availableDocVersions: string[];
|
|
docsInfo: DocsInfo;
|
|
translate: Translate;
|
|
screenWidth: ScreenWidths;
|
|
}
|
|
|
|
interface ConnectedDispatch {
|
|
dispatcher: Dispatcher;
|
|
}
|
|
|
|
const mapStateToProps = (state: State, _ownProps: DocPageProps): ConnectedState => ({
|
|
docsVersion: state.docsVersion,
|
|
availableDocVersions: state.availableDocVersions,
|
|
translate: state.translate,
|
|
docsInfo,
|
|
screenWidth: state.screenWidth,
|
|
});
|
|
|
|
const mapDispatchToProps = (dispatch: Dispatch<State>): ConnectedDispatch => ({
|
|
dispatcher: new Dispatcher(dispatch),
|
|
});
|
|
|
|
export const Documentation: React.ComponentClass<DocPageProps> = connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(DocPageComponent);
|