import React from "react"; import { Modal } from "@mantine/core"; import { IAuthProvider } from "@/ee/security/types/security.types.ts"; import { SsoSamlForm } from "@/ee/security/components/sso-saml-form.tsx"; import { SSO_PROVIDER } from "@/ee/security/contants.ts"; import { SsoOIDCForm } from "@/ee/security/components/sso-oidc-form.tsx"; import { SsoGoogleForm } from "@/ee/security/components/sso-google-form.tsx"; interface SsoModalProps { opened: boolean; onClose: () => void; provider: IAuthProvider | null; } export default function SsoProviderModal({ opened, onClose, provider, }: SsoModalProps) { if (!provider) { return null; } return ( {provider.type === SSO_PROVIDER.SAML && ( )} {provider.type === SSO_PROVIDER.OIDC && ( )} {provider.type === SSO_PROVIDER.GOOGLE && ( )} ); }