aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/docs_info.ts
diff options
context:
space:
mode:
authorHsuan Lee <hsuan@cobinhood.com>2019-01-19 18:42:04 +0800
committerHsuan Lee <hsuan@cobinhood.com>2019-01-19 18:42:04 +0800
commit7ae38906926dc09bc10670c361af0d2bf0050426 (patch)
tree5fb10ae366b987db09e4ddb4bc3ba0f75404ad08 /packages/react-docs/src/docs_info.ts
parentb5fd3c72a08aaa6957917d74c333387a16edf66b (diff)
downloaddexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.gz
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.bz2
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.lz
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.xz
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.zst
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.zip
Update dependency packages
Diffstat (limited to 'packages/react-docs/src/docs_info.ts')
-rw-r--r--packages/react-docs/src/docs_info.ts118
1 files changed, 0 insertions, 118 deletions
diff --git a/packages/react-docs/src/docs_info.ts b/packages/react-docs/src/docs_info.ts
deleted file mode 100644
index 76f7784ba..000000000
--- a/packages/react-docs/src/docs_info.ts
+++ /dev/null
@@ -1,118 +0,0 @@
-import { ALink, utils as sharedUtils } from '@0x/react-shared';
-import { DocAgnosticFormat, ObjectMap, TypeDefinitionByName } from '@0x/types';
-import * as _ from 'lodash';
-
-import {
- ContractsByVersionByNetworkId,
- DocsInfoConfig,
- DocsMenu,
- SectionNameToMarkdownByVersion,
- SectionsMap,
- SupportedDocJson,
-} from './types';
-import { constants } from './utils/constants';
-
-export class DocsInfo {
- public id: string;
- public type: SupportedDocJson;
- public displayName: string;
- public packageName: string;
- public packageUrl: string;
- public markdownMenu: DocsMenu;
- public typeSectionName: string;
- public sections: SectionsMap;
- public sectionNameToMarkdownByVersion: SectionNameToMarkdownByVersion;
- public contractsByVersionByNetworkId?: ContractsByVersionByNetworkId;
- constructor(config: DocsInfoConfig) {
- this.id = config.id;
- this.type = config.type;
- this.markdownMenu = config.markdownMenu;
- this.displayName = config.displayName;
- this.packageName = config.packageName;
- this.packageUrl = config.packageUrl;
- this.typeSectionName = config.type === SupportedDocJson.SolDoc ? 'structs' : 'types';
- this.sections = config.markdownSections;
- this.sectionNameToMarkdownByVersion = config.sectionNameToMarkdownByVersion;
- this.contractsByVersionByNetworkId = config.contractsByVersionByNetworkId;
- }
- public getTypeDefinitionsByName(docAgnosticFormat: DocAgnosticFormat): ObjectMap<TypeDefinitionByName> {
- if (_.isUndefined(docAgnosticFormat[this.typeSectionName])) {
- return {};
- }
-
- const section = docAgnosticFormat[this.typeSectionName];
- const typeDefinitionByName = _.keyBy(section.types, 'name') as any;
- return typeDefinitionByName;
- }
- public getSectionNameToLinks(docAgnosticFormat: DocAgnosticFormat): ObjectMap<ALink[]> {
- const sectionNameToLinks: ObjectMap<ALink[]> = {};
- _.each(this.markdownMenu, (linkTitles, sectionName) => {
- sectionNameToLinks[sectionName] = [];
- _.each(linkTitles, linkTitle => {
- const to = sharedUtils.getIdFromName(linkTitle);
- const links = sectionNameToLinks[sectionName];
- links.push({
- title: linkTitle,
- to,
- });
- });
- });
-
- if (_.isUndefined(docAgnosticFormat)) {
- return sectionNameToLinks;
- }
-
- const docSections = _.keys(this.sections);
- _.each(docSections, sectionName => {
- const docSection = docAgnosticFormat[sectionName];
- if (_.isUndefined(docSection) || sectionName === constants.EXTERNAL_EXPORTS_SECTION_NAME) {
- return; // no-op
- }
-
- const isExportedFunctionSection =
- docSection.functions.length === 1 &&
- _.isEmpty(docSection.types) &&
- _.isEmpty(docSection.methods) &&
- _.isEmpty(docSection.constructors) &&
- _.isEmpty(docSection.properties) &&
- _.isEmpty(docSection.events);
-
- if (sectionName === this.typeSectionName) {
- const sortedTypesNames = _.sortBy(docSection.types, 'name');
- const typeNames = _.map(sortedTypesNames, t => t.name);
- const typeLinks = _.map(typeNames, typeName => {
- return {
- to: `${sectionName}-${typeName}`,
- title: typeName,
- };
- });
- sectionNameToLinks[sectionName] = typeLinks;
- } else if (isExportedFunctionSection) {
- // Noop so that we don't have the method listed underneath itself.
- } else {
- let eventNames: string[] = [];
- if (!_.isUndefined(docSection.events)) {
- const sortedEventNames = _.sortBy(docSection.events, 'name');
- eventNames = _.map(sortedEventNames, m => m.name);
- }
- const propertiesSortedByName = _.sortBy(docSection.properties, 'name');
- const propertyNames = _.map(propertiesSortedByName, m => m.name);
- const methodsSortedByName = _.sortBy(docSection.methods, 'name');
- const methodNames = _.map(methodsSortedByName, m => m.name);
- const sortedFunctionNames = _.sortBy(docSection.functions, 'name');
- const functionNames = _.map(sortedFunctionNames, m => m.name);
- const names = [...eventNames, ...propertyNames, ...functionNames, ...methodNames];
-
- const links = _.map(names, name => {
- return {
- to: `${sectionName}-${name}`,
- title: name,
- };
- });
-
- sectionNameToLinks[sectionName] = links;
- }
- });
- return sectionNameToLinks;
- }
-}