mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-12 06:11:35 -05:00
06979babdb
GitOrigin-RevId: 615f95aca66b0c80e54a057cabd61c74b8c3f12d
38 lines
1 KiB
TypeScript
38 lines
1 KiB
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import { User } from '../../../../../../types/group-management/user'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
type SSOStatusProps = {
|
|
user: User
|
|
}
|
|
export default function SSOStatus({ user }: SSOStatusProps) {
|
|
const { t } = useTranslation()
|
|
const invitedSSO = (
|
|
<span className="security-state-invite-pending">
|
|
<MaterialIcon
|
|
type="schedule"
|
|
category="outlined"
|
|
accessibilityLabel={t('pending_invite')}
|
|
/>
|
|
{t('sso')}
|
|
</span>
|
|
)
|
|
const acceptedSSO = (
|
|
<span className="security-state-managed">
|
|
<MaterialIcon type="check" accessibilityLabel={t('sso_linked')} />
|
|
{t('sso')}
|
|
</span>
|
|
)
|
|
const notAcceptedSSO = (
|
|
<span className="security-state-not-managed">
|
|
<MaterialIcon type="close" accessibilityLabel={t('sso_unlinked')} />
|
|
{t('sso')}
|
|
</span>
|
|
)
|
|
|
|
if (user.invite) {
|
|
return invitedSSO
|
|
}
|
|
|
|
return user.enrollment?.sso ? acceptedSSO : notAcceptedSSO
|
|
}
|