Files
calendar/packages/features/users/components/InvalidAppCredentialsBanner.tsx
T
aedc88f975 feat: show top banner for broken integrations [Cal 3125] (#13720)
* added InvalidAppCredentialBanner

* Create InvalidAppCredentialsBanner.tsx

* Update getUserTopBanners.handler.ts

* Create checkForInvalidAppCredentials.ts

* Update common.json

* Update common.json

* Update getUserTopBanners.handler.ts

* Update checkForInvalidAppCredentials.ts

* also included team's credentials

* reverse yarnlock changes

* fix .env

* fixed types

* chore: translation

---------

Co-authored-by: Udit Takkar <udit222001@gmail.com>
2024-02-29 19:58:46 +00:00

50 lines
1.2 KiB
TypeScript

import { useRouter } from "next/navigation";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { type RouterOutputs } from "@calcom/trpc";
import { TopBanner } from "@calcom/ui";
export type InvalidAppCredentialBannersProps = {
data: RouterOutputs["viewer"]["getUserTopBanners"]["invalidAppCredentialBanners"];
};
export function InvalidAppCredentialBanners({ data }: InvalidAppCredentialBannersProps) {
if (data.length === 0) {
return null; // No need to show banner if the array is empty
}
return (
<div>
{data.map((app) => (
<InvalidAppCredentialBanner key={app.slug} name={app.name} slug={app.slug} />
))}
</div>
);
}
export type InvalidAppCredentialBannerProps = {
name: string;
slug: string;
};
export function InvalidAppCredentialBanner({ name, slug }: InvalidAppCredentialBannerProps) {
const { t } = useLocale();
const router = useRouter();
const handleClick = () => {
router.push(`/apps/${slug}`);
};
return (
<TopBanner
text={` ${t("invalid_credential", { appName: name })} `}
variant="warning"
actions={
<button className="border-b border-b-black" onClick={handleClick}>
{t("invalid_credential_action")}
</button>
}
/>
);
}