mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:21:08 +08:00
95 lines
2.2 KiB
JavaScript
95 lines
2.2 KiB
JavaScript
import { start } from '@storybook/core/client';
|
|
import Vue from 'vue';
|
|
|
|
import './globals';
|
|
import render, { VALUES } from './render';
|
|
import { extractProps } from './util';
|
|
|
|
export const WRAPS = 'STORYBOOK_WRAPS';
|
|
|
|
function prepare(rawStory, innerStory) {
|
|
let story = rawStory;
|
|
// eslint-disable-next-line no-underscore-dangle
|
|
if (!story._isVue) {
|
|
if (typeof story === 'string') {
|
|
story = { template: story };
|
|
}
|
|
if (innerStory) {
|
|
story.components = { ...(story.components || {}), story: innerStory };
|
|
}
|
|
story = Vue.extend(story);
|
|
} else if (story.options[WRAPS]) {
|
|
return story;
|
|
}
|
|
|
|
return Vue.extend({
|
|
[WRAPS]: story,
|
|
[VALUES]: { ...(innerStory ? innerStory.options[VALUES] : {}), ...extractProps(story) },
|
|
functional: true,
|
|
render(h, { data, parent, children }) {
|
|
return h(
|
|
story,
|
|
{
|
|
...data,
|
|
props: { ...(data.props || {}), ...parent.$root[VALUES] },
|
|
},
|
|
children
|
|
);
|
|
},
|
|
});
|
|
}
|
|
|
|
function decorateStory(getStory, decorators) {
|
|
return decorators.reduce(
|
|
(decorated, decorator) => (context = {}) => {
|
|
let story;
|
|
|
|
const decoratedStory = decorator((p = {}) => {
|
|
story = decorated(
|
|
p
|
|
? {
|
|
...context,
|
|
...p,
|
|
parameters: {
|
|
...context.parameters,
|
|
...p.parameters,
|
|
},
|
|
}
|
|
: context
|
|
);
|
|
|
|
return story;
|
|
}, context);
|
|
|
|
if (!story) {
|
|
story = decorated(context);
|
|
}
|
|
|
|
if (decoratedStory === story) {
|
|
return story;
|
|
}
|
|
|
|
return prepare(decoratedStory, story);
|
|
},
|
|
context => prepare(getStory(context))
|
|
);
|
|
}
|
|
|
|
const { load: coreLoad, clientApi, configApi, forceReRender } = start(render, { decorateStory });
|
|
|
|
export const {
|
|
setAddon,
|
|
addDecorator,
|
|
addParameters,
|
|
clearDecorators,
|
|
getStorybook,
|
|
raw,
|
|
} = clientApi;
|
|
|
|
const framework = 'vue';
|
|
export const storiesOf = (...args) => clientApi.storiesOf(...args).addParameters({ framework });
|
|
export const load = (...args) => coreLoad(...args, framework);
|
|
|
|
export const { configure } = configApi;
|
|
export { forceReRender };
|