diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-04 01:45:09 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-04 01:45:09 +0800 |
commit | d9f09b5e1e7ecc8dc56ac7184cfc0152b3c2ff32 (patch) | |
tree | d5320bec7fa841b1c5cace2c9af333c0c8ca1557 /packages/react-docs/src/components | |
parent | 9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf (diff) | |
download | dexon-sol-tools-d9f09b5e1e7ecc8dc56ac7184cfc0152b3c2ff32.tar dexon-sol-tools-d9f09b5e1e7ecc8dc56ac7184cfc0152b3c2ff32.tar.gz dexon-sol-tools-d9f09b5e1e7ecc8dc56ac7184cfc0152b3c2ff32.tar.bz2 dexon-sol-tools-d9f09b5e1e7ecc8dc56ac7184cfc0152b3c2ff32.tar.lz dexon-sol-tools-d9f09b5e1e7ecc8dc56ac7184cfc0152b3c2ff32.tar.xz dexon-sol-tools-d9f09b5e1e7ecc8dc56ac7184cfc0152b3c2ff32.tar.zst dexon-sol-tools-d9f09b5e1e7ecc8dc56ac7184cfc0152b3c2ff32.zip |
Make rendering of individually exported functions lighter-weight
Diffstat (limited to 'packages/react-docs/src/components')
-rw-r--r-- | packages/react-docs/src/components/documentation.tsx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/react-docs/src/components/documentation.tsx b/packages/react-docs/src/components/documentation.tsx index 4f776b237..5393652d4 100644 --- a/packages/react-docs/src/components/documentation.tsx +++ b/packages/react-docs/src/components/documentation.tsx @@ -211,6 +211,14 @@ export class Documentation extends React.Component<DocumentationProps, Documenta return null; } + const isExportedFunctionSection = + docSection.functions.length === 1 && + _.isEmpty(docSection.types) && + _.isEmpty(docSection.methods) && + _.isEmpty(docSection.constructors) && + _.isEmpty(docSection.properties) && + _.isEmpty(docSection.events); + const sortedTypes = _.sortBy(docSection.types, 'name'); const typeDefs = _.map(sortedTypes, customType => { return ( @@ -279,7 +287,7 @@ export class Documentation extends React.Component<DocumentationProps, Documenta )} {!_.isEmpty(docSection.functions) && ( <div> - <h2 style={headerStyle}>Functions</h2> + {!isExportedFunctionSection && <h2 style={headerStyle}>Functions</h2>} <div>{functionDefs}</div> </div> )} |