perf: ssr for /settings/organizations/teams/other (#20927)

This commit is contained in:
Benny Joo
2025-04-24 09:42:09 +05:30
committed by GitHub
parent 80f2e61189
commit 4e8d5cebca
7 changed files with 73 additions and 55 deletions
@@ -1,14 +1,16 @@
"use client";
import { useState } from "react";
import { trackFormbricksAction } from "@calcom/lib/formbricks-client";
import type { RouterOutputs } from "@calcom/trpc/react";
import type { OrganizationRepository } from "@calcom/lib/server/repository/organization";
import { trpc } from "@calcom/trpc/react";
import { showToast } from "@calcom/ui/components/toast";
import OtherTeamListItem from "./OtherTeamListItem";
interface Props {
teams: RouterOutputs["viewer"]["organizations"]["listOtherTeams"];
teams: Awaited<ReturnType<typeof OrganizationRepository.findTeamsInOrgIamNotPartOf>>;
pending?: boolean;
}
@@ -1,24 +1,19 @@
import SkeletonLoaderTeamList from "@calcom/ee/teams/components/SkeletonloaderTeamList";
"use client";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { trpc } from "@calcom/trpc/react";
import { Alert } from "@calcom/ui/components/alert";
import type { OrganizationRepository } from "@calcom/lib/server/repository/organization";
import { EmptyScreen } from "@calcom/ui/components/empty-screen";
import OtherTeamList from "./OtherTeamList";
export function OtherTeamsListing() {
type OtherTeamsListingProps = {
teams: Awaited<ReturnType<typeof OrganizationRepository.findTeamsInOrgIamNotPartOf>>;
};
export function OtherTeamsListing({ teams }: OtherTeamsListingProps) {
const { t } = useLocale();
const { data: teams, isPending, error } = trpc.viewer.organizations.listOtherTeams.useQuery();
if (isPending) {
return <SkeletonLoaderTeamList />;
}
return (
<>
{!!error && <Alert severity="error" title={error.message} />}
{teams && teams.length > 0 ? (
<OtherTeamList teams={teams} />
) : (
@@ -1,16 +0,0 @@
"use client";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { OtherTeamsListing } from "./../components/OtherTeamsListing";
const OtherTeamListingView = (): React.ReactElement => {
const { t } = useLocale();
return (
<>
<OtherTeamsListing />
</>
);
};
export default OtherTeamListingView;