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.
101 lines
2.9 KiB
101 lines
2.9 KiB
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import omit from 'rc-util/lib/omit';
|
|
import EyeOutlined from '@ant-design/icons/EyeOutlined';
|
|
import EyeInvisibleOutlined from '@ant-design/icons/EyeInvisibleOutlined';
|
|
|
|
import { useState } from 'react';
|
|
import Input, { InputRef, InputProps } from './Input';
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
|
|
|
export interface PasswordProps extends InputProps {
|
|
readonly inputPrefixCls?: string;
|
|
readonly action?: string;
|
|
visibilityToggle?: boolean;
|
|
iconRender?: (visible: boolean) => React.ReactNode;
|
|
}
|
|
|
|
const ActionMap: Record<string, string> = {
|
|
click: 'onClick',
|
|
hover: 'onMouseOver',
|
|
};
|
|
|
|
const Password = React.forwardRef<InputRef, PasswordProps>((props, ref) => {
|
|
const [visible, setVisible] = useState(false);
|
|
|
|
const onVisibleChange = () => {
|
|
const { disabled } = props;
|
|
if (disabled) {
|
|
return;
|
|
}
|
|
|
|
setVisible(!visible);
|
|
};
|
|
|
|
const getIcon = (prefixCls: string) => {
|
|
const { action, iconRender = () => null } = props;
|
|
const iconTrigger = ActionMap[action!] || '';
|
|
const icon = iconRender(visible);
|
|
const iconProps = {
|
|
[iconTrigger]: onVisibleChange,
|
|
className: `${prefixCls}-icon`,
|
|
key: 'passwordIcon',
|
|
onMouseDown: (e: MouseEvent) => {
|
|
// Prevent focused state lost
|
|
// https://github.com/ant-design/ant-design/issues/15173
|
|
e.preventDefault();
|
|
},
|
|
onMouseUp: (e: MouseEvent) => {
|
|
// Prevent caret position change
|
|
// https://github.com/ant-design/ant-design/issues/23524
|
|
e.preventDefault();
|
|
},
|
|
};
|
|
return React.cloneElement(React.isValidElement(icon) ? icon : <span>{icon}</span>, iconProps);
|
|
};
|
|
|
|
const renderPassword = ({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const {
|
|
className,
|
|
prefixCls: customizePrefixCls,
|
|
inputPrefixCls: customizeInputPrefixCls,
|
|
size,
|
|
visibilityToggle,
|
|
...restProps
|
|
} = props;
|
|
|
|
const inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls);
|
|
const prefixCls = getPrefixCls('input-password', customizePrefixCls);
|
|
|
|
const suffixIcon = visibilityToggle && getIcon(prefixCls);
|
|
const inputClassName = classNames(prefixCls, className, {
|
|
[`${prefixCls}-${size}`]: !!size,
|
|
});
|
|
|
|
const omittedProps = {
|
|
...omit(restProps, ['suffix', 'iconRender']),
|
|
type: visible ? 'text' : 'password',
|
|
className: inputClassName,
|
|
prefixCls: inputPrefixCls,
|
|
suffix: suffixIcon,
|
|
} as InputProps;
|
|
|
|
if (size) {
|
|
omittedProps.size = size;
|
|
}
|
|
|
|
return <Input ref={ref} {...omittedProps} />;
|
|
};
|
|
|
|
return <ConfigConsumer>{renderPassword}</ConfigConsumer>;
|
|
});
|
|
|
|
Password.defaultProps = {
|
|
action: 'click',
|
|
visibilityToggle: true,
|
|
iconRender: (visible: boolean) => (visible ? <EyeOutlined /> : <EyeInvisibleOutlined />),
|
|
};
|
|
|
|
Password.displayName = 'Password';
|
|
|
|
export default Password;
|
|
|