mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Hide addon panel while loading.
This commit is contained in:
parent
effba9e367
commit
fa5c843aa9
@ -60,10 +60,9 @@ const createCanvas = (id: string, baseUrl = 'iframe.html', withLoader = true): A
|
||||
...defaultWrappers,
|
||||
]);
|
||||
|
||||
const isLoading = !!(
|
||||
(!story && !(storiesFailed || storiesConfigured)) ||
|
||||
(story && refId && refs[refId] && !refs[refId].ready)
|
||||
);
|
||||
const isLoading = story
|
||||
? !!refs[refId] && !refs[refId].ready
|
||||
: !storiesFailed && !storiesConfigured;
|
||||
|
||||
return (
|
||||
<ZoomConsumer>
|
||||
|
@ -46,13 +46,16 @@ export const Root: FunctionComponent<RootProps> = ({ provider, history }) => (
|
||||
{({ state, api }: Combo) => {
|
||||
const panelCount = Object.keys(api.getPanels()).length;
|
||||
const story = api.getData(state.storyId, state.refId);
|
||||
const isLoading = story
|
||||
? !!state.refs[state.refId] && !state.refs[state.refId].ready
|
||||
: !state.storiesFailed && !state.storiesConfigured;
|
||||
|
||||
return (
|
||||
<ThemeProvider key="theme.provider" theme={ensureTheme(state.theme)}>
|
||||
<App
|
||||
key="app"
|
||||
viewMode={state.viewMode}
|
||||
layout={state.layout}
|
||||
layout={isLoading ? { ...state.layout, showPanel: false } : state.layout}
|
||||
panelCount={panelCount}
|
||||
docsOnly={story && story.parameters && story.parameters.docsOnly}
|
||||
/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user