Merge pull request #5819 from storybooks/5781-warn-mid-decorators

ADD warning for decorators added "mid-kind"
This commit is contained in:
Michael Shilman 2019-03-03 13:21:27 +08:00 committed by GitHub
commit 4c3bdf39ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 63 additions and 35 deletions

View File

@ -9,10 +9,15 @@ storiesOf('Custom|Dependencies', module)
title: 'Component dependencies', title: 'Component dependencies',
}, },
})) }))
.addDecorator(withKnobs) .add(
.add('inputs and inject dependencies with knobs', () => ({ 'inputs and inject dependencies with knobs',
() => ({
component: DiComponent, component: DiComponent,
props: { props: {
title: text('title', 'Component dependencies'), title: text('title', 'Component dependencies'),
}, },
})); }),
{
decorators: [withKnobs],
}
);

View File

@ -19,10 +19,15 @@ storiesOf('Custom|Pipes', module)
field: 'foobar', field: 'foobar',
}, },
})) }))
.addDecorator(withKnobs) .add(
.add('With Knobs', () => ({ 'With Knobs',
() => ({
component: NameComponent, component: NameComponent,
props: { props: {
field: text('field', 'foobar'), field: text('field', 'foobar'),
}, },
})); }),
{
decorators: [withKnobs],
}
);

View File

@ -19,8 +19,9 @@ storiesOf('Custom|Providers', module)
name: 'Static name', name: 'Static name',
}, },
})) }))
.addDecorator(withKnobs) .add(
.add('With knobs', () => { 'With knobs',
() => {
const name = text('name', 'Dynamic knob'); const name = text('name', 'Dynamic knob');
return { return {
@ -29,4 +30,8 @@ storiesOf('Custom|Providers', module)
name, name,
}, },
}; };
}); },
{
decorators: [withKnobs],
}
);

View File

@ -24,8 +24,9 @@ storiesOf('Custom|Style', module)
`, `,
], ],
})) }))
.addDecorator(withKnobs) .add(
.add('With Knobs', () => ({ 'With Knobs',
() => ({
template: `<storybook-button-component [text]="text" (onClick)="onClick($event)"></storybook-button-component>`, template: `<storybook-button-component [text]="text" (onClick)="onClick($event)"></storybook-button-component>`,
props: { props: {
text: text('text', 'Button with custom styles'), text: text('text', 'Button with custom styles'),
@ -39,4 +40,8 @@ storiesOf('Custom|Style', module)
} }
`, `,
], ],
})); }),
{
decorators: [withKnobs],
}
);

View File

@ -134,6 +134,7 @@ export default class ClientApi {
const localDecorators = []; const localDecorators = [];
let localParameters = {}; let localParameters = {};
let hasAdded = false;
const api = { const api = {
kind, kind,
}; };
@ -148,6 +149,7 @@ export default class ClientApi {
}); });
api.add = (storyName, storyFn, parameters) => { api.add = (storyName, storyFn, parameters) => {
hasAdded = true;
const { _globalParameters, _globalDecorators } = this; const { _globalParameters, _globalDecorators } = this;
const id = toId(kind, storyName); const id = toId(kind, storyName);
@ -215,6 +217,12 @@ export default class ClientApi {
}; };
api.addDecorator = decorator => { api.addDecorator = decorator => {
if (hasAdded) {
console.warn(`You have added a decorator to the kind '${kind}' after a story has already been added.
In Storybook 4 this applied the decorator only to subsequent stories. In Storybook 5+ it applies to all stories.
This is probably not what you intended. Read more here: https://github.com/storybooks/storybook/blob/master/MIGRATION.md`);
}
localDecorators.push(decorator); localDecorators.push(decorator);
return api; return api;
}; };