aboutsummaryrefslogtreecommitdiff
path: root/src/pages/AuthPage/SignUpForm.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/AuthPage/SignUpForm.tsx')
-rw-r--r--src/pages/AuthPage/SignUpForm.tsx84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/pages/AuthPage/SignUpForm.tsx b/src/pages/AuthPage/SignUpForm.tsx
new file mode 100644
index 0000000..29f17b1
--- /dev/null
+++ b/src/pages/AuthPage/SignUpForm.tsx
@@ -0,0 +1,84 @@
+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 {Authorization} from '../../types';
+import {get, post} from '../../requests';
+
+interface PropTypes {
+ logIn: (name: string, password: string) => Promise<boolean>;
+ setAuthorization: (authorization: { authorize: 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<PropTypes> = ({logIn,setAuthorization}) => {
+ 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: name,
+ password: password,
+ avatarUrl: '',
+ };
+ if (name && password) {
+ post(`/users`,newUser).then(response => {
+ logIn(name, password);
+ });
+ }
+ };
+
+ const handleSignIn = () => {
+ setAuthorization({authorize: 'signIn'});
+ };
+
+ 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>
+ <div className={classes.formTransfer}>
+ <div>Already have an account?</div>
+ <div onClick={handleSignIn} className={classes.transferButton}>Sign In</div>
+ </div>
+ </>
+ );
+};
+
+export default SignUpForm;