2024-05-08 17:31:20 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
import { FC, useEffect, useMemo, useState } from "react";
|
|
|
|
import { useSearchParams } from "next/navigation";
|
2024-05-14 15:24:49 +00:00
|
|
|
// icons
|
|
|
|
import { Eye, EyeOff } from "lucide-react";
|
2024-05-08 17:31:20 +00:00
|
|
|
// ui
|
|
|
|
import { Button, Checkbox, Input, Spinner } from "@plane/ui";
|
|
|
|
// components
|
2024-05-14 15:24:49 +00:00
|
|
|
import { Banner, PasswordStrengthMeter } from "@/components/common";
|
2024-05-08 17:31:20 +00:00
|
|
|
// helpers
|
|
|
|
import { API_BASE_URL } from "@/helpers/common.helper";
|
|
|
|
import { getPasswordStrength } from "@/helpers/password.helper";
|
2024-05-14 15:24:49 +00:00
|
|
|
// services
|
|
|
|
import { AuthService } from "@/services/auth.service";
|
2024-05-08 17:31:20 +00:00
|
|
|
|
|
|
|
// service initialization
|
|
|
|
const authService = new AuthService();
|
|
|
|
|
|
|
|
// error codes
|
|
|
|
enum EErrorCodes {
|
|
|
|
INSTANCE_NOT_CONFIGURED = "INSTANCE_NOT_CONFIGURED",
|
|
|
|
ADMIN_ALREADY_EXIST = "ADMIN_ALREADY_EXIST",
|
|
|
|
REQUIRED_EMAIL_PASSWORD_FIRST_NAME = "REQUIRED_EMAIL_PASSWORD_FIRST_NAME",
|
|
|
|
INVALID_EMAIL = "INVALID_EMAIL",
|
|
|
|
INVALID_PASSWORD = "INVALID_PASSWORD",
|
|
|
|
USER_ALREADY_EXISTS = "USER_ALREADY_EXISTS",
|
|
|
|
}
|
|
|
|
|
|
|
|
type TError = {
|
|
|
|
type: EErrorCodes | undefined;
|
|
|
|
message: string | undefined;
|
|
|
|
};
|
|
|
|
|
|
|
|
// form data
|
|
|
|
type TFormData = {
|
|
|
|
first_name: string;
|
|
|
|
last_name: string;
|
|
|
|
email: string;
|
|
|
|
company_name: string;
|
|
|
|
password: string;
|
|
|
|
confirm_password?: string;
|
|
|
|
is_telemetry_enabled: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
const defaultFromData: TFormData = {
|
|
|
|
first_name: "",
|
|
|
|
last_name: "",
|
|
|
|
email: "",
|
|
|
|
company_name: "",
|
|
|
|
password: "",
|
|
|
|
is_telemetry_enabled: true,
|
|
|
|
};
|
|
|
|
|
2024-05-15 12:12:08 +00:00
|
|
|
export const InstanceSetupForm: FC = (props) => {
|
2024-05-08 17:31:20 +00:00
|
|
|
const {} = props;
|
|
|
|
// search params
|
|
|
|
const searchParams = useSearchParams();
|
|
|
|
const firstNameParam = searchParams.get("first_name") || undefined;
|
|
|
|
const lastNameParam = searchParams.get("last_name") || undefined;
|
|
|
|
const companyParam = searchParams.get("company") || undefined;
|
|
|
|
const emailParam = searchParams.get("email") || undefined;
|
|
|
|
const isTelemetryEnabledParam = (searchParams.get("is_telemetry_enabled") === "True" ? true : false) || true;
|
|
|
|
const errorCode = searchParams.get("error_code") || undefined;
|
|
|
|
const errorMessage = searchParams.get("error_message") || undefined;
|
|
|
|
// state
|
|
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
|
|
const [csrfToken, setCsrfToken] = useState<string | undefined>(undefined);
|
|
|
|
const [formData, setFormData] = useState<TFormData>(defaultFromData);
|
|
|
|
const [isPasswordInputFocused, setIsPasswordInputFocused] = useState(false);
|
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
|
|
|
|
const handleFormChange = (key: keyof TFormData, value: string | boolean) =>
|
|
|
|
setFormData((prev) => ({ ...prev, [key]: value }));
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (csrfToken === undefined)
|
|
|
|
authService.requestCSRFToken().then((data) => data?.csrf_token && setCsrfToken(data.csrf_token));
|
|
|
|
}, [csrfToken]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (firstNameParam) setFormData((prev) => ({ ...prev, first_name: firstNameParam }));
|
|
|
|
if (lastNameParam) setFormData((prev) => ({ ...prev, last_name: lastNameParam }));
|
|
|
|
if (companyParam) setFormData((prev) => ({ ...prev, company_name: companyParam }));
|
|
|
|
if (emailParam) setFormData((prev) => ({ ...prev, email: emailParam }));
|
|
|
|
if (isTelemetryEnabledParam) setFormData((prev) => ({ ...prev, is_telemetry_enabled: isTelemetryEnabledParam }));
|
|
|
|
}, [firstNameParam, lastNameParam, companyParam, emailParam, isTelemetryEnabledParam]);
|
|
|
|
|
|
|
|
// derived values
|
|
|
|
const errorData: TError = useMemo(() => {
|
|
|
|
if (errorCode && errorMessage) {
|
|
|
|
switch (errorCode) {
|
|
|
|
case EErrorCodes.INSTANCE_NOT_CONFIGURED:
|
|
|
|
return { type: EErrorCodes.INSTANCE_NOT_CONFIGURED, message: errorMessage };
|
|
|
|
case EErrorCodes.ADMIN_ALREADY_EXIST:
|
|
|
|
return { type: EErrorCodes.ADMIN_ALREADY_EXIST, message: errorMessage };
|
|
|
|
case EErrorCodes.REQUIRED_EMAIL_PASSWORD_FIRST_NAME:
|
|
|
|
return { type: EErrorCodes.REQUIRED_EMAIL_PASSWORD_FIRST_NAME, message: errorMessage };
|
|
|
|
case EErrorCodes.INVALID_EMAIL:
|
|
|
|
return { type: EErrorCodes.INVALID_EMAIL, message: errorMessage };
|
|
|
|
case EErrorCodes.INVALID_PASSWORD:
|
|
|
|
return { type: EErrorCodes.INVALID_PASSWORD, message: errorMessage };
|
|
|
|
case EErrorCodes.USER_ALREADY_EXISTS:
|
|
|
|
return { type: EErrorCodes.USER_ALREADY_EXISTS, message: errorMessage };
|
|
|
|
default:
|
|
|
|
return { type: undefined, message: undefined };
|
|
|
|
}
|
|
|
|
} else return { type: undefined, message: undefined };
|
|
|
|
}, [errorCode, errorMessage]);
|
|
|
|
|
|
|
|
const isButtonDisabled = useMemo(
|
|
|
|
() =>
|
|
|
|
!isSubmitting &&
|
|
|
|
formData.first_name &&
|
|
|
|
formData.email &&
|
|
|
|
formData.password &&
|
|
|
|
getPasswordStrength(formData.password) >= 3 &&
|
|
|
|
formData.password === formData.confirm_password
|
|
|
|
? false
|
|
|
|
: true,
|
|
|
|
[formData.confirm_password, formData.email, formData.first_name, formData.password, isSubmitting]
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
2024-05-15 12:12:08 +00:00
|
|
|
<div className="max-w-lg px-10 lg:max-w-md lg:px-5">
|
2024-05-08 17:31:20 +00:00
|
|
|
<div className="relative flex flex-col space-y-6">
|
|
|
|
<div className="text-center space-y-1">
|
|
|
|
<h3 className="flex gap-4 justify-center text-3xl font-bold text-onboarding-text-100">
|
|
|
|
Setup your Plane Instance
|
|
|
|
</h3>
|
|
|
|
<p className="font-medium text-onboarding-text-400">
|
|
|
|
Post setup you will be able to manage this Plane instance.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{errorData.type &&
|
|
|
|
errorData?.message &&
|
|
|
|
![EErrorCodes.INVALID_EMAIL, EErrorCodes.INVALID_PASSWORD].includes(errorData.type) && (
|
|
|
|
<Banner type="error" message={errorData?.message} />
|
|
|
|
)}
|
|
|
|
|
|
|
|
<form
|
|
|
|
className="space-y-4"
|
|
|
|
method="POST"
|
|
|
|
action={`${API_BASE_URL}/api/instances/admins/sign-up/`}
|
|
|
|
onSubmit={() => setIsSubmitting(true)}
|
|
|
|
onError={() => setIsSubmitting(false)}
|
|
|
|
>
|
|
|
|
<input type="hidden" name="csrfmiddlewaretoken" value={csrfToken} />
|
|
|
|
|
|
|
|
<div className="flex items-center gap-4">
|
|
|
|
<div className="w-full space-y-1">
|
|
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="first_name">
|
|
|
|
First name <span className="text-red-500">*</span>
|
|
|
|
</label>
|
|
|
|
<Input
|
2024-05-14 15:24:49 +00:00
|
|
|
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 placeholder:text-onboarding-text-400"
|
2024-05-08 17:31:20 +00:00
|
|
|
id="first_name"
|
|
|
|
name="first_name"
|
|
|
|
type="text"
|
|
|
|
inputSize="md"
|
|
|
|
placeholder="Wilber"
|
|
|
|
value={formData.first_name}
|
|
|
|
onChange={(e) => handleFormChange("first_name", e.target.value)}
|
|
|
|
autoFocus
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="w-full space-y-1">
|
|
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="last_name">
|
2024-05-14 15:24:49 +00:00
|
|
|
Last name <span className="text-red-500">*</span>
|
2024-05-08 17:31:20 +00:00
|
|
|
</label>
|
|
|
|
<Input
|
2024-05-14 15:24:49 +00:00
|
|
|
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 placeholder:text-onboarding-text-400"
|
2024-05-08 17:31:20 +00:00
|
|
|
id="last_name"
|
|
|
|
name="last_name"
|
|
|
|
type="text"
|
|
|
|
inputSize="md"
|
|
|
|
placeholder="Wright"
|
|
|
|
value={formData.last_name}
|
|
|
|
onChange={(e) => handleFormChange("last_name", e.target.value)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="w-full space-y-1">
|
|
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="email">
|
|
|
|
Email <span className="text-red-500">*</span>
|
|
|
|
</label>
|
|
|
|
<Input
|
2024-05-14 15:24:49 +00:00
|
|
|
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 placeholder:text-onboarding-text-400"
|
2024-05-08 17:31:20 +00:00
|
|
|
id="email"
|
|
|
|
name="email"
|
|
|
|
type="email"
|
|
|
|
inputSize="md"
|
|
|
|
placeholder="name@company.com"
|
|
|
|
value={formData.email}
|
|
|
|
onChange={(e) => handleFormChange("email", e.target.value)}
|
|
|
|
hasError={errorData.type && errorData.type === EErrorCodes.INVALID_EMAIL ? true : false}
|
|
|
|
/>
|
|
|
|
{errorData.type && errorData.type === EErrorCodes.INVALID_EMAIL && errorData.message && (
|
|
|
|
<p className="px-1 text-xs text-red-500">{errorData.message}</p>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="w-full space-y-1">
|
|
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="company_name">
|
2024-05-14 15:24:49 +00:00
|
|
|
Company name <span className="text-red-500">*</span>
|
2024-05-08 17:31:20 +00:00
|
|
|
</label>
|
|
|
|
<Input
|
2024-05-14 15:24:49 +00:00
|
|
|
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 placeholder:text-onboarding-text-400"
|
2024-05-08 17:31:20 +00:00
|
|
|
id="company_name"
|
|
|
|
name="company_name"
|
|
|
|
type="text"
|
|
|
|
inputSize="md"
|
|
|
|
placeholder="Company name"
|
|
|
|
value={formData.company_name}
|
|
|
|
onChange={(e) => handleFormChange("company_name", e.target.value)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="w-full space-y-1">
|
|
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="password">
|
|
|
|
Set a password <span className="text-red-500">*</span>
|
|
|
|
</label>
|
|
|
|
<div className="relative">
|
|
|
|
<Input
|
2024-05-14 15:24:49 +00:00
|
|
|
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 placeholder:text-onboarding-text-400"
|
2024-05-08 17:31:20 +00:00
|
|
|
id="password"
|
|
|
|
name="password"
|
|
|
|
type={showPassword ? "text" : "password"}
|
|
|
|
inputSize="md"
|
|
|
|
placeholder="New password..."
|
|
|
|
value={formData.password}
|
|
|
|
onChange={(e) => handleFormChange("password", e.target.value)}
|
|
|
|
hasError={errorData.type && errorData.type === EErrorCodes.INVALID_PASSWORD ? true : false}
|
|
|
|
onFocus={() => setIsPasswordInputFocused(true)}
|
|
|
|
onBlur={() => setIsPasswordInputFocused(false)}
|
|
|
|
/>
|
|
|
|
{showPassword ? (
|
|
|
|
<button
|
|
|
|
type="button"
|
2024-05-14 15:24:49 +00:00
|
|
|
tabIndex={-1}
|
2024-05-08 17:31:20 +00:00
|
|
|
className="absolute right-3 top-3.5 flex items-center justify-center text-custom-text-400"
|
|
|
|
onClick={() => setShowPassword(false)}
|
|
|
|
>
|
|
|
|
<EyeOff className="h-4 w-4" />
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button
|
|
|
|
type="button"
|
2024-05-14 15:24:49 +00:00
|
|
|
tabIndex={-1}
|
2024-05-08 17:31:20 +00:00
|
|
|
className="absolute right-3 top-3.5 flex items-center justify-center text-custom-text-400"
|
|
|
|
onClick={() => setShowPassword(true)}
|
|
|
|
>
|
|
|
|
<Eye className="h-4 w-4" />
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
{errorData.type && errorData.type === EErrorCodes.INVALID_PASSWORD && errorData.message && (
|
|
|
|
<p className="px-1 text-xs text-red-500">{errorData.message}</p>
|
|
|
|
)}
|
|
|
|
{isPasswordInputFocused && <PasswordStrengthMeter password={formData.password} />}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="w-full space-y-1">
|
|
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="confirm_password">
|
2024-05-14 15:24:49 +00:00
|
|
|
Confirm password <span className="text-red-500">*</span>
|
2024-05-08 17:31:20 +00:00
|
|
|
</label>
|
|
|
|
<div className="relative">
|
|
|
|
<Input
|
|
|
|
type={showPassword ? "text" : "password"}
|
|
|
|
id="confirm_password"
|
|
|
|
name="confirm_password"
|
|
|
|
inputSize="md"
|
|
|
|
value={formData.confirm_password}
|
|
|
|
onChange={(e) => handleFormChange("confirm_password", e.target.value)}
|
|
|
|
placeholder="Confirm password"
|
|
|
|
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 placeholder:text-onboarding-text-400"
|
|
|
|
/>
|
|
|
|
{showPassword ? (
|
|
|
|
<button
|
|
|
|
type="button"
|
2024-05-14 15:24:49 +00:00
|
|
|
tabIndex={-1}
|
2024-05-08 17:31:20 +00:00
|
|
|
className="absolute right-3 top-3.5 flex items-center justify-center text-custom-text-400"
|
|
|
|
onClick={() => setShowPassword(false)}
|
|
|
|
>
|
|
|
|
<EyeOff className="h-4 w-4" />
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button
|
|
|
|
type="button"
|
2024-05-14 15:24:49 +00:00
|
|
|
tabIndex={-1}
|
2024-05-08 17:31:20 +00:00
|
|
|
className="absolute right-3 top-3.5 flex items-center justify-center text-custom-text-400"
|
|
|
|
onClick={() => setShowPassword(true)}
|
|
|
|
>
|
|
|
|
<Eye className="h-4 w-4" />
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
{!!formData.confirm_password && formData.password !== formData.confirm_password && (
|
|
|
|
<span className="text-sm text-red-500">Passwords don{"'"}t match</span>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="relative flex items-center pt-2 gap-2">
|
|
|
|
<div>
|
|
|
|
<Checkbox
|
|
|
|
id="is_telemetry_enabled"
|
|
|
|
name="is_telemetry_enabled"
|
|
|
|
value={formData.is_telemetry_enabled ? "True" : "False"}
|
|
|
|
onChange={() => handleFormChange("is_telemetry_enabled", !formData.is_telemetry_enabled)}
|
|
|
|
checked={formData.is_telemetry_enabled}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<label
|
|
|
|
className="text-sm text-onboarding-text-300 font-medium cursor-pointer"
|
|
|
|
htmlFor="is_telemetry_enabled"
|
|
|
|
>
|
|
|
|
Allow Plane to anonymously collect usage events.
|
|
|
|
</label>
|
2024-05-14 15:24:49 +00:00
|
|
|
<a
|
|
|
|
tabIndex={-1}
|
|
|
|
href="https://docs.plane.so/telemetry"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
className="text-sm font-medium text-blue-500 hover:text-blue-600"
|
|
|
|
>
|
2024-05-08 17:31:20 +00:00
|
|
|
See More
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="py-2">
|
|
|
|
<Button type="submit" size="lg" className="w-full" disabled={isButtonDisabled}>
|
|
|
|
{isSubmitting ? <Spinner height="20px" width="20px" /> : "Continue"}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|