2022-08-26 00:11:41 +00:00
|
|
|
import { GetServerSidePropsContext } from "next";
|
|
|
|
|
|
|
|
import getApps from "@calcom/app-store/utils";
|
2022-09-09 12:57:31 +00:00
|
|
|
import { getSession } from "@calcom/lib/auth";
|
2022-08-26 00:11:41 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
import prisma from "@calcom/prisma";
|
|
|
|
import { Icon } from "@calcom/ui";
|
|
|
|
import Dropdown, {
|
|
|
|
DropdownMenuContent,
|
|
|
|
DropdownMenuItem,
|
|
|
|
DropdownMenuTrigger,
|
|
|
|
} from "@calcom/ui/v2/core/Dropdown";
|
2022-08-30 19:46:52 +00:00
|
|
|
import Meta from "@calcom/ui/v2/core/Meta";
|
2022-09-09 12:57:31 +00:00
|
|
|
import { getLayout } from "@calcom/ui/v2/core/layouts/SettingsLayout";
|
|
|
|
import { List, ListItem, ListItemText, ListItemTitle } from "@calcom/ui/v2/modules/List";
|
2022-08-26 00:11:41 +00:00
|
|
|
import DisconnectIntegration from "@calcom/ui/v2/modules/integrations/DisconnectIntegration";
|
|
|
|
|
|
|
|
import { inferSSRProps } from "@lib/types/inferSSRProps";
|
|
|
|
|
|
|
|
const ConferencingLayout = (props: inferSSRProps<typeof getServerSideProps>) => {
|
|
|
|
const { t } = useLocale();
|
|
|
|
|
|
|
|
const { apps } = props;
|
|
|
|
|
|
|
|
// Error reason: getaddrinfo EAI_AGAIN http
|
|
|
|
// const query = trpc.useQuery(["viewer.integrations", { variant: "conferencing", onlyInstalled: true }], {
|
|
|
|
// suspense: true,
|
|
|
|
// });
|
|
|
|
|
|
|
|
return (
|
2022-09-09 12:57:31 +00:00
|
|
|
<div className="w-full bg-white sm:mx-0 xl:mt-0">
|
2022-08-30 19:46:52 +00:00
|
|
|
<Meta title="conferencing" description="conferencing_description" />
|
2022-09-09 12:57:31 +00:00
|
|
|
<List>
|
|
|
|
{apps.map((app) => (
|
|
|
|
<ListItem className="flex-col border-0" key={app.title}>
|
|
|
|
<div className="flex w-full flex-1 items-center space-x-3 pb-5 pl-1 pt-1 rtl:space-x-reverse">
|
|
|
|
{
|
|
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
|
|
app.logo && <img className="h-10 w-10" src={app.logo} alt={app.title} />
|
|
|
|
}
|
|
|
|
<div className="flex-grow truncate pl-2">
|
|
|
|
<ListItemTitle component="h3" className="mb-1 space-x-2">
|
|
|
|
<h3 className="truncate text-sm font-medium text-neutral-900">{app.title}</h3>
|
|
|
|
</ListItemTitle>
|
|
|
|
<ListItemText component="p">{app.description}</ListItemText>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<Dropdown>
|
|
|
|
<DropdownMenuTrigger className="focus:ring-brand-900 block h-[36px] w-auto justify-center rounded-md border border-gray-200 bg-transparent text-gray-700 focus:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-offset-1">
|
|
|
|
<Icon.FiMoreHorizontal className="group-hover:text-gray-800" />
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
<DropdownMenuContent>
|
|
|
|
<DropdownMenuItem>
|
|
|
|
<DisconnectIntegration
|
|
|
|
credentialId={app.credentialId}
|
|
|
|
label={t("remove_app")}
|
|
|
|
trashIcon
|
|
|
|
isGlobal={app.isGlobal}
|
|
|
|
/>
|
|
|
|
</DropdownMenuItem>
|
|
|
|
</DropdownMenuContent>
|
|
|
|
</Dropdown>
|
|
|
|
</div>
|
|
|
|
{/* <div className="flex w-1/2 space-x-6">
|
|
|
|
<img className="h-10 w-10" src={app.logo} alt={app.title} />
|
2022-08-26 00:11:41 +00:00
|
|
|
|
2022-09-09 12:57:31 +00:00
|
|
|
<div className=" truncate pl-2">
|
|
|
|
<h3 className="truncate text-sm font-medium text-neutral-900">{app.title}</h3>
|
|
|
|
<p className="truncate text-sm text-gray-500">{app.description}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-08-26 00:11:41 +00:00
|
|
|
|
2022-09-09 12:57:31 +00:00
|
|
|
<div>
|
|
|
|
<Dropdown>
|
|
|
|
<DropdownMenuTrigger className="focus:ring-brand-900 block h-[36px] w-auto justify-center rounded-md border border-gray-200 bg-transparent text-gray-700 focus:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-offset-1">
|
|
|
|
<Icon.FiMoreHorizontal className="group-hover:text-gray-800" />
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
<DropdownMenuContent>
|
|
|
|
<DropdownMenuItem>
|
|
|
|
<DisconnectIntegration
|
|
|
|
credentialId={app.credentialId}
|
|
|
|
label={t("remove_app")}
|
|
|
|
trashIcon
|
|
|
|
isGlobal={app.isGlobal}
|
|
|
|
/>
|
|
|
|
</DropdownMenuItem>
|
|
|
|
</DropdownMenuContent>
|
|
|
|
</Dropdown>
|
|
|
|
</div> */}
|
|
|
|
</div>
|
|
|
|
</ListItem>
|
|
|
|
))}
|
|
|
|
</List>
|
2022-08-26 00:11:41 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
ConferencingLayout.getLayout = getLayout;
|
|
|
|
|
|
|
|
export default ConferencingLayout;
|
|
|
|
|
|
|
|
export const getServerSideProps = async (context: GetServerSidePropsContext) => {
|
|
|
|
const session = await getSession(context);
|
|
|
|
|
|
|
|
if (!session?.user?.id) {
|
|
|
|
return { redirect: { permanent: false, destination: "/auth/login" } };
|
|
|
|
}
|
|
|
|
|
|
|
|
const videoCredentials = await prisma.credential.findMany({
|
|
|
|
where: {
|
|
|
|
userId: session.user.id,
|
|
|
|
app: {
|
|
|
|
categories: {
|
|
|
|
has: "video",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const apps = getApps(videoCredentials)
|
|
|
|
.filter((app) => {
|
|
|
|
return app.variant === "conferencing" && app.credentials.length;
|
|
|
|
})
|
|
|
|
.map((app) => {
|
|
|
|
return {
|
|
|
|
slug: app.slug,
|
|
|
|
title: app.title,
|
|
|
|
logo: app.logo,
|
|
|
|
description: app.description,
|
|
|
|
credentialId: app.credentials[0].id,
|
|
|
|
isGlobal: app.isGlobal,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
return { props: { apps } };
|
|
|
|
};
|