mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
a14e2aecfb
[web] Managed Users: Update Group Member Management UI GitOrigin-RevId: 6896951927f0e3220db59dda208d7cfe9c6c309e
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import { User } from '../../../../../../types/group-management/user'
|
|
|
|
type ManagedUserStatusProps = {
|
|
user: User
|
|
}
|
|
export default function ManagedUserStatus({ user }: ManagedUserStatusProps) {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<span>
|
|
{user.isEntityAdmin ? (
|
|
<>
|
|
<span className="security-state-group-admin" />
|
|
</>
|
|
) : (
|
|
<>
|
|
{user.invite ? (
|
|
<span className="security-state-invite-pending">
|
|
<i
|
|
className="fa fa-clock-o"
|
|
aria-hidden="true"
|
|
aria-label={t('pending_invite')}
|
|
/>
|
|
|
|
{t('managed')}
|
|
</span>
|
|
) : (
|
|
<>
|
|
{user.enrollment?.managedBy ? (
|
|
<span className="security-state-managed">
|
|
<i
|
|
className="fa fa-check"
|
|
aria-hidden="true"
|
|
aria-label={t('managed')}
|
|
/>
|
|
|
|
{t('managed')}
|
|
</span>
|
|
) : (
|
|
<span className="security-state-not-managed">
|
|
<i
|
|
className="fa fa-times"
|
|
aria-hidden="true"
|
|
aria-label={t('not_managed')}
|
|
/>
|
|
|
|
{t('managed')}
|
|
</span>
|
|
)}
|
|
</>
|
|
)}
|
|
</>
|
|
)}
|
|
</span>
|
|
)
|
|
}
|