import * as React from 'react'; import classNames from 'classnames'; import omit from 'omit.js'; import Input, { InputProps } from './Input'; import Icon from '../icon'; export interface PasswordProps extends InputProps { readonly inputPrefixCls?: string; readonly action?: string; visibilityToggle?: boolean; } export interface PasswordState { visible: boolean; } const ActionMap: Record = { click: 'onClick', hover: 'onMouseOver', }; export default class Password extends React.Component { static defaultProps = { inputPrefixCls: 'ant-input', prefixCls: 'ant-input-password', action: 'click', visibilityToggle: true, }; state: PasswordState = { visible: false, }; onChange = () => { this.setState(({ visible }) => ({ visible: !visible })); }; getIcon() { const { prefixCls, action } = this.props; const iconTrigger = ActionMap[action!] || ''; const iconProps = { [iconTrigger]: this.onChange, className: `${prefixCls}-icon`, type: this.state.visible ? 'eye' : 'eye-invisible', key: 'passwordIcon', onMouseDown: (e: MouseEvent) => { // Prevent focused state lost // https://github.com/ant-design/ant-design/issues/15173 e.preventDefault(); }, }; return ; } render() { const { className, prefixCls, inputPrefixCls, size, visibilityToggle, ...restProps } = this.props; const suffixIcon = visibilityToggle && this.getIcon(); const inputClassName = classNames(prefixCls, className, { [`${prefixCls}-${size}`]: !!size, }); return ( ); } }