mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
Merge pull request #9932 from jonspalmer/links_addon_preset
Add preset for Links Addon
This commit is contained in:
commit
dd83080cdd
@ -88,7 +88,7 @@
|
||||
|
||||
In Storybook 5.3 we introduced a declarative [main.js configuration](#to-mainjs-configuration), which is now the recommended way to configure Storybook. Part of the change is a simplified syntax for registering addons, which in 6.0 automatically registers many addons _using a preset_, which is a slightly different behavior than in earlier versions.
|
||||
|
||||
This breaking change currently applies to: `addon-a11y`, `addon-knobs`.
|
||||
This breaking change currently applies to: `addon-a11y`, `addon-knobs`, `addon-links`.
|
||||
|
||||
Consider the following `main.js` config for the accessibility addon, `addon-a11y`:
|
||||
|
||||
|
1
addons/links/preset.js
Normal file
1
addons/links/preset.js
Normal file
@ -0,0 +1 @@
|
||||
module.exports = require('./dist/preset');
|
@ -1 +1 @@
|
||||
require('./dist/manager').register();
|
||||
require('./dist/register');
|
||||
|
@ -1,4 +1,5 @@
|
||||
export const ADDON_ID = 'storybook/links';
|
||||
export const PARAM_KEY = `links`;
|
||||
|
||||
export default {
|
||||
NAVIGATE: `${ADDON_ID}/navigate`,
|
||||
|
@ -1,14 +0,0 @@
|
||||
import addons from '@storybook/addons';
|
||||
|
||||
import EVENTS, { ADDON_ID } from './constants';
|
||||
|
||||
export const register = () => {
|
||||
addons.register(ADDON_ID, api => {
|
||||
const channel = addons.getChannel();
|
||||
|
||||
channel.on(EVENTS.REQUEST, ({ kind, name }) => {
|
||||
const id = api.storyId(kind, name);
|
||||
api.emit(EVENTS.RECEIVE, id);
|
||||
});
|
||||
});
|
||||
};
|
3
addons/links/src/preset/addDecorator.ts
Normal file
3
addons/links/src/preset/addDecorator.ts
Normal file
@ -0,0 +1,3 @@
|
||||
import { withLinks } from '../index';
|
||||
|
||||
export const decorators = [withLinks];
|
15
addons/links/src/preset/index.ts
Normal file
15
addons/links/src/preset/index.ts
Normal file
@ -0,0 +1,15 @@
|
||||
type LinkOptions = {
|
||||
addDecorator?: boolean;
|
||||
};
|
||||
|
||||
export function managerEntries(entry: any[] = []) {
|
||||
return [...entry, require.resolve('../register')];
|
||||
}
|
||||
|
||||
export function config(entry: any[] = [], { addDecorator = true }: LinkOptions = {}) {
|
||||
const linkConfig = [];
|
||||
if (addDecorator) {
|
||||
linkConfig.push(require.resolve('./addDecorator'));
|
||||
}
|
||||
return [...entry, ...linkConfig];
|
||||
}
|
@ -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);
|
||||
}
|
||||
});
|
||||
|
12
addons/links/src/register.ts
Normal file
12
addons/links/src/register.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import addons from '@storybook/addons';
|
||||
|
||||
import EVENTS, { ADDON_ID } from './constants';
|
||||
|
||||
addons.register(ADDON_ID, api => {
|
||||
const channel = addons.getChannel();
|
||||
|
||||
channel.on(EVENTS.REQUEST, ({ kind, name }) => {
|
||||
const id = api.storyId(kind, name);
|
||||
api.emit(EVENTS.RECEIVE, id);
|
||||
});
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user