mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:11:05 +08:00
Update vue decorator to mirror SB one
This commit is contained in:
parent
36253648e4
commit
fc21e562dc
@ -78,22 +78,13 @@ function decorateStory(
|
|||||||
(decorated: StoryFn<VueConstructor>, decorator) => (context: StoryContext = defaultContext) => {
|
(decorated: StoryFn<VueConstructor>, decorator) => (context: StoryContext = defaultContext) => {
|
||||||
let story;
|
let story;
|
||||||
|
|
||||||
const decoratedStory = decorator(p => {
|
const decoratedStory = decorator(
|
||||||
story = decorated(
|
({ parameters, ...innerContext }: StoryContext = {} as StoryContext) => {
|
||||||
p
|
story = decorated({ ...context, ...innerContext });
|
||||||
? {
|
return story;
|
||||||
...context,
|
},
|
||||||
...p,
|
context
|
||||||
parameters: {
|
);
|
||||||
...context.parameters,
|
|
||||||
...p.parameters,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
: context
|
|
||||||
);
|
|
||||||
|
|
||||||
return story;
|
|
||||||
}, context);
|
|
||||||
|
|
||||||
if (!story) {
|
if (!story) {
|
||||||
story = decorated(context);
|
story = decorated(context);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user