Merge pull request #10490 from storybookjs/b-ember-no-docs

return early when there's no JSDoc for a component
This commit is contained in:
Norbert de Langen 2020-06-04 21:52:56 +02:00 committed by GitHub
commit 9941335bb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,14 @@ export const getJSONDoc = () => {
export const extractArgTypes = (componentName) => {
const json = getJSONDoc();
if (!(json && json.included)) {
return null;
}
const componentDoc = json.included.find((doc) => doc.attributes.name === componentName);
if (!componentDoc) {
return null;
}
const rows = componentDoc.attributes.arguments.map((prop) => {
return {
name: prop.name,
@ -29,10 +36,13 @@ export const extractArgTypes = (componentName) => {
export const extractComponentDescription = (componentName) => {
const json = getJSONDoc();
if (!(json && json.included)) {
return null;
}
const componentDoc = json.included.find((doc) => doc.attributes.name === componentName);
if (!componentDoc) {
return '';
return null;
}
return componentDoc.attributes.description;