overleaf/services/web/frontend/js/features/settings/components/security-section.tsx
Jessica Lawshe d65bba566c Merge pull request #17315 from overleaf/ab-accounts-settings-sso-status
[web] Show Group SSO linking status on the account settings page

GitOrigin-RevId: ae45e1bd7a90a672c5fb023e7f3e603a00e364e5
2024-03-12 09:03:43 +00:00

105 lines
3.9 KiB
TypeScript

import MaterialIcon from '@/shared/components/material-icon'
import { Trans, useTranslation } from 'react-i18next'
import { GroupSSOLinkingStatus } from '../../../../../types/subscription/sso'
import getMeta from '../../../utils/meta'
function SecuritySection() {
const { t } = useTranslation()
const memberOfSSOEnabledGroups = getMeta(
'ol-memberOfSSOEnabledGroups',
[]
) as GroupSSOLinkingStatus[]
return (
<>
{memberOfSSOEnabledGroups?.length > 0 ? (
<>
<h3>{t('security')}</h3>
{memberOfSSOEnabledGroups.map(
({
groupId,
linked,
groupName,
adminEmail,
}: GroupSSOLinkingStatus) => (
<div key={groupId} className="security-row">
<span className="icon">
<MaterialIcon type="key" />
</span>
<div className="text">
<span className="line-header">
<b>{t('single_sign_on_sso')}</b>{' '}
{linked ? (
<span className="status-label status-label-configured">
{t('active')}
</span>
) : (
<span className="status-label status-label-ready">
{t('ready_to_set_up')}
</span>
)}
</span>
<div>
{linked ? (
groupName ? (
<Trans
i18nKey="sso_user_explanation_enabled_with_group_name"
// eslint-disable-next-line react/jsx-key
components={[<b />]}
values={{ groupName }}
shouldUnescape
tOptions={{ interpolation: { escapeValue: true } }}
/>
) : (
<Trans
i18nKey="sso_user_explanation_enabled_with_admin_email"
// eslint-disable-next-line react/jsx-key
components={[<b />]}
values={{ adminEmail }}
shouldUnescape
tOptions={{ interpolation: { escapeValue: true } }}
/>
)
) : groupName ? (
<Trans
i18nKey="sso_user_explanation_ready_with_group_name"
// eslint-disable-next-line react/jsx-key
components={[<b />, <b />]}
values={{ groupName, buttonText: t('set_up_sso') }}
shouldUnescape
tOptions={{ interpolation: { escapeValue: true } }}
/>
) : (
<Trans
i18nKey="sso_user_explanation_ready_with_admin_email"
// eslint-disable-next-line react/jsx-key
components={[<b />, <b />]}
values={{ adminEmail, buttonText: t('set_up_sso') }}
shouldUnescape
tOptions={{ interpolation: { escapeValue: true } }}
/>
)}
</div>
</div>
{linked ? null : (
<div className="button-column">
<a
className="btn btn-primary"
href={`/subscription/${groupId}/sso_enrollment`}
>
{t('set_up_sso')}
</a>
</div>
)}
</div>
)
)}
<hr />
</>
) : null}
</>
)
}
export default SecuritySection