* Icon and IconName * Button and ButtonGroup * UserAvatar * AvatarGroup * Avatar * WizardLayout * Dialogs * EmptyScreen * showToast and TextField * Editor * Skeleton * Skeleton * TopBanner and showToast * Button again * more * perf: Remove app-store reference from @calcom/ui * more * Fixing types * Icon * Fixed casing * dropdown * more * Select * more * Badge * List * more * Divider * more * fix * fix type check * refactor * fix * fix * fix * fix * fix * fix * fix * fix type check * fix * fix * fix * fix * more * more * more * more * add index file to components/command * fix * fix * fix * fix imports * fix * fix * fix * fix * fix * fix * fix * fix build errors * fix build errors * fix --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com>
50 lines
1.3 KiB
TypeScript
50 lines
1.3 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/components/top-banner";
|
|
|
|
export type InvalidAppCredentialBannersProps = {
|
|
data: RouterOutputs["viewer"]["me"]["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>
|
|
}
|
|
/>
|
|
);
|
|
}
|