aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/containers/connect_documentation.ts
blob: 19fd0ee560d47903254282aea88aabed562b14f7 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                  
                               
                                      
                                                                                            


                                                                                          

                                    



                                                                        

                                   
                          

                                 


                                        
                            
                               
                                   
                              
                                                                            
                   
                                                                                          
      

                                     

                                                                   
          
                       





                                                                   
          
      
                     
  
                                                           
 

                                                                                                              
  
import { DocsInfoConfig, SupportedDocJson } from '@0x/react-docs';
import * as React from 'react';
import { connect } from 'react-redux';
import { DocPage as DocPageComponent, DocPageProps } from 'ts/pages/documentation/doc_page';
import { DocPackages } from 'ts/types';

import { getMapStateToProps, mapDispatchToProps } from '../utils/documentation_container';

/* tslint:disable:no-var-requires */
const IntroMarkdown1 = require('md/docs/connect/1/introduction');
const IntroMarkdown2 = require('md/docs/connect/2/introduction');
const InstallationMarkdown1 = require('md/docs/connect/1/installation');
const InstallationMarkdown3 = require('md/docs/connect/3/installation');
/* tslint:enable:no-var-requires */

const markdownSections = {
    introduction: 'introduction',
    installation: 'installation',
};

const docsInfoConfig: DocsInfoConfig = {
    id: DocPackages.Connect,
    packageName: '@0x/connect',
    type: SupportedDocJson.TypeDoc,
    displayName: '0x Connect',
    packageUrl: 'https://github.com/0xProject/0x-monorepo/packages/connect',
    markdownMenu: {
        'getting-started': [markdownSections.introduction, markdownSections.installation],
    },
    sectionNameToMarkdownByVersion: {
        '0.0.1': {
            [markdownSections.introduction]: IntroMarkdown1,
            [markdownSections.installation]: InstallationMarkdown1,
        },
        '2.0.0-rc.1': {
            [markdownSections.introduction]: IntroMarkdown2,
            [markdownSections.installation]: InstallationMarkdown1,
        },
        '3.0.2': {
            [markdownSections.introduction]: IntroMarkdown2,
            [markdownSections.installation]: InstallationMarkdown3,
        },
    },
    markdownSections,
};
const mapStateToProps = getMapStateToProps(docsInfoConfig);

export const Documentation: React.ComponentClass<DocPageProps> = connect(mapStateToProps, mapDispatchToProps)(
    DocPageComponent,
);