Add hooks version

This commit is contained in:
le-mahf
2019-02-06 07:58:09 +00:00
committed by GitHub
parent 285b5b9623
commit c9d1d1a898

View File

@ -2,6 +2,8 @@
Renders a password input field with a reveal button.
#### Class version
Initially set `state.shown` to `false` to ensure that the password is not shown by default.
Create a method, `toggleShown`, which uses `Component.prototype.setState` to change the input's state from shown to hidden and vice versa, bind it to the component's context.
In the`render()` method, use a`<div>` to wrap both the`<input>` and the `<button>` element that toggles the type of the input field.
@ -36,9 +38,40 @@ class PasswordRevealer extends React.Component {
```
```jsx
ReactDOM.render(<PasswordRevealer />, document.getElementById('root'));
ReactDOM.render(
<PasswordRevealer />,
document.getElementById('root')
);
```
#### Function version
Initialize a state variable `shown` to denote whether or not the password is revealed. Set its initial value to `false`.
In the `render()` method, return a `<div>` element wrapping the `<input>` element which holds the password and the `<button>` element which reveals or hides it. Bind the button's `onClick` event to the `setShown` function that switches the state variable `shown`'s value from `true` to `false` and vice versa.
```jsx
function PasswordRevealer() {
const [shown, setShown] = useState(false);
return (
<div>
<input type={shown ? 'text' : 'password'} />
<button onClick={() => setShown(!shown)}>
{shown ? 'Hide' : 'Show'}
</button>
</div>
)
}
```
```jsx
ReactDOM.render(
<PasswordRevealer />,
document.getElementById('root')
);
```
<!--tags: input,state,class -->
<!--expertise: 0 -->