You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
967 B
38 lines
967 B
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
|
|
type widthUnit = number | string;
|
|
|
|
export interface SkeletonParagraphProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
width?: widthUnit | Array<widthUnit>;
|
|
rows?: number;
|
|
}
|
|
|
|
const Paragraph: React.FC<SkeletonParagraphProps> = (props) => {
|
|
const getWidth = (index: number) => {
|
|
const { width, rows = 2 } = props;
|
|
if (Array.isArray(width)) {
|
|
return width[index];
|
|
}
|
|
// last paragraph
|
|
if (rows - 1 === index) {
|
|
return width;
|
|
}
|
|
return undefined;
|
|
};
|
|
const { prefixCls, className, style, rows } = props;
|
|
const rowList = [...Array(rows)].map((_, index) => (
|
|
// eslint-disable-next-line react/no-array-index-key
|
|
<li key={index} style={{ width: getWidth(index) }} />
|
|
));
|
|
return (
|
|
<ul className={classNames(prefixCls, className)} style={style}>
|
|
{rowList}
|
|
</ul>
|
|
);
|
|
};
|
|
|
|
export default Paragraph;
|
|
|