174 lines
6.0 KiB
TypeScript
174 lines
6.0 KiB
TypeScript
import {
|
|
DotsHorizontalIcon,
|
|
ExternalLinkIcon,
|
|
LinkIcon,
|
|
PencilAltIcon,
|
|
TrashIcon,
|
|
} from "@heroicons/react/outline";
|
|
import Link from "next/link";
|
|
import { useState } from "react";
|
|
|
|
import { useLocale } from "@lib/hooks/useLocale";
|
|
import showToast from "@lib/notification";
|
|
|
|
import { Dialog, DialogTrigger } from "@components/Dialog";
|
|
import { Tooltip } from "@components/Tooltip";
|
|
import ConfirmationDialogContent from "@components/dialog/ConfirmationDialogContent";
|
|
import Avatar from "@components/ui/Avatar";
|
|
import Button from "@components/ui/Button";
|
|
|
|
import Dropdown, { DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "../ui/Dropdown";
|
|
|
|
interface Team {
|
|
id: number;
|
|
name: string | null;
|
|
slug: string | null;
|
|
logo: string | null;
|
|
bio: string | null;
|
|
role: string | null;
|
|
hideBranding: boolean;
|
|
prevState: null;
|
|
}
|
|
|
|
export default function TeamListItem(props: {
|
|
onChange: () => void;
|
|
key: number;
|
|
team: Team;
|
|
onActionSelect: (text: string) => void;
|
|
}) {
|
|
const [team, setTeam] = useState<Team | null>(props.team);
|
|
const { t } = useLocale();
|
|
|
|
const acceptInvite = () => invitationResponse(true);
|
|
const declineInvite = () => invitationResponse(false);
|
|
|
|
const invitationResponse = (accept: boolean) =>
|
|
fetch("/api/user/membership", {
|
|
method: accept ? "PATCH" : "DELETE",
|
|
body: JSON.stringify({ teamId: props.team.id }),
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
}).then(() => {
|
|
// success
|
|
setTeam(null);
|
|
props.onChange();
|
|
});
|
|
|
|
return (
|
|
team && (
|
|
<li className="divide-y">
|
|
<div className="flex justify-between my-4">
|
|
<div className="flex">
|
|
<Avatar
|
|
size={9}
|
|
imageSrc={
|
|
props.team.logo
|
|
? props.team.logo
|
|
: "https://eu.ui-avatars.com/api/?background=fff&color=039be5&name=" +
|
|
encodeURIComponent(props.team.name || "")
|
|
}
|
|
alt="Team Logo"
|
|
className="rounded-full w-9 h-9"
|
|
/>
|
|
<div className="inline-block ml-3">
|
|
<span className="text-sm font-bold text-neutral-700 dark:text-gray-200">{props.team.name}</span>
|
|
<span className="block -mt-1 text-xs text-gray-400">
|
|
{process.env.NEXT_PUBLIC_APP_URL}/team/{props.team.slug}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
{props.team.role === "INVITEE" && (
|
|
<div>
|
|
<Button type="button" color="secondary" onClick={declineInvite}>
|
|
{t("reject")}
|
|
</Button>
|
|
<Button type="button" color="primary" className="ml-1" onClick={acceptInvite}>
|
|
{t("accept")}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
{props.team.role === "MEMBER" && (
|
|
<div>
|
|
<Button type="button" color="primary" onClick={declineInvite}>
|
|
{t("leave")}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
{props.team.role === "OWNER" && (
|
|
<div className="flex space-x-4">
|
|
<span className="self-center h-6 px-3 py-1 text-xs text-gray-700 capitalize rounded-md bg-gray-50">
|
|
{t("owner")}
|
|
</span>
|
|
<Tooltip content={t("copy_link")}>
|
|
<Button
|
|
onClick={() => {
|
|
navigator.clipboard.writeText(
|
|
process.env.NEXT_PUBLIC_APP_URL + "/team/" + props.team.slug
|
|
);
|
|
showToast(t("link_copied"), "success");
|
|
}}
|
|
size="icon"
|
|
color="minimal"
|
|
StartIcon={LinkIcon}
|
|
type="button"
|
|
/>
|
|
</Tooltip>
|
|
<Dropdown>
|
|
<DropdownMenuTrigger className="w-10 h-10 p-0 border border-transparent group text-neutral-400 hover:border-gray-200">
|
|
<DotsHorizontalIcon className="w-5 h-5" />
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent>
|
|
<DropdownMenuItem>
|
|
<Button
|
|
type="button"
|
|
color="minimal"
|
|
className="w-full"
|
|
onClick={() => props.onActionSelect("edit")}
|
|
StartIcon={PencilAltIcon}>
|
|
{" "}
|
|
{t("edit_team")}
|
|
</Button>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem>
|
|
<Link href={`${process.env.NEXT_PUBLIC_APP_URL}/team/${props.team.slug}`} passHref={true}>
|
|
<a target="_blank">
|
|
<Button type="button" color="minimal" className="w-full" StartIcon={ExternalLinkIcon}>
|
|
{" "}
|
|
{t("preview_team")}
|
|
</Button>
|
|
</a>
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem>
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<Button
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
}}
|
|
color="warn"
|
|
StartIcon={TrashIcon}
|
|
className="w-full">
|
|
{t("disband_team")}
|
|
</Button>
|
|
</DialogTrigger>
|
|
<ConfirmationDialogContent
|
|
variety="danger"
|
|
title={t("disband_team")}
|
|
confirmBtnText={t("confirm_disband_team")}
|
|
onConfirm={() => props.onActionSelect("disband")}>
|
|
{t("disband_team_confirmation_message")}
|
|
</ConfirmationDialogContent>
|
|
</Dialog>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</Dropdown>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</li>
|
|
)
|
|
);
|
|
}
|