ant-design/components/skeleton/Paragraph.tsx
renovate[bot] 863f61d908
chore(deps): update dependency eslint to v9 (#50690)
Co-authored-by: afc163 <afc163@gmail.com>
2024-09-19 03:30:19 +08:00

40 lines
988 B
TypeScript

import * as React from 'react';
import classNames from 'classnames';
type widthUnit = number | string;
export interface SkeletonParagraphProps {
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
width?: widthUnit | Array<widthUnit>;
rows?: number;
}
const getWidth = (index: number, props: SkeletonParagraphProps) => {
const { width, rows = 2 } = props;
if (Array.isArray(width)) {
return width[index];
}
// last paragraph
if (rows - 1 === index) {
return width;
}
return undefined;
};
const Paragraph: React.FC<SkeletonParagraphProps> = (props) => {
const { prefixCls, className, style, rows } = props;
const rowList = [...new Array(rows)].map((_, index) => (
// eslint-disable-next-line react/no-array-index-key
<li key={index} style={{ width: getWidth(index, props) }} />
));
return (
<ul className={classNames(prefixCls, className)} style={style}>
{rowList}
</ul>
);
};
export default Paragraph;