Fix modern inline rendering with absolutely positioned elements

This commit is contained in:
Michael Shilman 2021-09-13 16:52:06 +08:00
parent 0ae41ca27d
commit 825f435077
2 changed files with 25 additions and 17 deletions

View File

@ -133,21 +133,35 @@ const Story: FunctionComponent<StoryProps> = (props) => {
if (!story) {
return <div>Loading...</div>;
}
if (global?.FEATURES.modernInlineRender) {
// We do this so React doesn't complain when we replace the span in a secondary render
const htmlContents = `<span data-is-loading-indicator="true">loading story...</span>`;
return (
<div ref={ref} data-name={story.name} dangerouslySetInnerHTML={{ __html: htmlContents }} />
);
}
const storyProps = getStoryProps(props, story, context);
if (!storyProps) {
return null;
}
if (global?.FEATURES.modernInlineRender) {
// We do this so React doesn't complain when we replace the span in a secondary render
const htmlContents = `<span data-is-loading-indicator="true">loading story...</span>`;
// FIXME: height/style/etc. lifted from PureStory
const { height } = storyProps;
return (
<div id={storyBlockIdFromId(story.id)}>
<MDXProvider components={resetComponents}>
{height ? (
<style>{`#story--${story.id} { min-height: ${height}; transform: translateZ(0); overflow: auto }`}</style>
) : null}
<div
ref={ref}
data-name={story.name}
dangerouslySetInnerHTML={{ __html: htmlContents }}
/>
</MDXProvider>
</div>
);
}
return (
<div id={storyBlockIdFromId(storyProps.id)}>
<div id={storyBlockIdFromId(story.id)}>
<MDXProvider components={resetComponents}>
<PureStory {...storyProps} />
</MDXProvider>

View File

@ -21,9 +21,7 @@ import MdxNotes from '../notes/notes.mdx';
title="Addons/Docs/mdx"
component={TsButton}
id="addons-docs-mdx-id"
decorators={[
(storyFn) => <div style={{ backgroundColor: 'yellow' }}>{storyFn()}</div>,
]}
decorators={[(storyFn) => <div style={{ backgroundColor: 'yellow' }}>{storyFn()}</div>]}
parameters={{ notes: 'component notes' }}
/>
@ -35,10 +33,6 @@ import MdxNotes from '../notes/notes.mdx';
<ArgsTable of="." />
<Canvas>
<Story id="nonexistent-story" />
</Canvas>
## Transclusion
### Markdown