mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
76cc634a46
* feat: link option in remirror * fix: removed link import from remirror toolbar * refactor: constants folder * refactor: layouts folder structure * fix: issue view context * feat: cycles and modules toggle in settings
298 lines
11 KiB
TypeScript
298 lines
11 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
|
|
import Image from "next/image";
|
|
|
|
import useSWR from "swr";
|
|
|
|
import { Controller, useForm } from "react-hook-form";
|
|
|
|
import { Tab } from "@headlessui/react";
|
|
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// services
|
|
import workspaceService from "services/workspace.service";
|
|
// ui
|
|
import { CustomSelect, Input } from "components/ui";
|
|
// types
|
|
import { IWorkspace, IWorkspaceMemberInvitation } from "types";
|
|
// fetch-keys
|
|
import { USER_WORKSPACE_INVITATIONS } from "constants/fetch-keys";
|
|
// constants
|
|
import { COMPANY_SIZE } from "constants/workspace";
|
|
|
|
type Props = {
|
|
setStep: React.Dispatch<React.SetStateAction<number>>;
|
|
setWorkspace: React.Dispatch<React.SetStateAction<any>>;
|
|
};
|
|
|
|
const defaultValues: Partial<IWorkspace> = {
|
|
name: "",
|
|
slug: "",
|
|
company_size: null,
|
|
};
|
|
|
|
const Workspace: React.FC<Props> = ({ setStep, setWorkspace }) => {
|
|
const [slugError, setSlugError] = useState(false);
|
|
const [isJoiningWorkspaces, setIsJoiningWorkspaces] = useState(false);
|
|
const [invitationsRespond, setInvitationsRespond] = useState<string[]>([]);
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { data: invitations, mutate } = useSWR(USER_WORKSPACE_INVITATIONS, () =>
|
|
workspaceService.userWorkspaceInvitations()
|
|
);
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
control,
|
|
setValue,
|
|
reset,
|
|
formState: { errors, isSubmitting },
|
|
} = useForm<IWorkspace>({ defaultValues });
|
|
|
|
const handleCreateWorkspace = async (formData: IWorkspace) => {
|
|
await workspaceService
|
|
.workspaceSlugCheck(formData.slug)
|
|
.then(async (res) => {
|
|
if (res.status === true) {
|
|
setSlugError(false);
|
|
await workspaceService
|
|
.createWorkspace(formData)
|
|
.then((res) => {
|
|
console.log(res);
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "Workspace created successfully.",
|
|
});
|
|
setWorkspace(res);
|
|
setStep(3);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
});
|
|
} else setSlugError(true);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
});
|
|
};
|
|
|
|
const handleInvitation = (
|
|
workspace_invitation: IWorkspaceMemberInvitation,
|
|
action: "accepted" | "withdraw"
|
|
) => {
|
|
if (action === "accepted") {
|
|
setInvitationsRespond((prevData) => [...prevData, workspace_invitation.id]);
|
|
} else if (action === "withdraw") {
|
|
setInvitationsRespond((prevData) =>
|
|
prevData.filter((item: string) => item !== workspace_invitation.id)
|
|
);
|
|
}
|
|
};
|
|
|
|
const submitInvitations = async () => {
|
|
if (invitationsRespond.length <= 0) return;
|
|
setIsJoiningWorkspaces(true);
|
|
await workspaceService
|
|
.joinWorkspaces({ invitations: invitationsRespond })
|
|
.then(async () => {
|
|
await mutate();
|
|
setStep(4);
|
|
setIsJoiningWorkspaces(false);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
setIsJoiningWorkspaces(false);
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
reset(defaultValues);
|
|
}, [reset]);
|
|
|
|
return (
|
|
<div className="grid w-full place-items-center">
|
|
<Tab.Group as="div" className="w-full rounded-lg bg-white p-8 md:w-2/5">
|
|
<Tab.List
|
|
as="div"
|
|
className="grid grid-cols-2 items-center gap-2 rounded-lg bg-gray-100 p-2 text-sm"
|
|
>
|
|
<Tab
|
|
className={({ selected }) =>
|
|
`rounded-lg px-6 py-2 ${selected ? "bg-gray-300" : "hover:bg-gray-200"}`
|
|
}
|
|
>
|
|
New workspace
|
|
</Tab>
|
|
<Tab
|
|
className={({ selected }) =>
|
|
`rounded-lg px-6 py-2 ${selected ? "bg-gray-300" : "hover:bg-gray-200"}`
|
|
}
|
|
>
|
|
Invited workspaces
|
|
</Tab>
|
|
</Tab.List>
|
|
<Tab.Panels>
|
|
<Tab.Panel>
|
|
<form className="mt-4 space-y-8" onSubmit={handleSubmit(handleCreateWorkspace)}>
|
|
<div className="w-full space-y-4">
|
|
<div className="grid grid-cols-1 gap-4">
|
|
<div>
|
|
<Input
|
|
label="Workspace name"
|
|
name="name"
|
|
placeholder="Enter name"
|
|
autoComplete="off"
|
|
register={register}
|
|
onChange={(e) =>
|
|
setValue("slug", e.target.value.toLocaleLowerCase().replace(/ /g, "-"))
|
|
}
|
|
validations={{
|
|
required: "Workspace name is required",
|
|
}}
|
|
error={errors.name}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<h6 className="text-gray-500">Workspace slug</h6>
|
|
<div className="flex items-center rounded-md border border-gray-300 px-3">
|
|
<span className="text-sm text-slate-600">{"https://app.plane.so/"}</span>
|
|
<Input
|
|
name="slug"
|
|
mode="trueTransparent"
|
|
autoComplete="off"
|
|
register={register}
|
|
className="block w-full rounded-md bg-transparent py-2 px-0 text-sm focus:outline-none focus:ring-0"
|
|
/>
|
|
</div>
|
|
{slugError && (
|
|
<span className="-mt-3 text-sm text-red-500">
|
|
Workspace URL is already taken!
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div>
|
|
<Controller
|
|
name="company_size"
|
|
control={control}
|
|
rules={{ required: "This field is required" }}
|
|
render={({ field: { value, onChange } }) => (
|
|
<CustomSelect
|
|
value={value}
|
|
onChange={onChange}
|
|
label={value ? value.toString() : "Select company size"}
|
|
input
|
|
>
|
|
{COMPANY_SIZE?.map((item) => (
|
|
<CustomSelect.Option key={item.value} value={item.value}>
|
|
{item.label}
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
)}
|
|
/>
|
|
{errors.company_size && (
|
|
<span className="text-sm text-red-500">{errors.company_size.message}</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mx-auto h-1/4 lg:w-1/2">
|
|
<button
|
|
type="submit"
|
|
className="w-full rounded-md bg-gray-200 px-4 py-2 text-sm"
|
|
disabled={isSubmitting}
|
|
>
|
|
{isSubmitting ? "Creating..." : "Continue"}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</Tab.Panel>
|
|
<Tab.Panel>
|
|
<div className="mt-4 space-y-8">
|
|
<div className="divide-y">
|
|
{invitations && invitations.length > 0 ? (
|
|
invitations.map((invitation) => (
|
|
<div key={invitation.id}>
|
|
<label
|
|
className={`group relative flex cursor-pointer items-start space-x-3 border-2 border-transparent py-4`}
|
|
htmlFor={invitation.id}
|
|
>
|
|
<div className="flex-shrink-0">
|
|
<span className="inline-flex h-10 w-10 items-center justify-center rounded-lg">
|
|
{invitation.workspace.logo && invitation.workspace.logo !== "" ? (
|
|
<Image
|
|
src={invitation.workspace.logo}
|
|
height="100%"
|
|
width="100%"
|
|
className="rounded"
|
|
alt={invitation.workspace.name}
|
|
/>
|
|
) : (
|
|
<span className="flex h-full w-full items-center justify-center rounded bg-gray-500 p-4 uppercase text-white">
|
|
{invitation.workspace.name.charAt(0)}
|
|
</span>
|
|
)}
|
|
</span>
|
|
</div>
|
|
<div className="min-w-0 flex-1">
|
|
<div className="text-sm font-medium text-gray-900">
|
|
{invitation.workspace.name}
|
|
</div>
|
|
<p className="text-sm text-gray-500">
|
|
Invited by {invitation.workspace.owner.first_name}
|
|
</p>
|
|
</div>
|
|
<div className="flex-shrink-0 self-center">
|
|
<input
|
|
id={invitation.id}
|
|
aria-describedby="workspaces"
|
|
name={invitation.id}
|
|
checked={invitationsRespond.includes(invitation.id)}
|
|
value={invitation.workspace.name}
|
|
onChange={(e) => {
|
|
handleInvitation(
|
|
invitation,
|
|
invitationsRespond.includes(invitation.id) ? "withdraw" : "accepted"
|
|
);
|
|
}}
|
|
type="checkbox"
|
|
className="h-4 w-4 rounded border-gray-300 text-theme focus:ring-indigo-500"
|
|
/>
|
|
</div>
|
|
</label>
|
|
</div>
|
|
))
|
|
) : (
|
|
<div className="text-center">
|
|
<h3 className="text-gray-400">You have no invitations</h3>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="mx-auto h-1/4 lg:w-1/2">
|
|
<button
|
|
type="submit"
|
|
className={`w-full rounded-md bg-gray-200 px-4 py-2 text-sm ${
|
|
isJoiningWorkspaces || invitationsRespond.length === 0
|
|
? "cursor-not-allowed opacity-80"
|
|
: ""
|
|
}`}
|
|
disabled={isJoiningWorkspaces || invitationsRespond.length === 0}
|
|
onClick={submitInvitations}
|
|
>
|
|
Join Workspace
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</Tab.Panel>
|
|
</Tab.Panels>
|
|
</Tab.Group>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Workspace;
|