mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:51:07 +08:00
feat: make Loader sequence static
This commit is contained in:
parent
bb52a80893
commit
952636613a
@ -1,6 +1,8 @@
|
||||
import React, { FunctionComponent, Fragment } from 'react';
|
||||
import { styled } from '@storybook/theming';
|
||||
|
||||
const LOADER_SEQUENCE = [0, 0, 1, 1, 2, 3, 3, 3, 1, 1, 1, 2, 2, 2, 3];
|
||||
|
||||
const Loadingitem = styled.div<{
|
||||
depth?: number;
|
||||
}>(
|
||||
@ -30,40 +32,24 @@ export const Contained = styled.div({
|
||||
paddingRight: 20,
|
||||
});
|
||||
|
||||
const getRandomInt = (max: number) => Math.floor(Math.random() * Math.floor(max + 1));
|
||||
interface LoaderProps {
|
||||
/**
|
||||
* The number of lines to display in the loader.
|
||||
* These are indented according to a pre-defined sequence of depths.
|
||||
*/
|
||||
size: number;
|
||||
}
|
||||
|
||||
export const Loader: FunctionComponent<{ size: 'single' | 'multiple' | number }> = ({ size }) => {
|
||||
if (typeof size === 'number') {
|
||||
return (
|
||||
<Fragment>
|
||||
{Array.from(Array(size)).map((item, index) => (
|
||||
// eslint-disable-next-line react/no-array-index-key
|
||||
<Loadingitem depth={index > 0 ? getRandomInt(1) : 0} key={index} />
|
||||
))}
|
||||
</Fragment>
|
||||
);
|
||||
}
|
||||
return size === 'multiple' ? (
|
||||
export const Loader: FunctionComponent<LoaderProps> = ({ size }) => {
|
||||
const repeats = Math.ceil(size / LOADER_SEQUENCE.length);
|
||||
// Creates an array that repeats LOADER_SEQUENCE depths in order, until the size is reached.
|
||||
const sequence = Array.from(Array(repeats)).fill(LOADER_SEQUENCE).flat().slice(0, size);
|
||||
return (
|
||||
<Fragment>
|
||||
<Loadingitem />
|
||||
<Loadingitem />
|
||||
<Loadingitem depth={1} />
|
||||
<Loadingitem depth={1} />
|
||||
<Loadingitem depth={2} />
|
||||
<Loadingitem depth={3} />
|
||||
<Loadingitem depth={3} />
|
||||
<Loadingitem depth={3} />
|
||||
<Loadingitem depth={1} />
|
||||
<Loadingitem depth={1} />
|
||||
<Loadingitem depth={1} />
|
||||
<Loadingitem depth={2} />
|
||||
<Loadingitem depth={2} />
|
||||
<Loadingitem depth={2} />
|
||||
<Loadingitem depth={3} />
|
||||
<Loadingitem />
|
||||
<Loadingitem />
|
||||
{sequence.map((depth, index) => (
|
||||
// eslint-disable-next-line react/no-array-index-key
|
||||
<Loadingitem depth={depth} key={index} />
|
||||
))}
|
||||
</Fragment>
|
||||
) : (
|
||||
<Loadingitem />
|
||||
);
|
||||
};
|
||||
|
@ -222,7 +222,7 @@ export const ErrorBlock: FunctionComponent<{ error: Error }> = ({ error }) => (
|
||||
|
||||
export const LoaderBlock: FunctionComponent<{ isMain: boolean }> = ({ isMain }) => (
|
||||
<Contained>
|
||||
<Loader size={isMain ? 'multiple' : 5} />
|
||||
<Loader size={isMain ? 17 : 5} />
|
||||
</Contained>
|
||||
);
|
||||
|
||||
|
@ -3,13 +3,9 @@
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"types": ["webpack-env"],
|
||||
"resolveJsonModule": true
|
||||
"resolveJsonModule": true,
|
||||
"lib": ["ESNext", "DOM"]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"src/**/*.test.*",
|
||||
"src/__tests__/**/*"
|
||||
]
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["src/**/*.test.*", "src/__tests__/**/*"]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user