forked from ddrilling/asb_cloud_front
Добавлена документация компонента LoaderPortal
This commit is contained in:
parent
bfd1e51cfa
commit
8f52066bce
@ -3,12 +3,19 @@ import { HTMLAttributes } from 'react'
|
||||
import { Loader } from '@components/icons'
|
||||
|
||||
type LoaderPortalProps = HTMLAttributes<HTMLDivElement> & {
|
||||
/** Показать ли загрузку */
|
||||
show?: boolean,
|
||||
/** Затемнять ли дочерний блок */
|
||||
fade?: boolean,
|
||||
/** Параметры спиннера */
|
||||
spinnerProps?: HTMLAttributes<HTMLDivElement>,
|
||||
/** Заполнять ли контент на 100% */
|
||||
fillContent?: boolean
|
||||
}
|
||||
|
||||
/**
|
||||
* @description Добавляет оверлей загрузки над обёрнутым блоком
|
||||
*/
|
||||
export const LoaderPortal: React.FC<LoaderPortalProps> = ({ className = '', show, fade = true, children, spinnerProps, fillContent, ...other }) => (
|
||||
<div className={`loader-container ${className}`} {...other}>
|
||||
<div className={`loader-content${fillContent ? ' loader-content-fill' : ''}`}>{children}</div>
|
||||
|
@ -58,9 +58,9 @@
|
||||
place-self: center;
|
||||
align-self: center;
|
||||
justify-self: center;
|
||||
z-index: 1;
|
||||
z-index: 1;
|
||||
height: 80px;
|
||||
width: 80px;
|
||||
width: 80px;
|
||||
border-radius: 40px;
|
||||
}
|
||||
|
||||
@ -71,6 +71,6 @@
|
||||
background-color: rgba(255, 255, 255, 0.4);
|
||||
align-self: stretch;
|
||||
justify-self: stretch;
|
||||
z-index: 1;
|
||||
z-index: 1;
|
||||
box-shadow: 0px 0px 6px 5px rgba(255, 254, 254, 0.4);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user