diff options
| author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-06-14 17:28:24 +0300 |
|---|---|---|
| committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-06-14 17:28:24 +0300 |
| commit | 657c340ea9e244b7f1041bac5be240d428d758e5 (patch) | |
| tree | 890978dd6a98b1dc4a582935d37c79528ed4c524 /src/Pages/ProfilePage/Form | |
| parent | 3c3223c3b41411639ff19ebd58df569cf17999ca (diff) | |
| download | which-ui-657c340ea9e244b7f1041bac5be240d428d758e5.tar.gz | |
feat: add profilePage to render ProfileInfo and SignInForm
Diffstat (limited to 'src/Pages/ProfilePage/Form')
| -rw-r--r-- | src/Pages/ProfilePage/Form/SignInForm.tsx | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/Pages/ProfilePage/Form/SignInForm.tsx b/src/Pages/ProfilePage/Form/SignInForm.tsx deleted file mode 100644 index bfdc283..0000000 --- a/src/Pages/ProfilePage/Form/SignInForm.tsx +++ /dev/null @@ -1,54 +0,0 @@ -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; |