mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 07:31:19 +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';
|
||||
|
||||
addons.register(ADDON_ID, (api) => {
|
||||
console.log('links register');
|
||||
const channel = addons.getChannel();
|
||||
|
||||
channel.on(EVENTS.REQUEST, ({ kind, name }) => {
|
||||
|
@ -65,20 +65,17 @@ export function stringifyStory(story: StorybookStory): string {
|
||||
|
||||
const optionsString = stringifyObject({ name, ...options }, 0, true);
|
||||
|
||||
const stronyStrings = [
|
||||
const storyStrings = [
|
||||
`export const ${storyId} = ${storyFn};`,
|
||||
`${storyId}.storyName = '${name}';`,
|
||||
];
|
||||
|
||||
// if (decorators && decorators.length > 0) {
|
||||
// stronyStrings.push(`${storyId}.decorators = [${decorators.join(',')}];`);
|
||||
// }
|
||||
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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user