mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 11:11:06 +08:00
Merge pull request #12164 from storybookjs/12138-html-fix-inline-rendering
Addon-docs: Fix inline rendering for DOM nodes in HTML
This commit is contained in:
commit
ff5f4804de
@ -4,9 +4,13 @@ import { StoryFn } from '@storybook/addons';
|
|||||||
export const parameters = {
|
export const parameters = {
|
||||||
docs: {
|
docs: {
|
||||||
inlineStories: true,
|
inlineStories: true,
|
||||||
prepareForInline: (storyFn: StoryFn<string>) => (
|
prepareForInline: (storyFn: StoryFn<string>) => {
|
||||||
|
const html = storyFn();
|
||||||
|
if (typeof html === 'string') {
|
||||||
// eslint-disable-next-line react/no-danger
|
// eslint-disable-next-line react/no-danger
|
||||||
<div dangerouslySetInnerHTML={{ __html: storyFn() }} />
|
return <div dangerouslySetInnerHTML={{ __html: html }} />;
|
||||||
),
|
}
|
||||||
|
return <div ref={(node) => (node ? node.appendChild(html) : null)} />;
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user