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; setAuth: (auth: string) => void ; } const useStyles = makeStyles(theme => ({ root: { '& > *': { margin: theme.spacing(1), width: '25ch' }, display: 'flex', flexDirection: 'column', alignItems: 'center', textAlign: 'center' }, formTransfer: { display: 'flex', justifyContent: 'center' }, transferButton: { marginLeft: 10, color: 'green' }, formHeader: { textAlign: 'center', fontSize: 25 } })); const SignUpForm: React.FC = ({ logIn, setAuth }) => { const classes = useStyles(); const inputRef = useRef(); const inputRefPassword = useRef(); const onClick = () => { const name = inputRef.current?.value; const password = inputRefPassword.current?.value; const newUser = { name: name, password: password, avatarUrl: '' }; if (name && password) { post('/users', newUser).then(() => { logIn(name, password); }); } }; const handleSignIn = () => { setAuth( 'signIn'); }; return ( <>
Sign Up
Already have an account?
Sign In
); }; export default SignUpForm;