This commit is contained in:
Jon Palmer 2020-07-24 09:18:12 -04:00
parent 3d7da43571
commit a1b44d9e24
No known key found for this signature in database
GPG Key ID: 52E08C6A304553A8
2 changed files with 4 additions and 8 deletions

View File

@ -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 }) => {

View File

@ -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 {