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.
185 lines
5.6 KiB
185 lines
5.6 KiB
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { CloseCircleFilled } from '@ant-design/icons';
|
|
import { tuple } from '../_util/type';
|
|
import { InputProps, getInputClassName } from './Input';
|
|
import { SizeType } from '../config-provider/SizeContext';
|
|
|
|
const ClearableInputType = tuple('text', 'input');
|
|
|
|
export function hasPrefixSuffix(props: InputProps | ClearableInputProps) {
|
|
return !!(props.prefix || props.suffix || props.allowClear);
|
|
}
|
|
|
|
/**
|
|
* This basic props required for input and textarea.
|
|
*/
|
|
interface BasicProps {
|
|
prefixCls: string;
|
|
inputType: typeof ClearableInputType[number];
|
|
value?: any;
|
|
allowClear?: boolean;
|
|
element: React.ReactElement<any>;
|
|
handleReset: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
className?: string;
|
|
style?: object;
|
|
disabled?: boolean;
|
|
direction?: any;
|
|
focused?: boolean;
|
|
}
|
|
|
|
/**
|
|
* This props only for input.
|
|
*/
|
|
interface ClearableInputProps extends BasicProps {
|
|
size?: SizeType;
|
|
suffix?: React.ReactNode;
|
|
prefix?: React.ReactNode;
|
|
addonBefore?: React.ReactNode;
|
|
addonAfter?: React.ReactNode;
|
|
}
|
|
|
|
class ClearableLabeledInput extends React.Component<ClearableInputProps> {
|
|
renderClearIcon(prefixCls: string) {
|
|
const { allowClear, value, disabled, inputType, handleReset } = this.props;
|
|
if (!allowClear || disabled || value === undefined || value === null || value === '') {
|
|
return null;
|
|
}
|
|
const className =
|
|
inputType === ClearableInputType[0]
|
|
? `${prefixCls}-textarea-clear-icon`
|
|
: `${prefixCls}-clear-icon`;
|
|
return <CloseCircleFilled onClick={handleReset} className={className} role="button" />;
|
|
}
|
|
|
|
renderSuffix(prefixCls: string) {
|
|
const { suffix, allowClear } = this.props;
|
|
if (suffix || allowClear) {
|
|
return (
|
|
<span className={`${prefixCls}-suffix`}>
|
|
{this.renderClearIcon(prefixCls)}
|
|
{suffix}
|
|
</span>
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
renderLabeledIcon(prefixCls: string, element: React.ReactElement<any>) {
|
|
const {
|
|
focused,
|
|
value,
|
|
prefix,
|
|
className,
|
|
size,
|
|
suffix,
|
|
disabled,
|
|
allowClear,
|
|
direction,
|
|
style,
|
|
} = this.props;
|
|
const suffixNode = this.renderSuffix(prefixCls);
|
|
if (!hasPrefixSuffix(this.props)) {
|
|
return React.cloneElement(element, {
|
|
value,
|
|
});
|
|
}
|
|
|
|
const prefixNode = prefix ? <span className={`${prefixCls}-prefix`}>{prefix}</span> : null;
|
|
|
|
const affixWrapperCls = classNames(className, `${prefixCls}-affix-wrapper`, {
|
|
[`${prefixCls}-affix-wrapper-focused`]: focused,
|
|
[`${prefixCls}-affix-wrapper-disabled`]: disabled,
|
|
[`${prefixCls}-affix-wrapper-sm`]: size === 'small',
|
|
[`${prefixCls}-affix-wrapper-lg`]: size === 'large',
|
|
[`${prefixCls}-affix-wrapper-input-with-clear-btn`]: suffix && allowClear && value,
|
|
[`${prefixCls}-affix-wrapper-rtl`]: direction === 'rtl',
|
|
});
|
|
return (
|
|
<span className={affixWrapperCls} style={style}>
|
|
{prefixNode}
|
|
{React.cloneElement(element, {
|
|
style: null,
|
|
value,
|
|
className: getInputClassName(prefixCls, size, disabled),
|
|
})}
|
|
{suffixNode}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
renderInputWithLabel(prefixCls: string, labeledElement: React.ReactElement<any>) {
|
|
const { addonBefore, addonAfter, style, size, className, direction } = this.props;
|
|
// Not wrap when there is not addons
|
|
if (!addonBefore && !addonAfter) {
|
|
return labeledElement;
|
|
}
|
|
|
|
const wrapperClassName = `${prefixCls}-group`;
|
|
const addonClassName = `${wrapperClassName}-addon`;
|
|
const addonBeforeNode = addonBefore ? (
|
|
<span className={addonClassName}>{addonBefore}</span>
|
|
) : null;
|
|
const addonAfterNode = addonAfter ? <span className={addonClassName}>{addonAfter}</span> : null;
|
|
|
|
const mergedWrapperClassName = classNames(`${prefixCls}-wrapper`, {
|
|
[wrapperClassName]: addonBefore || addonAfter,
|
|
[`${wrapperClassName}-rtl`]: direction === 'rtl',
|
|
});
|
|
|
|
const mergedGroupClassName = classNames(className, `${prefixCls}-group-wrapper`, {
|
|
[`${prefixCls}-group-wrapper-sm`]: size === 'small',
|
|
[`${prefixCls}-group-wrapper-lg`]: size === 'large',
|
|
[`${prefixCls}-group-wrapper-rtl`]: direction === 'rtl',
|
|
});
|
|
|
|
// Need another wrapper for changing display:table to display:inline-block
|
|
// and put style prop in wrapper
|
|
return (
|
|
<span className={mergedGroupClassName} style={style}>
|
|
<span className={mergedWrapperClassName}>
|
|
{addonBeforeNode}
|
|
{React.cloneElement(labeledElement, { style: null })}
|
|
{addonAfterNode}
|
|
</span>
|
|
</span>
|
|
);
|
|
}
|
|
|
|
renderTextAreaWithClearIcon(prefixCls: string, element: React.ReactElement<any>) {
|
|
const { value, allowClear, className, style } = this.props;
|
|
if (!allowClear) {
|
|
return React.cloneElement(element, {
|
|
value,
|
|
});
|
|
}
|
|
const affixWrapperCls = classNames(
|
|
className,
|
|
`${prefixCls}-affix-wrapper`,
|
|
`${prefixCls}-affix-wrapper-textarea-with-clear-btn`,
|
|
);
|
|
return (
|
|
<span className={affixWrapperCls} style={style}>
|
|
{React.cloneElement(element, {
|
|
style: null,
|
|
value,
|
|
})}
|
|
{this.renderClearIcon(prefixCls)}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
renderClearableLabeledInput() {
|
|
const { prefixCls, inputType, element } = this.props;
|
|
if (inputType === ClearableInputType[0]) {
|
|
return this.renderTextAreaWithClearIcon(prefixCls, element);
|
|
}
|
|
return this.renderInputWithLabel(prefixCls, this.renderLabeledIcon(prefixCls, element));
|
|
}
|
|
|
|
render() {
|
|
return this.renderClearableLabeledInput();
|
|
}
|
|
}
|
|
|
|
export default ClearableLabeledInput;
|
|
|