import { useState } from "react"; import Image from "next/image"; import useSWR from "swr"; // headless ui import { Tab } from "@headlessui/react"; // services import workspaceService from "services/workspace.service"; // types import { IWorkspaceMemberInvitation } from "types"; // fetch-keys import { USER_WORKSPACE_INVITATIONS } from "constants/fetch-keys"; // constants import { CreateWorkspaceForm } from "components/workspace"; // ui import { PrimaryButton } from "components/ui"; type Props = { setStep: React.Dispatch<React.SetStateAction<number>>; setWorkspace: React.Dispatch<React.SetStateAction<any>>; }; export const Workspace: React.FC<Props> = ({ setStep, setWorkspace }) => { const [isJoiningWorkspaces, setIsJoiningWorkspaces] = useState(false); const [invitationsRespond, setInvitationsRespond] = useState<string[]>([]); const { data: invitations, mutate } = useSWR(USER_WORKSPACE_INVITATIONS, () => workspaceService.userWorkspaceInvitations() ); 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); }); }; return ( <div className="grid w-full place-items-center"> <Tab.Group as="div" className="flex w-full max-w-xl flex-col rounded-[10px] bg-white shadow-md" > <Tab.List as="div" className="text-gray-8 flex items-center justify-start gap-3 px-4 pt-4 text-sm" > <Tab className={({ selected }) => `rounded-3xl border px-4 py-2 outline-none ${ selected ? "border-theme bg-theme text-white" : "border-gray-300 bg-white hover:bg-hover-gray" }` } > New Workspace </Tab> <Tab className={({ selected }) => `rounded-3xl border px-5 py-2 outline-none ${ selected ? "border-theme bg-theme text-white" : "border-gray-300 bg-white hover:bg-hover-gray" }` } > Invited Workspace </Tab> </Tab.List> <Tab.Panels> <Tab.Panel> <CreateWorkspaceForm onSubmit={(res) => { setWorkspace(res); setStep(3); }} /> </Tab.Panel> <Tab.Panel> <div className="mt-6"> <div className="divide-y pb-8 px-4"> {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="flex w-full items-center justify-center rounded-b-[10px] py-7"> <PrimaryButton type="submit" className="w-1/2 text-center" size="md" disabled={isJoiningWorkspaces || invitationsRespond.length === 0} > Join Workspace </PrimaryButton> </div> </div> </Tab.Panel> </Tab.Panels> </Tab.Group> </div> ); };