use makeDecorator to allow disabling via parameters

This commit is contained in:
Jon Palmer 2020-02-22 20:24:50 -05:00
parent 2b7ce51fdf
commit 06bdaf5e92
2 changed files with 12 additions and 6 deletions

View File

@ -1,4 +1,5 @@
export const ADDON_ID = 'storybook/links';
export const PARAM_KEY = `links`;
export default {
NAVIGATE: `${ADDON_ID}/navigate`,

View File

@ -5,7 +5,8 @@ import {
__STORYBOOK_CLIENT_API__ as clientApi,
} from 'global';
import qs from 'qs';
import addons from '@storybook/addons';
import addons, { makeDecorator } from '@storybook/addons';
import { PARAM_KEY } from './constants';
import { STORY_CHANGED, SELECT_STORY } from '@storybook/core-events';
import { toId } from '@storybook/csf';
import { logger } from '@storybook/client-logger';
@ -109,8 +110,12 @@ const off = () => {
}
};
export const withLinks = (storyFn: () => void) => {
on();
addons.getChannel().once(STORY_CHANGED, off);
return storyFn();
};
export const withLinks = makeDecorator({
name: 'withLinks',
parameterName: PARAM_KEY,
wrapper: (getStory, context, { parameters }) => {
on();
addons.getChannel().once(STORY_CHANGED, off);
return getStory(context);
}
});