mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { document, Node } from 'global';
|
|
import { stripIndents } from 'common-tags';
|
|
import { RenderMainArgs } from './types';
|
|
|
|
const rootElement = document.getElementById('root');
|
|
|
|
export default function renderMain({
|
|
storyFn,
|
|
selectedKind,
|
|
selectedStory,
|
|
showMain,
|
|
showError,
|
|
forceRender,
|
|
}: RenderMainArgs) {
|
|
const element = storyFn();
|
|
|
|
showMain();
|
|
if (typeof element === 'string') {
|
|
rootElement.innerHTML = element;
|
|
} else if (element instanceof Node) {
|
|
// Don't re-mount the element if it didn't change and neither did the story
|
|
if (rootElement.firstChild === element && forceRender === true) {
|
|
return;
|
|
}
|
|
|
|
rootElement.innerHTML = '';
|
|
rootElement.appendChild(element);
|
|
} else {
|
|
showError({
|
|
title: `Expecting an HTML snippet or DOM node from the story: "${selectedStory}" of "${selectedKind}".`,
|
|
description: stripIndents`
|
|
Did you forget to return the HTML snippet from the story?
|
|
Use "() => <your snippet or node>" or when defining the story.
|
|
`,
|
|
});
|
|
}
|
|
}
|