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.
37 lines
1.2 KiB
37 lines
1.2 KiB
5 years ago
|
import * as React from 'react';
|
||
|
import omit from 'omit.js';
|
||
|
import classNames from 'classnames';
|
||
|
import Element, { SkeletonElementProps } from './Element';
|
||
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
||
|
|
||
|
interface SkeletonInputProps extends Omit<SkeletonElementProps, 'size' | 'shape'> {
|
||
|
size?: 'large' | 'small' | 'default';
|
||
|
}
|
||
|
|
||
|
// eslint-disable-next-line react/prefer-stateless-function
|
||
|
class SkeletonInput extends React.Component<SkeletonInputProps, any> {
|
||
|
static defaultProps: Partial<SkeletonInputProps> = {
|
||
|
size: 'default',
|
||
|
};
|
||
|
|
||
|
renderSkeletonInput = ({ getPrefixCls }: ConfigConsumerProps) => {
|
||
|
const { prefixCls: customizePrefixCls, className, active } = this.props;
|
||
|
const prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
||
|
const otherProps = omit(this.props, ['prefixCls']);
|
||
|
const cls = classNames(prefixCls, className, `${prefixCls}-element`, {
|
||
|
[`${prefixCls}-active`]: active,
|
||
|
});
|
||
|
return (
|
||
|
<div className={cls}>
|
||
|
<Element prefixCls={`${prefixCls}-input`} {...otherProps} />
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
render() {
|
||
|
return <ConfigConsumer>{this.renderSkeletonInput}</ConfigConsumer>;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default SkeletonInput;
|