Hide addon panel while loading.

This commit is contained in:
Gert Hengeveld 2020-10-30 15:01:15 +01:00
parent effba9e367
commit fa5c843aa9
2 changed files with 7 additions and 5 deletions

View File

@ -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>

View File

@ -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}
/>