38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { getServerSession } from "next-auth";
|
|
import dynamic from "next/dynamic";
|
|
import React from "react";
|
|
|
|
import { AUTH_OPTIONS } from "@calcom/features/auth/lib/next-auth-options";
|
|
import { OrganizationRepository } from "@calcom/lib/server/repository/organization";
|
|
|
|
import type { SettingsLayoutProps } from "./SettingsLayoutAppDirClient";
|
|
|
|
const SettingsLayoutAppDirClient = dynamic(() => import("./SettingsLayoutAppDirClient"), {
|
|
ssr: false,
|
|
});
|
|
|
|
type SettingsLayoutAppDir = Omit<SettingsLayoutProps, "currentOrg" | "otherTeams">;
|
|
|
|
export default async function SettingsLayoutAppDir(props: SettingsLayoutAppDir) {
|
|
const session = await getServerSession(AUTH_OPTIONS);
|
|
const userId = session?.user?.id ?? -1;
|
|
const orgId = session?.user?.org?.id ?? -1;
|
|
let currentOrg = null;
|
|
let otherTeams = null;
|
|
|
|
try {
|
|
currentOrg = await OrganizationRepository.findCurrentOrg({ userId, orgId });
|
|
} catch (err) {}
|
|
|
|
try {
|
|
otherTeams = await OrganizationRepository.findTeamsInOrgIamNotPartOf({
|
|
userId,
|
|
parentId: orgId,
|
|
});
|
|
} catch (err) {}
|
|
|
|
return <SettingsLayoutAppDirClient {...props} currentOrg={currentOrg} otherTeams={otherTeams} />;
|
|
}
|
|
|
|
export const getLayout = async (page: React.ReactElement) => await SettingsLayoutAppDir({ children: page });
|