mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
a206eaa731
[web] Link accounts as primary button GitOrigin-RevId: c5b8c7444c354876e368bcc1973c4c44b31494cb
157 lines
4.9 KiB
TypeScript
157 lines
4.9 KiB
TypeScript
import { useState } from 'react'
|
|
import { Trans, useTranslation } from 'react-i18next'
|
|
import { UserEmailData } from '../../../../../../types/user-email'
|
|
import { Button, Row, Col } from 'react-bootstrap'
|
|
import Email from './email'
|
|
import InstitutionAndRole from './institution-and-role'
|
|
import EmailCell from './cell'
|
|
import Actions from './actions'
|
|
import { institutionAlreadyLinked } from '../../utils/selectors'
|
|
import { useUserEmailsContext } from '../../context/user-email-context'
|
|
import getMeta from '../../../../utils/meta'
|
|
import { ExposedSettings } from '../../../../../../types/exposed-settings'
|
|
import { ssoAvailableForInstitution } from '../../utils/sso'
|
|
import ReconfirmationInfo from './reconfirmation-info'
|
|
|
|
type EmailsRowProps = {
|
|
userEmailData: UserEmailData
|
|
}
|
|
|
|
function EmailsRow({ userEmailData }: EmailsRowProps) {
|
|
const hasSSOAffiliation = Boolean(
|
|
userEmailData.affiliation &&
|
|
ssoAvailableForInstitution(userEmailData.affiliation.institution)
|
|
)
|
|
|
|
return (
|
|
<>
|
|
<Row>
|
|
<Col md={4}>
|
|
<EmailCell>
|
|
<Email userEmailData={userEmailData} />
|
|
</EmailCell>
|
|
</Col>
|
|
<Col md={5}>
|
|
{userEmailData.affiliation?.institution && (
|
|
<EmailCell>
|
|
<InstitutionAndRole userEmailData={userEmailData} />
|
|
</EmailCell>
|
|
)}
|
|
</Col>
|
|
<Col md={3}>
|
|
<EmailCell className="text-md-right">
|
|
<Actions userEmailData={userEmailData} />
|
|
</EmailCell>
|
|
</Col>
|
|
</Row>
|
|
|
|
{hasSSOAffiliation && (
|
|
<SSOAffiliationInfo userEmailData={userEmailData} />
|
|
)}
|
|
<ReconfirmationInfo userEmailData={userEmailData} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
type SSOAffiliationInfoProps = {
|
|
userEmailData: UserEmailData
|
|
}
|
|
|
|
function SSOAffiliationInfo({ userEmailData }: SSOAffiliationInfoProps) {
|
|
const { samlInitPath } = getMeta('ol-ExposedSettings') as ExposedSettings
|
|
const { t } = useTranslation()
|
|
const { state } = useUserEmailsContext()
|
|
|
|
const [linkAccountsButtonDisabled, setLinkAccountsButtonDisabled] =
|
|
useState(false)
|
|
|
|
function handleLinkAccountsButtonClick() {
|
|
setLinkAccountsButtonDisabled(true)
|
|
window.location.href = `${samlInitPath}?university_id=${userEmailData.affiliation?.institution?.id}&auto=/user/settings&email=${userEmailData.email}`
|
|
}
|
|
|
|
if (
|
|
!userEmailData.samlProviderId &&
|
|
institutionAlreadyLinked(state, userEmailData)
|
|
) {
|
|
// if the email is not linked to the institution, but there's another email already linked to that institution
|
|
// no SSO affiliation is displayed, since cannot have multiple emails linked to the same institution
|
|
return null
|
|
}
|
|
|
|
if (userEmailData.samlProviderId) {
|
|
return (
|
|
<Row>
|
|
<Col md={8} mdOffset={4}>
|
|
<EmailCell>
|
|
<p>
|
|
<Trans
|
|
i18nKey="acct_linked_to_institution_acct_2"
|
|
components={
|
|
/* eslint-disable-next-line jsx-a11y/anchor-has-content, react/jsx-key */
|
|
[<strong />]
|
|
}
|
|
values={{
|
|
institutionName: userEmailData.affiliation?.institution.name,
|
|
}}
|
|
/>
|
|
</p>
|
|
</EmailCell>
|
|
</Col>
|
|
</Row>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Row>
|
|
<Col md={8} mdOffset={4}>
|
|
<div className="horizontal-divider" />
|
|
<Row>
|
|
<Col md={9}>
|
|
<EmailCell>
|
|
<p className="small">
|
|
<Trans
|
|
i18nKey="can_link_your_institution_acct_2"
|
|
values={{
|
|
institutionName:
|
|
userEmailData.affiliation?.institution.name,
|
|
}}
|
|
components={
|
|
/* eslint-disable-next-line jsx-a11y/anchor-has-content, react/jsx-key */
|
|
[<strong />]
|
|
}
|
|
/>
|
|
</p>
|
|
<p className="small">
|
|
<Trans
|
|
i18nKey="doing_this_allow_log_in_through_institution_2"
|
|
components={
|
|
/* eslint-disable-next-line jsx-a11y/anchor-has-content, react/jsx-key */
|
|
[<strong />]
|
|
}
|
|
/>{' '}
|
|
<a href="/learn/how-to/Institutional_Login">
|
|
{t('find_out_more_about_institution_login')}
|
|
</a>
|
|
</p>
|
|
</EmailCell>
|
|
</Col>
|
|
<Col md={3} className="text-md-right">
|
|
<EmailCell>
|
|
<Button
|
|
bsStyle="primary"
|
|
className="btn-sm btn-link-accounts"
|
|
disabled={linkAccountsButtonDisabled}
|
|
onClick={handleLinkAccountsButtonClick}
|
|
>
|
|
{t('link_accounts')}
|
|
</Button>
|
|
</EmailCell>
|
|
</Col>
|
|
</Row>
|
|
</Col>
|
|
</Row>
|
|
)
|
|
}
|
|
|
|
export default EmailsRow
|