mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
Merge pull request #11920 from storybookjs/119124-fix-source-loader-adds
Source-loader: Fix `.add` detection
This commit is contained in:
commit
a63f0f0987
@ -27,4 +27,11 @@ export const WithTemplate = Template.bind({});
|
||||
WithTemplate.args = { foo: 'bar' }
|
||||
|
||||
export const WithEmptyTemplate = Template.bind();
|
||||
WithEmptyTemplate.args = { foo: 'baz' };
|
||||
WithEmptyTemplate.args = { foo: 'baz' };
|
||||
|
||||
export const WithAddFunctionParameters = () => null
|
||||
WithAddFunctionParameters.parameters = {
|
||||
foobar: () => {
|
||||
document.addEventListener('foo', () => console.log('bar'))
|
||||
},
|
||||
}
|
@ -9,7 +9,8 @@ WithParams.parameters = { storySource: { source: \\"() => <Button>WithParams</Bu
|
||||
WithDocsParams.parameters = { storySource: { source: \\"() => <Button>WithDocsParams</Button>\\" }, ...WithDocsParams.parameters };
|
||||
WithStorySourceParams.parameters = { storySource: { source: \\"() => <Button>WithStorySourceParams</Button>\\" }, ...WithStorySourceParams.parameters };
|
||||
WithTemplate.parameters = { storySource: { source: \\"(args: Args) => <Button {...args} />\\" }, ...WithTemplate.parameters };
|
||||
WithEmptyTemplate.parameters = { storySource: { source: \\"(args: Args) => <Button {...args} />\\" }, ...WithEmptyTemplate.parameters };"
|
||||
WithEmptyTemplate.parameters = { storySource: { source: \\"(args: Args) => <Button {...args} />\\" }, ...WithEmptyTemplate.parameters };
|
||||
WithAddFunctionParameters.parameters = { storySource: { source: \\"() => null\\" }, ...WithAddFunctionParameters.parameters };"
|
||||
`;
|
||||
|
||||
exports[`inject-decorator positive - ts - csf includes storySource parameter in the default exported object 1`] = `
|
||||
|
@ -103,7 +103,7 @@ export function handleExportedName(storyName, originalNode, parent) {
|
||||
}
|
||||
|
||||
export function handleADD(node, parent, storiesOfIdentifiers) {
|
||||
if (!node.property || !node.property.name || node.property.name.indexOf('add') !== 0) {
|
||||
if (!node.property || !node.property.name || node.property.name !== 'add') {
|
||||
return {};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user