mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
cleanup
This commit is contained in:
parent
3d7da43571
commit
a1b44d9e24
@ -3,7 +3,6 @@ import addons from '@storybook/addons';
|
|||||||
import EVENTS, { ADDON_ID } from './constants';
|
import EVENTS, { ADDON_ID } from './constants';
|
||||||
|
|
||||||
addons.register(ADDON_ID, (api) => {
|
addons.register(ADDON_ID, (api) => {
|
||||||
console.log('links register');
|
|
||||||
const channel = addons.getChannel();
|
const channel = addons.getChannel();
|
||||||
|
|
||||||
channel.on(EVENTS.REQUEST, ({ kind, name }) => {
|
channel.on(EVENTS.REQUEST, ({ kind, name }) => {
|
||||||
|
@ -65,20 +65,17 @@ export function stringifyStory(story: StorybookStory): string {
|
|||||||
|
|
||||||
const optionsString = stringifyObject({ name, ...options }, 0, true);
|
const optionsString = stringifyObject({ name, ...options }, 0, true);
|
||||||
|
|
||||||
const stronyStrings = [
|
const storyStrings = [
|
||||||
`export const ${storyId} = ${storyFn};`,
|
`export const ${storyId} = ${storyFn};`,
|
||||||
`${storyId}.storyName = '${name}';`,
|
`${storyId}.storyName = '${name}';`,
|
||||||
];
|
];
|
||||||
|
|
||||||
// if (decorators && decorators.length > 0) {
|
|
||||||
// stronyStrings.push(`${storyId}.decorators = [${decorators.join(',')}];`);
|
|
||||||
// }
|
|
||||||
Object.keys(options).forEach((key) => {
|
Object.keys(options).forEach((key) => {
|
||||||
stronyStrings.push(`${storyId}.${key} = ${stringifyObject(options[key])};`);
|
storyStrings.push(`${storyId}.${key} = ${stringifyObject(options[key])};`);
|
||||||
});
|
});
|
||||||
stronyStrings.push('');
|
storyStrings.push('');
|
||||||
|
|
||||||
return stronyStrings.join('\n');
|
return storyStrings.join('\n');
|
||||||
}
|
}
|
||||||
|
|
||||||
export function stringifySection(section: StorybookSection): string {
|
export function stringifySection(section: StorybookSection): string {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user