mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:01:09 +08:00
FIX channel emit failing because it's missing this
&& ADD roundtrip to correct story && CHANGE roundtrip to useChannel
This commit is contained in:
parent
f7fb7e5c1f
commit
7955e4d5c1
@ -26,6 +26,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@storybook/addons": "5.2.0-alpha.34",
|
"@storybook/addons": "5.2.0-alpha.34",
|
||||||
"@storybook/api": "5.2.0-alpha.34",
|
"@storybook/api": "5.2.0-alpha.34",
|
||||||
|
"@storybook/client-api": "5.2.0-alpha.34",
|
||||||
"@storybook/client-logger": "5.2.0-alpha.34",
|
"@storybook/client-logger": "5.2.0-alpha.34",
|
||||||
"@storybook/components": "5.2.0-alpha.34",
|
"@storybook/components": "5.2.0-alpha.34",
|
||||||
"@storybook/core-events": "5.2.0-alpha.34",
|
"@storybook/core-events": "5.2.0-alpha.34",
|
||||||
|
@ -1,25 +1,11 @@
|
|||||||
import { addons } from '@storybook/addons';
|
import { useChannel } from '@storybook/client-api';
|
||||||
import { EVENTS } from './constants';
|
import { EVENTS } from './constants';
|
||||||
|
|
||||||
const run = async () => {
|
export const withRoundtrip = (storyFn: () => any) => {
|
||||||
const channel = await addons.ready();
|
const emit = useChannel({
|
||||||
|
[EVENTS.REQUEST]: () => {
|
||||||
channel.on(EVENTS.REQUEST, () => {
|
emit(EVENTS.RESULT, ['from the preview']);
|
||||||
// do something in the preview context
|
},
|
||||||
// then report back to the manager
|
|
||||||
|
|
||||||
channel.emit(EVENTS.RESULT, ['from the preview']);
|
|
||||||
});
|
});
|
||||||
|
return storyFn();
|
||||||
};
|
};
|
||||||
|
|
||||||
run();
|
|
||||||
|
|
||||||
// import { useChannel } from '@storybook/client-api';
|
|
||||||
|
|
||||||
// export const myDecorator = () => {
|
|
||||||
|
|
||||||
// const emit = useChannel({
|
|
||||||
// [EVENTS.REQUEST]: () => {
|
|
||||||
// emit(EVENTS.RESULT, ['from the preview'])}
|
|
||||||
// });
|
|
||||||
// };
|
|
||||||
|
@ -2,8 +2,10 @@ import React from 'react';
|
|||||||
import { storiesOf } from '@storybook/react';
|
import { storiesOf } from '@storybook/react';
|
||||||
|
|
||||||
import { withDecorator } from '@storybook/addon-decorator';
|
import { withDecorator } from '@storybook/addon-decorator';
|
||||||
|
import { withRoundtrip } from '@storybook/addon-roundtrip';
|
||||||
|
|
||||||
storiesOf('addons|decorator', module)
|
storiesOf('addons|decorator', module)
|
||||||
|
.addDecorator(withRoundtrip)
|
||||||
.addDecorator(withDecorator())
|
.addDecorator(withDecorator())
|
||||||
.add('with decorator', () => (
|
.add('with decorator', () => (
|
||||||
<div>This story is wrapped with a decorator that is aware of when a story updates/changes</div>
|
<div>This story is wrapped with a decorator that is aware of when a story updates/changes</div>
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { storiesOf } from '@storybook/react';
|
import { storiesOf } from '@storybook/react';
|
||||||
|
|
||||||
import '@storybook/addon-roundtrip';
|
|
||||||
|
|
||||||
storiesOf('root|group/component', module).add('variant 1', () => <div>This is variant 1</div>);
|
storiesOf('root|group/component', module).add('variant 1', () => <div>This is variant 1</div>);
|
||||||
|
|
||||||
storiesOf('addons|parameter', module)
|
storiesOf('addons|parameter', module)
|
||||||
|
@ -287,7 +287,7 @@ export function useChannel(eventMap: EventMap) {
|
|||||||
};
|
};
|
||||||
}, Object.keys(eventMap));
|
}, Object.keys(eventMap));
|
||||||
|
|
||||||
return channel.emit;
|
return channel.emit.bind(channel);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useParameter<S>(parameterKey: string, defaultValue?: S): S | undefined {
|
export function useParameter<S>(parameterKey: string, defaultValue?: S): S | undefined {
|
||||||
|
@ -14,9 +14,17 @@ import Provider from './provider';
|
|||||||
ThemeProvider.displayName = 'ThemeProvider';
|
ThemeProvider.displayName = 'ThemeProvider';
|
||||||
HelmetProvider.displayName = 'HelmetProvider';
|
HelmetProvider.displayName = 'HelmetProvider';
|
||||||
|
|
||||||
|
const getDocsMode = () => {
|
||||||
|
try {
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
|
return !!DOCS_MODE; // webpack-injected
|
||||||
|
} catch (e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const Container = process.env.XSTORYBOOK_EXAMPLE_APP ? React.StrictMode : React.Fragment;
|
const Container = process.env.XSTORYBOOK_EXAMPLE_APP ? React.StrictMode : React.Fragment;
|
||||||
// eslint-disable-next-line no-undef
|
const docsMode = getDocsMode();
|
||||||
const docsMode = !!DOCS_MODE; // webpack-injected
|
|
||||||
|
|
||||||
const Root = ({ provider }) => (
|
const Root = ({ provider }) => (
|
||||||
<Container key="container">
|
<Container key="container">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user