Addon-docs: render into a different root to avoid conflicts

This commit is contained in:
Michael Shilman 2019-07-01 18:14:43 +08:00
parent c91d8d4281
commit 6eb702ff70
2 changed files with 53 additions and 41 deletions

View File

@ -190,11 +190,35 @@ export default function start(render, { decorateStory } = {}) {
addons.getChannel().emit(Events.STORY_CHANGED, id); addons.getChannel().emit(Events.STORY_CHANGED, id);
} }
// Docs view renders into a different root ID to avoid conflicts
// with the user's view layer. Therefore we need to clean up whenever
// we transition between view modes
if (viewMode !== previousViewMode) {
switch (viewMode) {
case 'docs': {
document.getElementById('root').setAttribute('hidden', true);
document.getElementById('docs-root').removeAttribute('hidden');
break;
}
case 'story':
default: {
if (previousViewMode === 'docs') {
document.getElementById('docs-root').setAttribute('hidden', true);
ReactDOM.unmountComponentAtNode(document.getElementById('docs-root'));
document.getElementById('root').removeAttribute('hidden');
}
}
}
}
// Given a cleaned up state, render the appropriate view mode
switch (viewMode) { switch (viewMode) {
case 'docs': { case 'docs': {
const NoDocs = () => <div style={{ fontFamily: 'sans-serif' }}>No docs found</div>; const NoDocs = () => <div style={{ fontFamily: 'sans-serif' }}>No docs found</div>;
const StoryDocs = (parameters && parameters.docs) || NoDocs; const StoryDocs = (parameters && parameters.docs) || NoDocs;
ReactDOM.render(<StoryDocs context={renderContext} />, document.getElementById('root')); ReactDOM.render(
<StoryDocs context={renderContext} />,
document.getElementById('docs-root')
);
break; break;
} }
case 'story': case 'story':

View File

@ -1,48 +1,36 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head>
<meta charset="utf-8" />
<title><%= options.title || 'Storybook'%></title>
<head> <% if (files.favicon) { %>
<meta charset="utf-8"> <link rel="shortcut icon" href="<%= files.favicon%>" />
<title><%= options.title || 'Storybook'%></title> <% } %>
<% if (files.favicon) { %> <meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="<%= files.favicon%>">
<% } %>
<meta name="viewport" content="width=device-width, initial-scale=1"> <% if (typeof headHtmlSnippet !== 'undefined') { %> <%= headHtmlSnippet %> <% } %> <%
files.css.forEach(file => { %>
<link href="<%= file %>" rel="stylesheet" />
<% }); %>
</head>
<body>
<% if (typeof bodyHtmlSnippet !== 'undefined') { %> <%= bodyHtmlSnippet %> <% } %>
<% if (typeof headHtmlSnippet !== 'undefined') { %> <div id="root"></div>
<%= headHtmlSnippet %> <div id="docs-root"></div>
<% } %>
<% files.css.forEach(file => { %> <% if (options.window) { %>
<link href="<%= file %>" rel="stylesheet"> <script>
<% }); %> <% for (var varName in options.window) { %>
window['<%=varName%>'] = <%= JSON.stringify(options.window[varName]) %>;
</head> <% } %>
<body> </script>
<% } %> <% dlls.forEach(file => { %>
<% if (typeof bodyHtmlSnippet !== 'undefined') { %> <script src="<%= file %>"></script>
<%= bodyHtmlSnippet %> <% }); %> <% files.js.forEach(file => { %>
<% } %> <script src="<%= file %>"></script>
<% }); %>
<div id="root"></div> </body>
<% if (options.window) { %>
<script>
<% for (var varName in options.window) { %>
window['<%=varName%>'] = <%= JSON.stringify(options.window[varName]) %>;
<% } %>
</script>
<% } %>
<% dlls.forEach(file => { %>
<script src="<%= file %>"></script>
<% }); %>
<% files.js.forEach(file => { %>
<script src="<%= file %>"></script>
<% }); %>
</body>
</html> </html>