2022-11-19 14:21:26 +00:00
|
|
|
import React, { useState } from "react";
|
|
|
|
// next
|
|
|
|
import type { NextPage } from "next";
|
|
|
|
// swr
|
|
|
|
import useSWR from "swr";
|
|
|
|
// headless ui
|
|
|
|
import { Menu } from "@headlessui/react";
|
|
|
|
// hooks
|
|
|
|
import useUser from "lib/hooks/useUser";
|
|
|
|
// services
|
|
|
|
import workspaceService from "lib/services/workspace.service";
|
|
|
|
// constants
|
|
|
|
import { WORKSPACE_INVITATIONS, WORKSPACE_MEMBERS } from "constants/fetch-keys";
|
|
|
|
// hoc
|
|
|
|
import withAuthWrapper from "lib/hoc/withAuthWrapper";
|
|
|
|
// layouts
|
|
|
|
import AdminLayout from "layouts/AdminLayout";
|
|
|
|
// components
|
|
|
|
import SendWorkspaceInvitationModal from "components/workspace/SendWorkspaceInvitationModal";
|
|
|
|
// ui
|
|
|
|
import { Spinner, Button } from "ui";
|
|
|
|
// icons
|
|
|
|
import { PlusIcon, EllipsisHorizontalIcon } from "@heroicons/react/20/solid";
|
|
|
|
import HeaderButton from "ui/HeaderButton";
|
|
|
|
import { BreadcrumbItem, Breadcrumbs } from "ui/Breadcrumbs";
|
|
|
|
// types
|
|
|
|
|
|
|
|
const ROLE = {
|
|
|
|
5: "Guest",
|
|
|
|
10: "Viewer",
|
|
|
|
15: "Member",
|
|
|
|
20: "Admin",
|
|
|
|
};
|
|
|
|
|
|
|
|
const WorkspaceInvite: NextPage = () => {
|
|
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
|
|
|
|
|
|
const { activeWorkspace } = useUser();
|
|
|
|
|
|
|
|
const { data: workspaceMembers, mutate: mutateMembers } = useSWR<any[]>(
|
|
|
|
activeWorkspace ? WORKSPACE_MEMBERS : null,
|
|
|
|
activeWorkspace ? () => workspaceService.workspaceMembers(activeWorkspace.slug) : null
|
|
|
|
);
|
|
|
|
const { data: workspaceInvitations, mutate: mutateInvitations } = useSWR<any[]>(
|
|
|
|
activeWorkspace ? WORKSPACE_INVITATIONS : null,
|
|
|
|
activeWorkspace ? () => workspaceService.workspaceInvitations(activeWorkspace.slug) : null
|
|
|
|
);
|
|
|
|
|
|
|
|
const members = [
|
|
|
|
...(workspaceMembers?.map((item) => ({
|
|
|
|
id: item.id,
|
|
|
|
email: item.member?.email,
|
|
|
|
role: item.role,
|
|
|
|
status: true,
|
|
|
|
member: true,
|
|
|
|
})) || []),
|
|
|
|
...(workspaceInvitations?.map((item) => ({
|
|
|
|
id: item.id,
|
|
|
|
email: item.email,
|
|
|
|
role: item.role,
|
|
|
|
status: item.accepted,
|
|
|
|
member: false,
|
|
|
|
})) || []),
|
|
|
|
];
|
|
|
|
|
|
|
|
return (
|
2022-11-24 13:48:18 +00:00
|
|
|
<AdminLayout
|
2022-11-19 14:21:26 +00:00
|
|
|
meta={{
|
|
|
|
title: "Plane - Workspace Invite",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<SendWorkspaceInvitationModal
|
|
|
|
isOpen={isOpen}
|
|
|
|
setIsOpen={setIsOpen}
|
|
|
|
workspace_slug={activeWorkspace?.slug as string}
|
|
|
|
members={members}
|
|
|
|
/>
|
|
|
|
{!workspaceMembers || !workspaceInvitations ? (
|
2022-11-24 13:48:18 +00:00
|
|
|
<div className="h-full w-full grid place-items-center px-4 sm:px-0">
|
2022-11-19 14:21:26 +00:00
|
|
|
<Spinner />
|
|
|
|
</div>
|
|
|
|
) : (
|
2022-11-24 13:48:18 +00:00
|
|
|
<div className="w-full space-y-5">
|
|
|
|
<Breadcrumbs>
|
|
|
|
<BreadcrumbItem title={`${activeWorkspace?.name ?? "Workspace"} Members`} />
|
|
|
|
</Breadcrumbs>
|
|
|
|
<div className="flex items-center justify-between cursor-pointer w-full">
|
|
|
|
<h2 className="text-2xl font-medium">Invite Members</h2>
|
|
|
|
<HeaderButton Icon={PlusIcon} label="Add Member" onClick={() => setIsOpen(true)} />
|
2022-11-19 14:21:26 +00:00
|
|
|
</div>
|
2022-11-24 13:48:18 +00:00
|
|
|
{members && members.length === 0 ? null : (
|
|
|
|
<>
|
|
|
|
<table className="min-w-full table-fixed border border-gray-300 md:rounded-lg divide-y divide-gray-300">
|
|
|
|
<thead className="bg-gray-50">
|
|
|
|
<tr>
|
|
|
|
<th
|
|
|
|
scope="col"
|
|
|
|
className="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6"
|
|
|
|
>
|
|
|
|
Name
|
|
|
|
</th>
|
|
|
|
<th
|
|
|
|
scope="col"
|
|
|
|
className="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6"
|
|
|
|
>
|
|
|
|
Role
|
|
|
|
</th>
|
|
|
|
<th
|
|
|
|
scope="col"
|
|
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:pl-6"
|
|
|
|
>
|
|
|
|
Status
|
|
|
|
</th>
|
|
|
|
<th scope="col" className="relative py-3.5 pl-3 pr-4 sm:pr-6 w-10">
|
|
|
|
<span className="sr-only">Edit</span>
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody className="divide-y divide-gray-200 bg-white">
|
|
|
|
{members?.map((member: any) => (
|
|
|
|
<tr key={member.id}>
|
|
|
|
<td className="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6">
|
|
|
|
{member.email ?? "No email has been added."}
|
|
|
|
</td>
|
|
|
|
<td className="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6">
|
|
|
|
{ROLE[member.role as keyof typeof ROLE] ?? "None"}
|
|
|
|
</td>
|
|
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500 sm:pl-6">
|
|
|
|
{member?.member ? (
|
|
|
|
<span className="p-0.5 px-2 text-sm bg-green-700 text-white rounded-full">
|
|
|
|
Accepted
|
|
|
|
</span>
|
|
|
|
) : member.status ? (
|
|
|
|
<span className="p-0.5 px-2 text-sm bg-green-700 text-white rounded-full">
|
|
|
|
Accepted
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<span className="p-0.5 px-2 text-sm bg-yellow-400 text-black rounded-full">
|
|
|
|
Pending
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
</td>
|
|
|
|
<td className="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-6">
|
|
|
|
<Menu>
|
|
|
|
<Menu.Button>
|
|
|
|
<EllipsisHorizontalIcon
|
|
|
|
width="16"
|
|
|
|
height="16"
|
|
|
|
className="inline text-gray-500"
|
|
|
|
/>
|
|
|
|
</Menu.Button>
|
|
|
|
<Menu.Items className="absolute z-50 w-28 bg-white rounded border cursor-pointer -left-20 top-9">
|
|
|
|
<Menu.Item>
|
|
|
|
<div className="hover:bg-gray-100 border-b last:border-0">
|
|
|
|
<button
|
|
|
|
className="w-full text-left py-2 pl-2"
|
|
|
|
type="button"
|
|
|
|
onClick={() => {}}
|
|
|
|
>
|
|
|
|
Edit
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item>
|
|
|
|
<div className="hover:bg-gray-100 border-b last:border-0">
|
|
|
|
<button
|
|
|
|
className="w-full text-left py-2 pl-2"
|
|
|
|
type="button"
|
|
|
|
onClick={async () => {
|
|
|
|
member.member
|
|
|
|
? (await workspaceService.deleteWorkspaceMember(
|
|
|
|
activeWorkspace?.slug as string,
|
|
|
|
member.id
|
|
|
|
),
|
|
|
|
await mutateMembers((prevData) => [
|
|
|
|
...(prevData ?? [])?.filter(
|
|
|
|
(m: any) => m.id !== member.id
|
|
|
|
),
|
|
|
|
]),
|
|
|
|
false)
|
|
|
|
: (await workspaceService.deleteWorkspaceInvitations(
|
|
|
|
activeWorkspace?.slug as string,
|
|
|
|
member.id
|
|
|
|
),
|
|
|
|
await mutateInvitations((prevData) => [
|
|
|
|
...(prevData ?? []).filter((m) => m.id !== member.id),
|
|
|
|
false,
|
|
|
|
]));
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Remove
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</Menu.Item>
|
|
|
|
</Menu.Items>
|
|
|
|
</Menu>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
))}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</>
|
|
|
|
)}
|
2022-11-19 14:21:26 +00:00
|
|
|
</div>
|
|
|
|
)}
|
2022-11-24 13:48:18 +00:00
|
|
|
</AdminLayout>
|
2022-11-19 14:21:26 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default withAuthWrapper(WorkspaceInvite);
|