mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3c89ef8cc3
* fix: terms & condition alignment * fix: onboarding page scrolling * fix: create workspace name clear * fix: setup profile sidebar workspace name * fix: invite team screen button text * fix: inner div min height * fix: allow single invite also in invite member * fix: UI clipping in invite members * fix: signin screen scroll * fix: sidebar notification icon * fix: sidebar project name & icon * fix: user detail bottom image alignment * fix: step indicator in invite member * fix: try different account modal state * fix: setup profile remove image * fix: workspace slug clear * fix: invite member UI & focus * fix: step indicator size * fix: inner div placement * fix: invite member validation logic * fix: cuurent user data persistency * fix: sidebar animation colors * feat: signup & resend * fix: sign out theme persist from popover * fix: imports * chore: signin responsiveness * fix: sign-in, sign-up top padding
85 lines
2.7 KiB
TypeScript
85 lines
2.7 KiB
TypeScript
import React from "react";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
// hooks
|
|
import useUser from "hooks/use-user";
|
|
// components
|
|
import Invitations from "./invitations";
|
|
import DummySidebar from "components/account/sidebar";
|
|
import OnboardingStepIndicator from "components/account/step-indicator";
|
|
import { Workspace } from "./workspace";
|
|
// types
|
|
import { IWorkspace, TOnboardingSteps } from "types";
|
|
|
|
type Props = {
|
|
finishOnboarding: () => Promise<void>;
|
|
stepChange: (steps: Partial<TOnboardingSteps>) => Promise<void>;
|
|
setTryDiffAccount: () => void;
|
|
};
|
|
|
|
export const JoinWorkspaces: React.FC<Props> = ({ stepChange, setTryDiffAccount }) => {
|
|
const { user } = useUser();
|
|
const {
|
|
handleSubmit,
|
|
control,
|
|
setValue,
|
|
watch,
|
|
formState: { errors, isSubmitting, isValid },
|
|
} = useForm<IWorkspace>({
|
|
defaultValues: {
|
|
name: "",
|
|
slug: `${window.location.host}/`,
|
|
},
|
|
mode: "onChange",
|
|
});
|
|
|
|
const handleNextStep = async () => {
|
|
if (!user) return;
|
|
await stepChange({ workspace_join: true, workspace_create: true });
|
|
};
|
|
|
|
return (
|
|
<div className="flex w-full">
|
|
<div className="h-full fixed hidden lg:block w-1/5 max-w-[320px]">
|
|
<Controller
|
|
control={control}
|
|
name="name"
|
|
render={({ field: { value } }) => (
|
|
<DummySidebar
|
|
watch={watch}
|
|
setValue={setValue}
|
|
control={control}
|
|
showProject={false}
|
|
workspaceName={value.length > 0 ? value : "New Workspace"}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
<div className="lg:w-2/3 w-full ml-auto ">
|
|
<div className="w-full lg:w-4/5 px-7 lg:px-0 my-16 mx-auto">
|
|
<div className="flex justify-between items-center">
|
|
<p className="font-semibold text-onboarding-text-200 text-xl sm:text-2xl">What will your workspace be?</p>
|
|
<OnboardingStepIndicator step={1} />
|
|
</div>
|
|
<Workspace
|
|
stepChange={stepChange}
|
|
user={user}
|
|
control={control}
|
|
handleSubmit={handleSubmit}
|
|
setValue={setValue}
|
|
errors={errors}
|
|
isSubmitting={isSubmitting}
|
|
/>
|
|
<div className="flex md:w-1/2 items-center my-8">
|
|
<hr className="border-onboarding-border-100 w-full" />
|
|
<p className="text-center text-sm text-custom-text-400 mx-3 flex-shrink-0">Or</p>
|
|
<hr className="border-onboarding-border-100 w-full" />
|
|
</div>
|
|
<div className="w-full">
|
|
<Invitations setTryDiffAccount={setTryDiffAccount} handleNextStep={handleNextStep} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|