aboutsummaryrefslogtreecommitdiff
path: root/src/Form/SignInForm.tsx
blob: 40352fe9c80036604dd2f60e419770eea5367884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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 getUserProfile = name => {
    get(`/users?name=${name}`).then(response => {
      setUser(response.data[0]);
    });
  };

  const onClick = () => {
    const value = inputRef.current?.value;
    if (value) {
      localStorage.setItem('user', value);
      getUserProfile(value);
    }
  };

  if (localStorage.getItem('user') !== null) {
    getUserProfile(localStorage.getItem('user'));
  }

  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;