aboutsummaryrefslogtreecommitdiff
path: root/src/pages/AuthPage/SignUpForm.tsx
blob: 2769eb0cb8d1a1b5abb0420cddb9946d83fb894f (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
62
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 { post } from '../../requests';

interface PropTypes {
  logIn: (name: string, password: string) => Promise<boolean>;
}

const useStyles = makeStyles(theme => ({
  root: {
    '& > *': {
      margin: theme.spacing(1),
      width: theme.spacing(35)
    },
    display: 'flex',
    flexDirection: 'column',
    alignItems: 'center',
    textAlign: 'center'
  },
  formHeader: {
    textAlign: 'center',
    fontSize: 25
  }
}));

const SignUpForm: React.FC<PropTypes> = ({ logIn }) => {
  const classes = useStyles();
  const inputRef = useRef<HTMLInputElement>();
  const inputRefPassword = useRef<HTMLInputElement>();

  const onClick = () => {
    const name = inputRef.current?.value;
    const password = inputRefPassword.current?.value;
    const newUser = { name, password };
    if (name && password) {
      post('/users', newUser).then(() => {
        logIn(name, password);
      });
    }
  };

  return (
    <>
      <div className={classes.formHeader}>Sign Up</div>
      <form className={classes.root} noValidate autoComplete="off">
        <TextField inputRef={inputRef} id="standard-basic" label="Name" />
        <TextField id="standard-basic" label="Email" />
        <TextField
          inputRef={inputRefPassword}
          id="standard-password-input"
          label="Password"
          type="password"
        />
        <Button variant="contained" onClick={onClick}>submit</Button>
      </form>
    </>
  );
};

export default SignUpForm;