mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:01:09 +08:00
IMPROVE the loading of the storybook UI
This commit is contained in:
parent
1f27b252a6
commit
ce6f34b512
@ -58,11 +58,7 @@ const App = React.memo<AppProps>(
|
||||
);
|
||||
|
||||
if (!width || !height) {
|
||||
content = (
|
||||
<div>
|
||||
{width} x {height}
|
||||
</div>
|
||||
);
|
||||
content = <div />;
|
||||
} else if (width < 600) {
|
||||
content = <Mobile {...props} viewMode={viewMode} options={layout} />;
|
||||
} else {
|
||||
|
@ -4,6 +4,18 @@ import { IFrame } from './iframe';
|
||||
import { FramesRendererProps } from './utils/types';
|
||||
import { stringifyQueryParams } from './utils/stringifyQueryParams';
|
||||
|
||||
const getActive = (refId, storyId) => {
|
||||
if (storyId === '*') {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
if (refId) {
|
||||
return `storybook-ref-${refId}`;
|
||||
}
|
||||
|
||||
return 'storybook-preview-iframe';
|
||||
};
|
||||
|
||||
export const FramesRenderer: FunctionComponent<FramesRendererProps> = ({
|
||||
refs,
|
||||
story,
|
||||
@ -15,7 +27,7 @@ export const FramesRenderer: FunctionComponent<FramesRendererProps> = ({
|
||||
storyId,
|
||||
}) => {
|
||||
const stringifiedQueryParams = stringifyQueryParams(queryParams);
|
||||
const active = refId ? `storybook-ref-${refId}` : 'storybook-preview-iframe';
|
||||
const active = getActive(refId, storyId);
|
||||
|
||||
const styles = useMemo<CSSObject>(() => {
|
||||
return {
|
||||
|
Loading…
x
Reference in New Issue
Block a user