diff options
author | ilyayudovin <46264063+ilyayudovin@users.noreply.github.com> | 2020-06-14 15:58:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-14 15:58:02 +0300 |
commit | 99b44bc80fa3228131a05fccb13f75ff8a46b116 (patch) | |
tree | a77bcec54244156844e245494f1ce434a12fff34 /src/Form/SignInForm.tsx | |
parent | 57a2ff3cfa7eae111bb8f46447198586c47425fb (diff) | |
parent | 0308460d896966a9fe5e510926f44bac112923bb (diff) | |
download | which-ui-99b44bc80fa3228131a05fccb13f75ff8a46b116.tar.gz |
Merge pull request #31 from ilyayudovin/signIn
add sing in form
Diffstat (limited to 'src/Form/SignInForm.tsx')
-rw-r--r-- | src/Form/SignInForm.tsx | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/Form/SignInForm.tsx b/src/Form/SignInForm.tsx new file mode 100644 index 0000000..efe85ed --- /dev/null +++ b/src/Form/SignInForm.tsx @@ -0,0 +1,54 @@ +import React, { useRef } from 'react'; +import { makeStyles } from '@material-ui/core/styles'; +import TextField from '@material-ui/core/TextField'; +import Button from '@material-ui/core/Button'; +import { User } from '../types'; +import { get } from '../requests'; + +interface PropTypes { + setUser: (newUser: User) => void; +} + +const useStyles = makeStyles(theme => ({ + root: { + '& > *': { + margin: theme.spacing(1), + width: '25ch' + }, + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + textAlign: 'center' + } +})); + +const SignInForm: React.FC<PropTypes> = ({ setUser }) => { + const classes = useStyles(); + const inputRef = useRef<HTMLInputElement>(); + + const onClick = () => { + const username = inputRef.current?.value; + if (username) { + get(`/users?name=${username}`).then(response => { + const user = response.data[0]; + setUser(user); + localStorage.setItem('userId', user._id); + }); + } + }; + + return ( + <form className={classes.root} noValidate autoComplete="off"> + <h1>Sign In</h1> + <TextField inputRef={inputRef} id="standard-basic" label="Login" /> + <TextField + id="standard-password-input" + label="Password" + type="password" + /> + <Button variant="contained" onClick={onClick}>submit</Button> + </form> + ); +}; + +export default SignInForm; |