mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:31:08 +08:00
feat: update Loader count for refs
This commit is contained in:
parent
855815293b
commit
cd9ba628e3
@ -30,9 +30,19 @@ export const Contained = styled.div({
|
||||
paddingRight: 20,
|
||||
});
|
||||
|
||||
export const Loader: FunctionComponent<{
|
||||
size: 'single' | 'multiple';
|
||||
}> = ({ size }) => {
|
||||
const getRandomInt = (max: number) => Math.floor(Math.random() * Math.floor(max + 1));
|
||||
|
||||
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' ? (
|
||||
<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' : 'single'} />
|
||||
<Loader size={isMain ? 'multiple' : 5} />
|
||||
</Contained>
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user