180 lines
5.2 KiB
TypeScript
180 lines
5.2 KiB
TypeScript
|
|
import React, { useRef } from "react";
|
||
|
|
import styled from "styled-components";
|
||
|
|
import { connect } from "react-redux";
|
||
|
|
import DataCollectionForm from "./DataCollectionForm";
|
||
|
|
import DetailsForm from "./DetailsForm";
|
||
|
|
import NewsletterForm from "./NewsletterForm";
|
||
|
|
import AppsmithLogo from "assets/images/appsmith_logo.png";
|
||
|
|
import {
|
||
|
|
WELCOME_FORM_USECASE_FIELD_NAME,
|
||
|
|
WELCOME_FORM_EMAIL_FIELD_NAME,
|
||
|
|
WELCOME_FORM_NAME,
|
||
|
|
WELCOME_FORM_NAME_FIELD_NAME,
|
||
|
|
WELCOME_FORM_PASSWORD_FIELD_NAME,
|
||
|
|
WELCOME_FORM_ROLE_FIELD_NAME,
|
||
|
|
WELCOME_FORM_ROLE_NAME_FIELD_NAME,
|
||
|
|
WELCOME_FORM_VERIFY_PASSWORD_FIELD_NAME,
|
||
|
|
} from "constants/forms";
|
||
|
|
import { formValueSelector, InjectedFormProps, reduxForm } from "redux-form";
|
||
|
|
import { isEmail, isStrongPassword } from "utils/formhelpers";
|
||
|
|
import { AppState } from "reducers";
|
||
|
|
import { SUPER_USER_SUBMIT_PATH } from "constants/ApiConstants";
|
||
|
|
import { useState } from "react";
|
||
|
|
|
||
|
|
const PageWrapper = styled.div`
|
||
|
|
width: 100%;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
`;
|
||
|
|
|
||
|
|
const SetupFormContainer = styled.div`
|
||
|
|
width: 566px;
|
||
|
|
padding-top: 120px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
const SetupStep = styled.div<{ active: boolean }>`
|
||
|
|
display: ${(props) => (props.active ? "block" : "none")};
|
||
|
|
`;
|
||
|
|
|
||
|
|
const LogoContainer = styled.div`
|
||
|
|
padding-left: ${(props) => props.theme.spaces[17] * 2}px;
|
||
|
|
padding-top: ${(props) => props.theme.spaces[12] * 2}px;
|
||
|
|
transform: translate(-11px, 0);
|
||
|
|
background-color: ${(props) => props.theme.colors.homepageBackground};
|
||
|
|
position: fixed;
|
||
|
|
width: 566px;
|
||
|
|
height: 112px;
|
||
|
|
z-index: 1;
|
||
|
|
top: 0;
|
||
|
|
`;
|
||
|
|
|
||
|
|
const AppsmithLogoImg = styled.img`
|
||
|
|
max-width: 170px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
const SpaceFiller = styled.div`
|
||
|
|
height: 100px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export type DetailsFormValues = {
|
||
|
|
name?: string;
|
||
|
|
email?: string;
|
||
|
|
password?: string;
|
||
|
|
verifyPassword?: string;
|
||
|
|
role?: string;
|
||
|
|
useCase?: string;
|
||
|
|
role_name?: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
const validate = (values: DetailsFormValues) => {
|
||
|
|
const errors: DetailsFormValues = {};
|
||
|
|
if (!values.name) {
|
||
|
|
errors.name = "Please enter a valid Full Name";
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!values.email || !isEmail(values.email)) {
|
||
|
|
errors.email = "Please enter a valid Email address";
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!values.password || !isStrongPassword(values.password)) {
|
||
|
|
errors.password = "Please enter a strong password";
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!values.verifyPassword || values.password != values.verifyPassword) {
|
||
|
|
errors.verifyPassword = "Please reenter the password";
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!values.role) {
|
||
|
|
errors.role = "Please select a role";
|
||
|
|
}
|
||
|
|
|
||
|
|
if (values.role == "other" && !values.role_name) {
|
||
|
|
errors.role_name = "Please enter a role";
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!values.useCase) {
|
||
|
|
errors.useCase = "Please select a use case";
|
||
|
|
}
|
||
|
|
|
||
|
|
return errors;
|
||
|
|
};
|
||
|
|
|
||
|
|
function SetupForm(props: InjectedFormProps & DetailsFormValues) {
|
||
|
|
const signupURL = `/api/v1/${SUPER_USER_SUBMIT_PATH}`;
|
||
|
|
const [showDetailsForm, setShowDetailsForm] = useState(true);
|
||
|
|
const formRef = useRef<HTMLFormElement>(null);
|
||
|
|
const onSubmit = () => {
|
||
|
|
const form: HTMLFormElement = formRef.current as HTMLFormElement;
|
||
|
|
const verifyPassword: HTMLInputElement = document.querySelector(
|
||
|
|
`[name="verifyPassword"]`,
|
||
|
|
) as HTMLInputElement;
|
||
|
|
const roleInput = document.createElement("input");
|
||
|
|
verifyPassword.removeAttribute("name");
|
||
|
|
roleInput.type = "text";
|
||
|
|
roleInput.name = "role";
|
||
|
|
roleInput.style.display = "none";
|
||
|
|
if (props.role != "other") {
|
||
|
|
roleInput.value = props.role as string;
|
||
|
|
} else {
|
||
|
|
roleInput.value = props.role_name as string;
|
||
|
|
const roleNameInput: HTMLInputElement = document.querySelector(
|
||
|
|
`[name="role_name"]`,
|
||
|
|
) as HTMLInputElement;
|
||
|
|
if (roleNameInput) roleNameInput.remove();
|
||
|
|
}
|
||
|
|
form.appendChild(roleInput);
|
||
|
|
const useCaseInput = document.createElement("input");
|
||
|
|
useCaseInput.type = "text";
|
||
|
|
useCaseInput.name = "useCase";
|
||
|
|
useCaseInput.value = props.useCase as string;
|
||
|
|
useCaseInput.style.display = "none";
|
||
|
|
form.appendChild(useCaseInput);
|
||
|
|
return true;
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<PageWrapper>
|
||
|
|
<SetupFormContainer>
|
||
|
|
<LogoContainer>
|
||
|
|
<AppsmithLogoImg alt="Appsmith logo" src={AppsmithLogo} />
|
||
|
|
</LogoContainer>
|
||
|
|
<form
|
||
|
|
action={signupURL}
|
||
|
|
id="super-user-form"
|
||
|
|
method="POST"
|
||
|
|
onSubmit={onSubmit}
|
||
|
|
ref={formRef}
|
||
|
|
>
|
||
|
|
<SetupStep active={showDetailsForm}>
|
||
|
|
<DetailsForm {...props} onNext={() => setShowDetailsForm(false)} />
|
||
|
|
</SetupStep>
|
||
|
|
<SetupStep active={!showDetailsForm}>
|
||
|
|
<DataCollectionForm />
|
||
|
|
<NewsletterForm />
|
||
|
|
</SetupStep>
|
||
|
|
</form>
|
||
|
|
<SpaceFiller />
|
||
|
|
</SetupFormContainer>
|
||
|
|
</PageWrapper>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
const selector = formValueSelector(WELCOME_FORM_NAME);
|
||
|
|
export default connect((state: AppState) => {
|
||
|
|
return {
|
||
|
|
name: selector(state, WELCOME_FORM_NAME_FIELD_NAME),
|
||
|
|
email: selector(state, WELCOME_FORM_EMAIL_FIELD_NAME),
|
||
|
|
password: selector(state, WELCOME_FORM_PASSWORD_FIELD_NAME),
|
||
|
|
verify_password: selector(state, WELCOME_FORM_VERIFY_PASSWORD_FIELD_NAME),
|
||
|
|
role: selector(state, WELCOME_FORM_ROLE_FIELD_NAME),
|
||
|
|
role_name: selector(state, WELCOME_FORM_ROLE_NAME_FIELD_NAME),
|
||
|
|
useCase: selector(state, WELCOME_FORM_USECASE_FIELD_NAME),
|
||
|
|
};
|
||
|
|
}, null)(
|
||
|
|
reduxForm<DetailsFormValues>({
|
||
|
|
validate,
|
||
|
|
form: WELCOME_FORM_NAME,
|
||
|
|
touchOnBlur: true,
|
||
|
|
})(SetupForm),
|
||
|
|
);
|