
* Init dev * UI changes for recurring event + prisma * Revisiting schema + changes WIP * UI done, BE WIP * Feature completion * Unused query param removed * Invalid comment removed * Removed unused translation * Update apps/web/public/static/locales/en/common.json Thanks! Co-authored-by: Peer Richelsen <peeroke@gmail.com> * Success page changes * More progress * Email text tweaks + test + seed * Tweaking emails + Cal Apps support WIP * No app integration for now Final email and pages tweaks to avoid recurring info showed * Missing comment for clarity * Yet again, comment * Last minute fix * Missing tooltip for upcoming bookings * Fixing seed * Fixing import * Increasing timeout for e2e * Fixing any * Apply suggestions from code review Co-authored-by: Omar López <zomars@me.com> * Update apps/web/pages/d/[link]/book.tsx Co-authored-by: Omar López <zomars@me.com> * Code improvements * More code improvements * Reverting back number input arrows * Update BookingPage.tsx * Update BookingPage.tsx * Adds fallback for sendOrganizerPaymentRefundFailedEmail * Type overkill * Type fixes * Type fixes * Nitpicks * Update success.tsx * Update success.tsx * Update success.tsx * Fixing types Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: Omar López <zomars@me.com>
219 lines
7.9 KiB
TypeScript
219 lines
7.9 KiB
TypeScript
import { LogoutIcon } from "@heroicons/react/outline";
|
|
import {
|
|
ExternalLinkIcon,
|
|
TrashIcon,
|
|
LinkIcon,
|
|
DotsHorizontalIcon,
|
|
PencilIcon,
|
|
} from "@heroicons/react/solid";
|
|
import { MembershipRole } from "@prisma/client";
|
|
import Link from "next/link";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import showToast from "@calcom/lib/notification";
|
|
import Button from "@calcom/ui/Button";
|
|
import { Dialog, DialogTrigger } from "@calcom/ui/Dialog";
|
|
import Dropdown, {
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
DropdownMenuSeparator,
|
|
} from "@calcom/ui/Dropdown";
|
|
import { Tooltip } from "@calcom/ui/Tooltip";
|
|
|
|
import classNames from "@lib/classNames";
|
|
import { getPlaceholderAvatar } from "@lib/getPlaceholderAvatar";
|
|
import { trpc, inferQueryOutput } from "@lib/trpc";
|
|
|
|
import ConfirmationDialogContent from "@components/dialog/ConfirmationDialogContent";
|
|
import Avatar from "@components/ui/Avatar";
|
|
|
|
import { TeamRole } from "./TeamPill";
|
|
|
|
interface Props {
|
|
team: inferQueryOutput<"viewer.teams.list">[number];
|
|
key: number;
|
|
onActionSelect: (text: string) => void;
|
|
}
|
|
|
|
export default function TeamListItem(props: Props) {
|
|
const { t } = useLocale();
|
|
const utils = trpc.useContext();
|
|
const team = props.team;
|
|
|
|
const acceptOrLeaveMutation = trpc.useMutation("viewer.teams.acceptOrLeave", {
|
|
onSuccess: () => {
|
|
utils.invalidateQueries(["viewer.teams.list"]);
|
|
},
|
|
});
|
|
function acceptOrLeave(accept: boolean) {
|
|
acceptOrLeaveMutation.mutate({
|
|
teamId: team?.id as number,
|
|
accept,
|
|
});
|
|
}
|
|
const acceptInvite = () => acceptOrLeave(true);
|
|
const declineInvite = () => acceptOrLeave(false);
|
|
|
|
const isOwner = props.team.role === MembershipRole.OWNER;
|
|
const isInvitee = !props.team.accepted;
|
|
const isAdmin = props.team.role === MembershipRole.OWNER || props.team.role === MembershipRole.ADMIN;
|
|
|
|
if (!team) return <></>;
|
|
|
|
const teamInfo = (
|
|
<div className="flex px-5 py-5">
|
|
<Avatar
|
|
size={9}
|
|
imageSrc={getPlaceholderAvatar(team?.logo, team?.name as string)}
|
|
alt="Team Logo"
|
|
className="min-h-9 min-w-9 h-9 w-9 rounded-full"
|
|
/>
|
|
<div className="ml-3 inline-block">
|
|
<span className="text-sm font-bold text-neutral-700">{team.name}</span>
|
|
<span className="block text-xs text-gray-400">
|
|
{process.env.NEXT_PUBLIC_WEBSITE_URL}/team/{team.slug}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<li className="divide-y">
|
|
<div
|
|
className={classNames(
|
|
"flex items-center justify-between",
|
|
!isInvitee && "group hover:bg-neutral-50"
|
|
)}>
|
|
{!isInvitee ? (
|
|
<Link href={"/settings/teams/" + team.id}>
|
|
<a className="flex-grow cursor-pointer truncate text-sm" title={`${team.name}`}>
|
|
{teamInfo}
|
|
</a>
|
|
</Link>
|
|
) : (
|
|
teamInfo
|
|
)}
|
|
<div className="px-5 py-5">
|
|
{isInvitee && (
|
|
<>
|
|
<Button type="button" color="secondary" onClick={declineInvite}>
|
|
{t("reject")}
|
|
</Button>
|
|
<Button type="button" color="primary" className="ltr:ml-2 rtl:mr-2" onClick={acceptInvite}>
|
|
{t("accept")}
|
|
</Button>
|
|
</>
|
|
)}
|
|
{!isInvitee && (
|
|
<div className="flex rtl:space-x-reverse">
|
|
<TeamRole role={team.role} />
|
|
|
|
<Tooltip content={t("copy_link_team")}>
|
|
<Button
|
|
onClick={() => {
|
|
navigator.clipboard.writeText(process.env.NEXT_PUBLIC_WEBSITE_URL + "/team/" + team.slug);
|
|
showToast(t("link_copied"), "success");
|
|
}}
|
|
className="h-10 w-10 transition-none"
|
|
size="icon"
|
|
color="minimal"
|
|
type="button">
|
|
<LinkIcon className="h-5 w-5 group-hover:text-gray-600" />
|
|
</Button>
|
|
</Tooltip>
|
|
<Dropdown>
|
|
<DropdownMenuTrigger className="group h-10 w-10 border border-transparent p-0 text-neutral-400 hover:border-gray-200 ">
|
|
<DotsHorizontalIcon className="h-5 w-5 group-hover:text-gray-800" />
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent>
|
|
{isAdmin && (
|
|
<DropdownMenuItem>
|
|
<Link href={"/settings/teams/" + team.id}>
|
|
<a>
|
|
<Button
|
|
color="minimal"
|
|
size="sm"
|
|
className="w-full rounded-none font-medium"
|
|
StartIcon={PencilIcon}>
|
|
{t("edit_team")}
|
|
</Button>
|
|
</a>
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
)}
|
|
<DropdownMenuItem>
|
|
<Link href={`${process.env.NEXT_PUBLIC_WEBSITE_URL}/team/${team.slug}`} passHref={true}>
|
|
<a target="_blank">
|
|
<Button
|
|
color="minimal"
|
|
size="sm"
|
|
className="w-full rounded-none font-medium"
|
|
StartIcon={ExternalLinkIcon}>
|
|
{t("preview_team")}
|
|
</Button>
|
|
</a>
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator className="h-px bg-gray-200" />
|
|
{isOwner && (
|
|
<DropdownMenuItem>
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<Button
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
}}
|
|
color="warn"
|
|
size="sm"
|
|
className="w-full rounded-none font-medium"
|
|
StartIcon={TrashIcon}>
|
|
{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>
|
|
)}
|
|
|
|
{!isOwner && (
|
|
<DropdownMenuItem>
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<Button
|
|
type="button"
|
|
color="warn"
|
|
size="lg"
|
|
StartIcon={LogoutIcon}
|
|
className="w-full rounded-none"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
}}>
|
|
{t("leave_team")}
|
|
</Button>
|
|
</DialogTrigger>
|
|
<ConfirmationDialogContent
|
|
variety="danger"
|
|
title={t("leave_team")}
|
|
confirmBtnText={t("confirm_leave_team")}
|
|
onConfirm={declineInvite}>
|
|
{t("leave_team_confirmation_message")}
|
|
</ConfirmationDialogContent>
|
|
</Dialog>
|
|
</DropdownMenuItem>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</Dropdown>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</li>
|
|
);
|
|
}
|