mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-01 19:03:19 +02:00
140 lines
4.8 KiB
TypeScript
140 lines
4.8 KiB
TypeScript
import React, { useState } from 'react'
|
|
import axios from 'axios'
|
|
import { FormattedMessage, useIntl } from 'react-intl'
|
|
import { ReCaptcha } from 'react-recaptcha-v3'
|
|
import { useHistory } from "react-router-dom";
|
|
|
|
|
|
|
|
import Header from './Header';
|
|
import Footer from './Footer';
|
|
|
|
const css = require('../css/registration.css');
|
|
|
|
interface ErrorMessageDialogProps {
|
|
message: string
|
|
}
|
|
|
|
const ErrorMessageDialog = (props: ErrorMessageDialogProps) => {
|
|
let result;
|
|
|
|
const message = props.message;
|
|
if (message) {
|
|
result = <p className='form-error-dialog'>{message}</p>
|
|
} else {
|
|
result = <span></span>
|
|
}
|
|
return result;
|
|
}
|
|
|
|
type RegistrationBody = {
|
|
email: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
password: string;
|
|
recaptcha: string;
|
|
}
|
|
const RegistrationForm = () => {
|
|
const [email, setEmail] = useState("");
|
|
const [lastName, setLastname] = useState("")
|
|
const [firstname, setFirstname] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [recaptcha, setRecaptcha] = useState(undefined);
|
|
const [errorMsg, setErrorMsg] = useState(undefined);
|
|
const history = useHistory();
|
|
const intl = useIntl();
|
|
|
|
const handleSubmit = async (event: React.FormEvent) => {
|
|
event.preventDefault();
|
|
|
|
// @Todo: Movo to a type ...
|
|
const payload = JSON.stringify(
|
|
{
|
|
email: email,
|
|
firstName: firstname,
|
|
lastName: lastName,
|
|
password: password,
|
|
recaptcha: recaptcha
|
|
}
|
|
);
|
|
|
|
await axios.post("http://localhost:8080/service/user",
|
|
payload,
|
|
{ headers: { 'Content-Type': 'application/json' } }
|
|
).then(response => {
|
|
// All was ok, let's sent to success page ...
|
|
history.push("/c/user/registrationSuccess");
|
|
}).catch(error => {
|
|
// Handle error ...
|
|
const data = error.response;
|
|
let errorMsg = intl.formatMessage({ id: "registration.unexpected", defaultMessage: "Unexpected error. Please, try latter." })
|
|
if (data != null) {
|
|
let errorMsg = Object.values(data.fieldErrors)[0] as string;
|
|
}
|
|
setErrorMsg(errorMsg);
|
|
});
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
<div className="wrapper">
|
|
<div className="content">
|
|
<h1><FormattedMessage id="registration.become" defaultMessage="Become a member of our comunity" /></h1>
|
|
<p><FormattedMessage id="registration.signup" defaultMessage="Signing up is free and just take a moment " /></p>
|
|
|
|
<ErrorMessageDialog message={errorMsg} />
|
|
|
|
<form action="/" method="POST" onSubmit={e => handleSubmit(e)}>
|
|
<input type="email" name="email" onChange={e => setEmail(e.target.value)} placeholder={intl.formatMessage({ id: "registration.email", defaultMessage: "Email" })} required={true} autoComplete="email" />
|
|
<input type="text" name="firstname" onChange={e => setFirstname(e.target.value)} placeholder={intl.formatMessage({ id: "registration.firstname", defaultMessage: "First Name" })} required={true} autoComplete="given-name" />
|
|
<input type="text" name="lastname" onChange={e => setLastname(e.target.value)} placeholder={intl.formatMessage({ id: "registration.lastname", defaultMessage: "Last Name" })} required={true} autoComplete="family-name" />
|
|
<input type="password" name="password" onChange={e => setPassword(e.target.value)} placeholder={intl.formatMessage({ id: "registration.password", defaultMessage: "Password" })} required={true} autoComplete="new-password" />
|
|
|
|
<div>
|
|
<ReCaptcha
|
|
sitekey="6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI"
|
|
verifyCallback={setRecaptcha}
|
|
/>
|
|
</div>
|
|
<p>
|
|
<FormattedMessage id="registration.termandconditions" defaultMessage="Terms of Service: Please check the WiseMapping Account information you've entered above, and review the Terms of Service here. By clicking on 'Register' below you are agreeing to the Terms of Service above and the Privacy Policy" />
|
|
</p>
|
|
|
|
<input type="submit" value={intl.formatMessage({ id: "registration.register", defaultMessage: "Register" })} />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
}
|
|
|
|
const RegistationFormPage = (props: any) => {
|
|
return (
|
|
<div>
|
|
<Header type='only-signin' />
|
|
<RegistrationForm />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const RegistrationSuccessPage = (props: any) => {
|
|
return (
|
|
<div>
|
|
<Header type='only-signup' />
|
|
<div className="wrapper">
|
|
<div className="content">
|
|
<h1><FormattedMessage id="registration.success.title" defaultMessage="Your account has been created successfully" /></h1>
|
|
<p><FormattedMessage id="registration.success.desc" defaultMessage="Your account has been created successfully, click to sign in and start enjoying WiseMapping." /></p>
|
|
</div>
|
|
</div>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export { RegistationFormPage, RegistrationSuccessPage };
|
|
|
|
|