Skip to content

Commit 5707535

Browse files
committed
Add a fallback for components with multiple export
1 parent af0cc03 commit 5707535

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

src/react-docgen-md.js

+19-8
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,25 @@ var reactDocgenTemplate = Handlebars.compile('\
109109
* Documentation generator using react-docgen *
110110
********************************************************/
111111

112-
var reactDocgenMarkdown = function(componentSrc, options) {
113-
var docs = reactDocs.parse(componentSrc);
114-
return reactDocgenTemplate({
115-
srcLink : options.srcLink,
116-
componentName : options.componentName,
117-
description : docs.description,
118-
props : sortObjectByKey(docs.props)
119-
});
112+
var reactDocgenMarkdown = function (componentSrc, options) {
113+
try {
114+
const docs = reactDocs.parse(componentSrc);
115+
return reactDocgenTemplate({
116+
srcLink: options.srcLink,
117+
componentName: options.componentName,
118+
description: docs.description,
119+
props: sortObjectByKey(docs.props)
120+
});
121+
} catch (error) {
122+
// Fallback for components using multiple exports in the same file
123+
const docsList = reactDocs.parse(componentSrc, reactDocs.resolver.findAllExportedComponentDefinitions);
124+
return docsList.reduce((acc, docs) => acc + reactDocgenTemplate({
125+
srcLink: options.srcLink,
126+
componentName: options.componentName,
127+
description: docs.description,
128+
props: sortObjectByKey(docs.props)
129+
}) + '\n', '');
130+
}
120131
};
121132

122133
module.exports = reactDocgenMarkdown;

0 commit comments

Comments
 (0)