Skip to content

Commit

Permalink
Merge pull request #26862 from storybookjs/yann/fix-docgen-convert-crash
Browse files Browse the repository at this point in the history
Controls: Fix crashing when docgen extraction partially fails
  • Loading branch information
yannbf committed Apr 18, 2024
2 parents 316779b + 2fb5ed5 commit 67a2111
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 12 deletions.
21 changes: 16 additions & 5 deletions code/lib/core-events/src/errors/preview-errors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,22 @@ describe('UnknownFlowArgTypesError', () => {
raw: "SomeType['someProperty']",
};

const message = `"There was a failure when generating ArgTypes in Typescript for {"name":"signature","raw":"SomeType['someProperty']"}
This type is either not supported or it is a bug in Storybook.
If you think this is a bug, please open an issue in Github."`;

const typeError = new UnknownArgTypesError({ type, language: 'Typescript' });
expect(typeError.message).toMatchInlineSnapshot(message);
expect(typeError.message).toMatchInlineSnapshot(`
"There was a failure when generating detailed ArgTypes in Typescript for:
{
"name": "signature",
"raw": "SomeType['someProperty']"
}
Storybook will fall back to use a generic type description instead.
This type is either not supported or it is a bug in the docgen generation in Storybook.
If you think this is a bug, please detail it as much as possible in the Github issue.
More info: https://github.com/storybookjs/storybook/issues/26606
"
`);
});
});
15 changes: 11 additions & 4 deletions code/lib/core-events/src/errors/preview-errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,15 +259,22 @@ export class UnknownArgTypesError extends StorybookError {

readonly code = 1;

readonly documentation = 'https://github.com/storybookjs/storybook/issues/26606';

constructor(public data: { type: object; language: string }) {
super();
}

template() {
return `There was a failure when generating ArgTypes in ${
return dedent`There was a failure when generating detailed ArgTypes in ${
this.data.language
} for ${JSON.stringify(this.data.type)}
This type is either not supported or it is a bug in Storybook.
If you think this is a bug, please open an issue in Github.`;
} for:
${JSON.stringify(this.data.type, null, 2)}
Storybook will fall back to use a generic type description instead.
This type is either not supported or it is a bug in the docgen generation in Storybook.
If you think this is a bug, please detail it as much as possible in the Github issue.`;
}
}
11 changes: 8 additions & 3 deletions code/lib/docs-tools/src/argTypes/convert/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ import { convert as propTypesConvert } from './proptypes';

export const convert = (docgenInfo: DocgenInfo) => {
const { type, tsType, flowType } = docgenInfo;
if (type != null) return propTypesConvert(type);
if (tsType != null) return tsConvert(tsType as TSType);
if (flowType != null) return flowConvert(flowType as FlowType);
try {
if (type != null) return propTypesConvert(type);
if (tsType != null) return tsConvert(tsType as TSType);
if (flowType != null) return flowConvert(flowType as FlowType);
} catch (err) {
// if we can't convert the type, we'll just return null to fallback to a simple summary, and provide the error to the user
console.error(err);
}

return null;
};

0 comments on commit 67a2111

Please sign in to comment.