mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
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:
commit
9941335bb9
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user