
* Heavy WIP * More WIP * Playing with backwards compat * Moar wip * wip * Email changes for group feature * Committing in redundant migrations for reference * Combine all WIP migrations into a single feature migration * Make backup of current version of radio area pending refactor * Improved accessibility through keyboard * Cleanup in seperate commit so I can cherrypick later * Added RadioArea component * wip * Ignore .yarn file * Kinda stable * Getting closer... * Hide header when there are only personal events * Added uid to event create, updated EventTypeDescription * Delete redundant migration * Committing new team related migrations * Optimising & implemented backwards compatibility * Removed now redundant pages * Undid prototyping to calendarClient I did not end up using * Properly typed Select & fixed lint throughout * How'd that get here, removed. * TODO: investigate why userData is not compatible with passed type * This likely matches the event type that is created for a user * Few bugfixes * Adding datepicker optimisations * Fixed new event type spacing, initial profile should always be there * Gave NEXT_PUBLIC_BASE_URL a try but I think it's not the right solution * Updated EventTypeDescription to account for long titles, added logo to team page. * Added logo to team query * Added cancel Cypress test because an upcoming merge contains changes * Fix for when the event type description is long * Turned Theme into the useTheme hook, and made it fully compatible with teams pages * Built AvatarGroup ui component + moved Avatar to ui * Give the avatar some space fom the description * Fixed timeZone selector * Disabled tooltip +1-... Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
686 lines
24 KiB
TypeScript
686 lines
24 KiB
TypeScript
import { Dialog, DialogClose, DialogContent } from "@components/Dialog";
|
|
import { Tooltip } from "@components/Tooltip";
|
|
import { Button } from "@components/ui/Button";
|
|
// TODO: replace headlessui with radix-ui
|
|
import { Menu, Transition } from "@headlessui/react";
|
|
import {
|
|
ChevronDownIcon,
|
|
DotsHorizontalIcon,
|
|
ExternalLinkIcon,
|
|
LinkIcon,
|
|
PlusIcon,
|
|
UsersIcon,
|
|
} from "@heroicons/react/solid";
|
|
import classNames from "@lib/classNames";
|
|
import { getSession } from "next-auth/client";
|
|
import Head from "next/head";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import React, { Fragment, useRef } from "react";
|
|
import dayjs from "dayjs";
|
|
import Shell from "@components/Shell";
|
|
import prisma from "@lib/prisma";
|
|
import { EventType, SchedulingType } from "@prisma/client";
|
|
import showToast from "@lib/notification";
|
|
import Avatar from "@components/ui/Avatar";
|
|
import UserCalendarIllustration from "@components/ui/svg/UserCalendarIllustration";
|
|
import * as DropdownMenu from "@radix-ui/react-dropdown-menu";
|
|
import EventTypeDescription from "@components/eventtype/EventTypeDescription";
|
|
import * as RadioArea from "@components/ui/form/radio-area";
|
|
import { ONBOARDING_INTRODUCED_AT } from "@lib/getting-started";
|
|
import { inferSSRProps } from "@lib/types/inferSSRProps";
|
|
import { Alert } from "@components/ui/Alert";
|
|
import { useToggleQuery } from "@lib/hooks/useToggleQuery";
|
|
import { useMutation } from "react-query";
|
|
import createEventType from "@lib/mutations/event-types/create-event-type";
|
|
import { HttpError } from "@lib/core/http/error";
|
|
import { asStringOrNull } from "@lib/asStringOrNull";
|
|
import AvatarGroup from "@components/ui/AvatarGroup";
|
|
|
|
const EventTypesPage = (props: inferSSRProps<typeof getServerSideProps>) => {
|
|
const CreateFirstEventTypeView = () => (
|
|
<div className="md:py-20">
|
|
<UserCalendarIllustration />
|
|
<div className="text-center block md:max-w-screen-sm mx-auto">
|
|
<h3 className="mt-2 text-xl font-bold text-neutral-900">Create your first event type</h3>
|
|
<p className="mt-1 text-md text-neutral-600 mb-2">
|
|
Event types enable you to share links that show available times on your calendar and allow people to
|
|
make bookings with you.
|
|
</p>
|
|
<CreateNewEventDialog canAddEvents={props.canAddEvents} profiles={props.profiles} />
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
const EventTypeListHeading = ({ profile, membershipCount }) => (
|
|
<div className="flex mb-3">
|
|
<Avatar displayName={profile.name} imageSrc={profile.image} size="8" className="mt-1 inline mr-2" />
|
|
<div>
|
|
<span className="font-bold">{profile.name}</span>
|
|
{membershipCount && (
|
|
<span className="text-neutral-500 ml-2">
|
|
<UsersIcon className="w-4 h-4 inline" /> {membershipCount}
|
|
</span>
|
|
)}
|
|
{typeof window !== "undefined" && (
|
|
<Link href={profile.slug}>
|
|
<a className="block text-neutral-500 leading-none">{`${window.location.host}/${profile.slug}`}</a>
|
|
</Link>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
const EventTypeList = ({
|
|
readOnly,
|
|
types,
|
|
profile,
|
|
}: {
|
|
profile;
|
|
readOnly: boolean;
|
|
types: EventType[];
|
|
}) => (
|
|
<div className="bg-white border border-gray-200 rounded-sm overflow-hidden -mx-4 sm:mx-0 mb-4">
|
|
<ul className="divide-y divide-neutral-200" data-testid="event-types">
|
|
{types.map((type) => (
|
|
<li
|
|
key={type.id}
|
|
className={classNames(
|
|
type.$disabled && "opacity-30 cursor-not-allowed pointer-events-none select-none"
|
|
)}
|
|
data-disabled={type.$disabled ? 1 : 0}>
|
|
<div className={classNames("hover:bg-neutral-50", type.$disabled && "pointer-events-none")}>
|
|
<div className="px-4 py-4 flex items-center sm:px-6 hover:bg-neutral-50">
|
|
<Link href={"/event-types/" + type.id}>
|
|
<a className="truncate flex-grow text-sm">
|
|
<div>
|
|
<span className="font-medium text-neutral-900 truncate">{type.title}</span>
|
|
{type.hidden && (
|
|
<span className="ml-2 inline items-center px-1.5 py-0.5 rounded-sm text-xs font-medium bg-yellow-100 text-yellow-800">
|
|
Hidden
|
|
</span>
|
|
)}
|
|
{readOnly && (
|
|
<span className="ml-2 inline items-center px-1.5 py-0.5 rounded-sm text-xs font-medium bg-gray-100 text-gray-800">
|
|
Readonly
|
|
</span>
|
|
)}
|
|
</div>
|
|
<EventTypeDescription eventType={type} />
|
|
</a>
|
|
</Link>
|
|
|
|
<div className="hidden sm:flex mt-4 flex-shrink-0 sm:mt-0 sm:ml-5">
|
|
<div className="flex items-center overflow-hidden space-x-5">
|
|
{type.users.length > 1 && (
|
|
<AvatarGroup
|
|
size={8}
|
|
truncateAfter={4}
|
|
items={type.users.map((organizer) => ({
|
|
alt: organizer.name,
|
|
image: organizer.avatar,
|
|
}))}
|
|
/>
|
|
)}
|
|
<Tooltip content="Preview">
|
|
<a
|
|
href={`/${profile.slug}/${type.slug}`}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="group cursor-pointer text-neutral-400 p-2 border border-transparent hover:border-gray-200">
|
|
<ExternalLinkIcon className="group-hover:text-black w-5 h-5" />
|
|
</a>
|
|
</Tooltip>
|
|
|
|
<Tooltip content="Copy link">
|
|
<button
|
|
onClick={() => {
|
|
showToast("Link copied!", "success");
|
|
navigator.clipboard.writeText(
|
|
`${window.location.origin}/${profile.slug}/${type.slug}`
|
|
);
|
|
}}
|
|
className="group text-neutral-400 p-2 border border-transparent hover:border-gray-200">
|
|
<LinkIcon className="group-hover:text-black w-5 h-5" />
|
|
</button>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex sm:hidden ml-5 flex-shrink-0">
|
|
<Menu as="div" className="inline-block text-left">
|
|
{({ open }) => (
|
|
<>
|
|
<div>
|
|
<Menu.Button className="text-neutral-400 mt-1 p-2 border border-transparent hover:border-gray-200">
|
|
<span className="sr-only">Open options</span>
|
|
<DotsHorizontalIcon className="h-5 w-5" aria-hidden="true" />
|
|
</Menu.Button>
|
|
</div>
|
|
|
|
<Transition
|
|
show={open}
|
|
as={Fragment}
|
|
enter="transition ease-out duration-100"
|
|
enterFrom="transform opacity-0 scale-95"
|
|
enterTo="transform opacity-100 scale-100"
|
|
leave="transition ease-in duration-75"
|
|
leaveFrom="transform opacity-100 scale-100"
|
|
leaveTo="transform opacity-0 scale-95">
|
|
<Menu.Items
|
|
static
|
|
className="origin-top-right absolute right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none divide-y divide-neutral-100">
|
|
<div className="py-1">
|
|
<Menu.Item>
|
|
{({ active }) => (
|
|
<a
|
|
href={`/${profile.slug}/${type.slug}`}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className={classNames(
|
|
active ? "bg-neutral-100 text-neutral-900" : "text-neutral-700",
|
|
"group flex items-center px-4 py-2 text-sm font-medium"
|
|
)}>
|
|
<ExternalLinkIcon
|
|
className="mr-3 h-4 w-4 text-neutral-400 group-hover:text-neutral-500"
|
|
aria-hidden="true"
|
|
/>
|
|
Preview
|
|
</a>
|
|
)}
|
|
</Menu.Item>
|
|
<Menu.Item>
|
|
{({ active }) => (
|
|
<button
|
|
onClick={() => {
|
|
showToast("Link copied!", "success");
|
|
navigator.clipboard.writeText(
|
|
`${window.location.origin}/${profile.slug}/${type.slug}`
|
|
);
|
|
}}
|
|
className={classNames(
|
|
active ? "bg-neutral-100 text-neutral-900" : "text-neutral-700",
|
|
"group flex items-center px-4 py-2 text-sm w-full font-medium"
|
|
)}>
|
|
<LinkIcon
|
|
className="mr-3 h-4 w-4 text-neutral-400 group-hover:text-neutral-500"
|
|
aria-hidden="true"
|
|
/>
|
|
Copy link to event
|
|
</button>
|
|
)}
|
|
</Menu.Item>
|
|
</div>
|
|
</Menu.Items>
|
|
</Transition>
|
|
</>
|
|
)}
|
|
</Menu>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<div>
|
|
<Head>
|
|
<title>Event Types | Calendso</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
<Shell
|
|
heading="Event Types"
|
|
subtitle="Create events to share for people to book on your calendar."
|
|
CTA={
|
|
props.eventTypes.length !== 0 && (
|
|
<CreateNewEventDialog canAddEvents={props.canAddEvents} profiles={props.profiles} />
|
|
)
|
|
}>
|
|
{props.user.plan === "FREE" && typeof window !== "undefined" && (
|
|
<Alert
|
|
severity="warning"
|
|
title={<>You need to upgrade your plan to have more than one active event type.</>}
|
|
message={
|
|
<>
|
|
To upgrade go to{" "}
|
|
<a href={`${window.location.origin}/upgrade`} className="underline">
|
|
{`${window.location.origin}/upgrade`}
|
|
</a>
|
|
</>
|
|
}
|
|
className="my-4"
|
|
/>
|
|
)}
|
|
{props.eventTypes &&
|
|
props.eventTypes.map((input) => (
|
|
<>
|
|
{/* hide list heading when there is only one (current user) */}
|
|
{(props.eventTypes.length !== 1 || input.teamId) && (
|
|
<EventTypeListHeading
|
|
profile={input.profile}
|
|
membershipCount={input.metadata?.membershipCount}
|
|
/>
|
|
)}
|
|
<EventTypeList
|
|
types={input.eventTypes}
|
|
profile={input.profile}
|
|
readOnly={input.metadata?.readOnly}
|
|
/>
|
|
</>
|
|
))}
|
|
|
|
{props.eventTypes.length === 0 && <CreateFirstEventTypeView />}
|
|
</Shell>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const CreateNewEventDialog = ({ profiles, canAddEvents }) => {
|
|
const router = useRouter();
|
|
const teamId: number | null = Number(router.query.teamId) || null;
|
|
const modalOpen = useToggleQuery("new");
|
|
|
|
const createMutation = useMutation(createEventType, {
|
|
onSuccess: async ({ eventType }) => {
|
|
await router.push("/event-types/" + eventType.id);
|
|
showToast(`${eventType.title} event type created successfully`, "success");
|
|
},
|
|
onError: (err: HttpError) => {
|
|
const message = `${err.statusCode}: ${err.message}`;
|
|
showToast(message, "error");
|
|
},
|
|
});
|
|
|
|
const slugRef = useRef<HTMLInputElement>(null);
|
|
|
|
return (
|
|
<Dialog
|
|
open={modalOpen.isOn}
|
|
onOpenChange={(isOpen) => {
|
|
router.push(isOpen ? modalOpen.hrefOn : modalOpen.hrefOff);
|
|
}}>
|
|
{!profiles.filter((profile) => profile.teamId).length && (
|
|
<Button
|
|
data-testid="new-event-type"
|
|
{...(canAddEvents
|
|
? {
|
|
href: modalOpen.hrefOn,
|
|
}
|
|
: {
|
|
disabled: true,
|
|
})}
|
|
StartIcon={PlusIcon}>
|
|
New event type
|
|
</Button>
|
|
)}
|
|
{profiles.filter((profile) => profile.teamId).length > 0 && (
|
|
<DropdownMenu.Root>
|
|
<DropdownMenu.Trigger as="span">
|
|
<Button EndIcon={ChevronDownIcon}>New event type</Button>
|
|
</DropdownMenu.Trigger>
|
|
<DropdownMenu.Content align="end" className="shadow-sm rounded-sm bg-white text-sm mt-1">
|
|
<DropdownMenu.Label className="text-neutral-500 px-3 py-2">
|
|
Create an event type under
|
|
<br />
|
|
your name or a team.
|
|
</DropdownMenu.Label>
|
|
<DropdownMenu.Separator className="h-px bg-gray-200" />
|
|
{profiles.map((profile) => (
|
|
<DropdownMenu.Item
|
|
key={profile.slug}
|
|
className="px-3 py-2 cursor-pointer hover:bg-neutral-100"
|
|
onSelect={() =>
|
|
router.push({
|
|
pathname: router.pathname,
|
|
query: {
|
|
...router.query,
|
|
new: "1",
|
|
eventPage: profile.slug,
|
|
...(profile.teamId
|
|
? {
|
|
teamId: profile.teamId,
|
|
}
|
|
: {}),
|
|
},
|
|
})
|
|
}>
|
|
<Avatar
|
|
displayName={profile.name}
|
|
imageSrc={profile.image}
|
|
size="6"
|
|
className="inline mr-2"
|
|
/>
|
|
{profile.name}
|
|
</DropdownMenu.Item>
|
|
))}
|
|
</DropdownMenu.Content>
|
|
</DropdownMenu.Root>
|
|
)}
|
|
<DialogContent>
|
|
<div className="mb-8">
|
|
<h3 className="text-lg leading-6 font-bold text-gray-900" id="modal-title">
|
|
Add a new {teamId ? "team " : ""}event type
|
|
</h3>
|
|
<div>
|
|
<p className="text-sm text-gray-500">Create a new event type for people to book times with.</p>
|
|
</div>
|
|
</div>
|
|
<form
|
|
onSubmit={(e) => {
|
|
e.preventDefault();
|
|
|
|
const target = e.target as unknown as Record<
|
|
"title" | "slug" | "description" | "length" | "schedulingType",
|
|
{ value: string }
|
|
>;
|
|
|
|
const payload = {
|
|
title: target.title.value,
|
|
slug: target.slug.value,
|
|
description: target.description.value,
|
|
length: parseInt(target.length.value),
|
|
};
|
|
|
|
if (router.query.teamId) {
|
|
payload.teamId = parseInt(asStringOrNull(router.query.teamId), 10);
|
|
payload.schedulingType = target.schedulingType.value;
|
|
}
|
|
|
|
createMutation.mutate(payload);
|
|
}}>
|
|
<div>
|
|
<div className="mb-4">
|
|
<label htmlFor="title" className="block text-sm font-medium text-gray-700">
|
|
Title
|
|
</label>
|
|
<div className="mt-1">
|
|
<input
|
|
onChange={(e) => {
|
|
if (!slugRef.current) {
|
|
return;
|
|
}
|
|
slugRef.current.value = e.target.value.replace(/\s+/g, "-").toLowerCase();
|
|
}}
|
|
type="text"
|
|
name="title"
|
|
id="title"
|
|
required
|
|
className="shadow-sm focus:ring-neutral-900 focus:border-neutral-900 block w-full sm:text-sm border-gray-300 rounded-sm"
|
|
placeholder="Quick Chat"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="mb-4">
|
|
<label htmlFor="slug" className="block text-sm font-medium text-gray-700">
|
|
URL
|
|
</label>
|
|
<div className="mt-1">
|
|
<div className="flex rounded-sm shadow-sm">
|
|
<span className="inline-flex items-center px-3 rounded-l-md border border-r-0 border-gray-300 bg-gray-50 text-gray-500 sm:text-sm">
|
|
{location.hostname}/{router.query.eventPage || profiles[0].slug}/
|
|
</span>
|
|
<input
|
|
ref={slugRef}
|
|
type="text"
|
|
name="slug"
|
|
id="slug"
|
|
required
|
|
className="flex-1 block w-full focus:ring-neutral-900 focus:border-neutral-900 min-w-0 rounded-none rounded-r-md sm:text-sm border-gray-300"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mb-4">
|
|
<label htmlFor="description" className="block text-sm font-medium text-gray-700">
|
|
Description
|
|
</label>
|
|
<div className="mt-1">
|
|
<textarea
|
|
name="description"
|
|
id="description"
|
|
className="shadow-sm focus:ring-neutral-900 focus:border-neutral-900 block w-full sm:text-sm border-gray-300 rounded-sm"
|
|
placeholder="A quick video meeting."
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="mb-4">
|
|
<label htmlFor="length" className="block text-sm font-medium text-gray-700">
|
|
Length
|
|
</label>
|
|
<div className="mt-1 relative rounded-sm shadow-sm">
|
|
<input
|
|
type="number"
|
|
name="length"
|
|
id="length"
|
|
required
|
|
className="focus:ring-neutral-900 focus:border-neutral-900 block w-full pr-20 sm:text-sm border-gray-300 rounded-sm"
|
|
placeholder="15"
|
|
/>
|
|
<div className="absolute inset-y-0 right-0 pr-3 flex items-center text-gray-400 text-sm">
|
|
minutes
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{teamId && (
|
|
<div className="mb-4">
|
|
<label htmlFor="schedulingType" className="block text-sm font-medium text-gray-700">
|
|
Scheduling Type
|
|
</label>
|
|
<RadioArea.Group
|
|
name="schedulingType"
|
|
className="flex space-x-6 mt-1 relative rounded-sm shadow-sm">
|
|
<RadioArea.Item value={SchedulingType.COLLECTIVE} className="text-sm w-1/2">
|
|
<strong className="block mb-1">Collective</strong>
|
|
<p>Schedule meetings when all selected team members are available.</p>
|
|
</RadioArea.Item>
|
|
<RadioArea.Item value={SchedulingType.ROUND_ROBIN} className="text-sm w-1/2">
|
|
<strong className="block mb-1">Round Robin</strong>
|
|
<p>Cycle meetings between multiple team members.</p>
|
|
</RadioArea.Item>
|
|
</RadioArea.Group>
|
|
</div>
|
|
)}
|
|
<div className="mt-8 sm:flex sm:flex-row-reverse gap-x-2">
|
|
<Button type="submit" loading={createMutation.isLoading}>
|
|
Continue
|
|
</Button>
|
|
<DialogClose as={Button} color="secondary">
|
|
Cancel
|
|
</DialogClose>
|
|
</div>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export async function getServerSideProps(context) {
|
|
const session = await getSession(context);
|
|
if (!session) {
|
|
return { redirect: { permanent: false, destination: "/auth/login" } };
|
|
}
|
|
|
|
const user = await prisma.user.findUnique({
|
|
where: {
|
|
id: session.user.id,
|
|
},
|
|
select: {
|
|
id: true,
|
|
username: true,
|
|
name: true,
|
|
startTime: true,
|
|
endTime: true,
|
|
bufferTime: true,
|
|
avatar: true,
|
|
completedOnboarding: true,
|
|
createdDate: true,
|
|
plan: true,
|
|
teams: {
|
|
where: {
|
|
accepted: true,
|
|
},
|
|
select: {
|
|
role: true,
|
|
team: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
slug: true,
|
|
logo: true,
|
|
members: {
|
|
select: {
|
|
userId: true,
|
|
},
|
|
},
|
|
eventTypes: {
|
|
select: {
|
|
id: true,
|
|
title: true,
|
|
description: true,
|
|
length: true,
|
|
schedulingType: true,
|
|
slug: true,
|
|
hidden: true,
|
|
users: {
|
|
select: {
|
|
id: true,
|
|
avatar: true,
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
eventTypes: {
|
|
where: {
|
|
team: null,
|
|
},
|
|
select: {
|
|
id: true,
|
|
title: true,
|
|
description: true,
|
|
length: true,
|
|
schedulingType: true,
|
|
slug: true,
|
|
hidden: true,
|
|
users: {
|
|
select: {
|
|
id: true,
|
|
avatar: true,
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!user) {
|
|
// this shouldn't happen
|
|
return {
|
|
redirect: {
|
|
permanent: false,
|
|
destination: "/auth/login",
|
|
},
|
|
} as const;
|
|
}
|
|
|
|
if (!user.completedOnboarding && dayjs(user.createdDate).isAfter(ONBOARDING_INTRODUCED_AT)) {
|
|
return {
|
|
redirect: {
|
|
permanent: false,
|
|
destination: "/getting-started",
|
|
},
|
|
} as const;
|
|
}
|
|
|
|
let eventTypes = [];
|
|
|
|
// backwards compatibility, TMP:
|
|
const typesRaw = await prisma.eventType.findMany({
|
|
where: {
|
|
userId: session.user.id,
|
|
},
|
|
select: {
|
|
id: true,
|
|
title: true,
|
|
slug: true,
|
|
description: true,
|
|
length: true,
|
|
hidden: true,
|
|
users: {
|
|
select: {
|
|
id: true,
|
|
avatar: true,
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
eventTypes.push({
|
|
teamId: null,
|
|
profile: {
|
|
slug: user.username,
|
|
name: user.name,
|
|
image: user.avatar,
|
|
},
|
|
eventTypes: user.eventTypes.concat(typesRaw).map((type, index) =>
|
|
user.plan === "FREE" && index > 0
|
|
? {
|
|
...type,
|
|
$disabled: true,
|
|
}
|
|
: {
|
|
...type,
|
|
$disabled: false,
|
|
}
|
|
),
|
|
});
|
|
|
|
eventTypes = [].concat(
|
|
eventTypes,
|
|
user.teams.map((membership) => ({
|
|
teamId: membership.team.id,
|
|
profile: {
|
|
name: membership.team.name,
|
|
image: membership.team.logo || "",
|
|
slug: "team/" + membership.team.slug,
|
|
},
|
|
metadata: {
|
|
membershipCount: membership.team.members.length,
|
|
readOnly: membership.role !== "OWNER",
|
|
},
|
|
eventTypes: membership.team.eventTypes,
|
|
}))
|
|
);
|
|
|
|
const userObj = Object.assign({}, user, {
|
|
createdDate: user.createdDate.toString(),
|
|
});
|
|
|
|
const canAddEvents = user.plan !== "FREE" || eventTypes.length < 1;
|
|
|
|
return {
|
|
props: {
|
|
canAddEvents,
|
|
user: userObj,
|
|
// don't display event teams without event types,
|
|
eventTypes: eventTypes.filter((groupBy) => groupBy.eventTypes.length > 0),
|
|
// so we can show a dropdown when the user has teams
|
|
profiles: eventTypes.map((group) => ({
|
|
teamId: group.teamId,
|
|
...group.profile,
|
|
...group.metadata,
|
|
})),
|
|
},
|
|
};
|
|
}
|
|
|
|
export default EventTypesPage;
|