Resolve circular dependency issue

This commit is contained in:
Tom Coleman 2020-03-02 11:33:59 +11:00
parent 976e30d5d5
commit 333ae484b0
4 changed files with 15 additions and 9 deletions

View File

@ -57,6 +57,7 @@
"webpack": "^4.33.0"
},
"devDependencies": {
"@storybook/client-api": "6.0.0-alpha.15",
"@types/mini-css-extract-plugin": "^0.9.0",
"@types/node": "^13.5.3",
"@types/webpack": "^4.41.0"

View File

@ -1,6 +1,7 @@
import { ReactElement } from 'react';
export { RenderContext } from '@storybook/core';
// eslint-disable-next-line import/no-extraneous-dependencies
export { RenderContext } from '@storybook/client-api';
export interface ShowErrorArgs {
title: string;

View File

@ -67,3 +67,13 @@ export interface GetStorybookKind {
fileName: string;
stories: GetStorybookStory[];
}
// This really belongs in lib/core, but that depends on lib/ui which (dev) depends on app/react
// which needs this type. So we put it here to avoid the circular dependency problem.
export type RenderContext = StoreItem & {
forceRender: boolean;
showMain: () => void;
showError: (error: { title: string; description: string }) => void;
showException: (err: Error) => void;
};

View File

@ -1,4 +1,4 @@
import { StoreItem } from '@storybook/client-api';
import { StoreItem, RenderContext } from '@storybook/client-api';
export interface PreviewError {
message?: string;
@ -23,13 +23,7 @@ export type RequireContext = {
export type LoaderFunction = () => void | any[];
export type Loadable = RequireContext | RequireContext[] | LoaderFunction;
export type RenderContext = StoreItem & {
forceRender: boolean;
showMain: () => void;
showError: (error: { title: string; description: string }) => void;
showException: (err: Error) => void;
};
export { RenderContext };
// The function used by a framework to render story to the DOM
export type RenderStoryFunction = (context: RenderContext) => void;