mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
add some dependencies
This commit is contained in:
parent
ffc63188ae
commit
239e73e48e
@ -22,6 +22,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "5.2.0-alpha.32",
|
||||
"@storybook/channel-postmessage": "^5.1.9",
|
||||
"@storybook/channels": "^5.1.9",
|
||||
"@storybook/client-logger": "5.2.0-alpha.32",
|
||||
"@storybook/core-events": "5.2.0-alpha.32",
|
||||
|
@ -8,7 +8,14 @@ import { toId } from '@storybook/router/utils';
|
||||
import mergeWith from 'lodash/mergeWith';
|
||||
import isEqual from 'lodash/isEqual';
|
||||
import get from 'lodash/get';
|
||||
import { ClientApiParams, IApi, IDecoratorParams, IHierarchyObj, StoryStore, StoryFn } from './types';
|
||||
import {
|
||||
ClientApiParams,
|
||||
IApi,
|
||||
IDecoratorParams,
|
||||
IHierarchyObj,
|
||||
StoryStore,
|
||||
StoryFn,
|
||||
} from './types';
|
||||
import subscriptionsStore from './subscriptions_store';
|
||||
import { IAddon } from '../dist/types';
|
||||
|
||||
@ -34,12 +41,12 @@ const merge = (a: any, b: any) =>
|
||||
|
||||
export const defaultDecorateStory = (storyFn: StoryFn, decorators: any[]) =>
|
||||
decorators.reduce(
|
||||
(decorated, decorator) => (context: { parameters: any; options: any; }) =>
|
||||
decorator(
|
||||
(p: { parameters: any; options: any; }) => {
|
||||
(decorated, decorator) => (context: { parameters: any; options: any }) =>
|
||||
decorator((p: { parameters: any; options: any }) => {
|
||||
console.log('p: ', p);
|
||||
|
||||
return decorated(
|
||||
return (
|
||||
decorated(
|
||||
// MUTATION !
|
||||
Object.assign(
|
||||
context,
|
||||
@ -49,8 +56,8 @@ export const defaultDecorateStory = (storyFn: StoryFn, decorators: any[]) =>
|
||||
)
|
||||
),
|
||||
context
|
||||
}
|
||||
),
|
||||
);
|
||||
}),
|
||||
storyFn
|
||||
);
|
||||
|
||||
|
@ -53,6 +53,7 @@ export default class StoryStore extends EventEmitter {
|
||||
_selection: {};
|
||||
|
||||
_channel: Channel;
|
||||
|
||||
_error?: Error;
|
||||
|
||||
constructor(params: { channel: Channel }) {
|
||||
@ -181,7 +182,7 @@ export default class StoryStore extends EventEmitter {
|
||||
// lazily decorate the story when it's loaded
|
||||
const getDecorated = memoize(1)(() =>
|
||||
applyDecorators(getOriginal(), getDecorators())
|
||||
) as () => (args: any) => any;
|
||||
) as any; // not sure why, but continues to block build if not any
|
||||
|
||||
const storyFn = (p: any) =>
|
||||
getDecorated()({ ...identification, parameters: { ...parameters, ...p } });
|
||||
|
@ -348,10 +348,7 @@ export interface Decorator {
|
||||
storyFn: StoryFn;
|
||||
}
|
||||
|
||||
export type DecoratorData = {
|
||||
[K in Keys]: Decorator;
|
||||
} & {[key: string]: Decorator};
|
||||
|
||||
export type DecoratorData = { [K in Keys]: Decorator } & { [key: string]: Decorator };
|
||||
|
||||
export interface IModule {
|
||||
exports: any;
|
||||
@ -409,7 +406,7 @@ export interface LegacyItem {
|
||||
}
|
||||
|
||||
export type LegacyData = { [K in Keys]: LegacyItem };
|
||||
type _decorator = Partial<Decorator>
|
||||
type _decorator = Partial<Decorator>;
|
||||
export interface StoryStore {
|
||||
fromId: (id: string) => any;
|
||||
getSelection: (a: any, b: Error) => void;
|
||||
@ -417,10 +414,13 @@ export interface StoryStore {
|
||||
incrementRevision: () => void;
|
||||
addLegacyStory: (p: DecoratorData) => void;
|
||||
pushToManager: () => void;
|
||||
addStory: (p: _decorator, cbObj: {
|
||||
addStory: (
|
||||
p: _decorator,
|
||||
cbObj: {
|
||||
applyDecorators: (storyFn: StoryFn, decorators: any) => any;
|
||||
getDecorators: () => any[];
|
||||
}) => void;
|
||||
}
|
||||
) => void;
|
||||
remove: (id: string) => void;
|
||||
setChannel: (channel: Channel) => void;
|
||||
setSelection: (ref: any, err: Error) => void;
|
||||
|
1
lib/client-api/src/typings.d.ts
vendored
1
lib/client-api/src/typings.d.ts
vendored
@ -1,3 +1,4 @@
|
||||
declare module 'global';
|
||||
declare module '@storybook/client-api';
|
||||
declare module '@storybook/core-events';
|
||||
declare module './types';
|
Loading…
x
Reference in New Issue
Block a user