2
0

first commit

This commit is contained in:
2024-08-09 00:39:27 +02:00
commit 79688abe2e
5698 changed files with 497838 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
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>
}
/>
);
}