mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
32 lines
853 B
TypeScript
32 lines
853 B
TypeScript
import { useState, useCallback } from 'react';
|
|
import StyledInput from '../style/StyledInput';
|
|
|
|
export interface ChangeEvent {
|
|
value: string;
|
|
}
|
|
|
|
type ChangeEventHandler = (event: ChangeEvent)=> void;
|
|
|
|
interface Props {
|
|
value: string;
|
|
onChange: ChangeEventHandler;
|
|
}
|
|
|
|
export const PasswordInput = (props: Props) => {
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
|
|
const inputType = showPassword ? 'text' : 'password';
|
|
const icon = showPassword ? 'far fa-eye-slash' : 'far fa-eye';
|
|
|
|
const onShowPassword = useCallback(() => {
|
|
setShowPassword(current => !current);
|
|
}, []);
|
|
|
|
return (
|
|
<div className="password-input">
|
|
<StyledInput className="field" type={inputType} value={props.value} onChange={props.onChange}/>
|
|
<button onClick={onShowPassword} className="showpasswordbutton"><i className={icon}></i></button>
|
|
</div>
|
|
);
|
|
};
|