mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #7883 from overleaf/ii-institution-autocomplete
Institution autocomplete GitOrigin-RevId: f0a42794ce9071ec7c0c5c2c4d499e8a027811f8
This commit is contained in:
parent
426aaa8b4b
commit
920a5921c7
8 changed files with 293 additions and 52 deletions
|
@ -50,22 +50,27 @@ function AddEmail() {
|
||||||
setNewEmailMatchedInstitution(institution || null)
|
setNewEmailMatchedInstitution(institution || null)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const getSelectedKnownUniversityId = (): number | undefined => {
|
||||||
|
if (countryCode) {
|
||||||
|
return universities[countryCode]?.find(
|
||||||
|
({ name }) => name === universityName
|
||||||
|
)?.id
|
||||||
|
}
|
||||||
|
|
||||||
|
return newEmailMatchedInstitution?.university.id
|
||||||
|
}
|
||||||
|
|
||||||
const handleAddNewEmail = () => {
|
const handleAddNewEmail = () => {
|
||||||
const selectedKnownUniversity = countryCode
|
const selectedKnownUniversityId = getSelectedKnownUniversityId()
|
||||||
? universities[countryCode]?.find(({ name }) => name === universityName)
|
const knownUniversityData = selectedKnownUniversityId && {
|
||||||
: undefined
|
university: {
|
||||||
|
id: selectedKnownUniversityId,
|
||||||
const knownUniversityData = universityName &&
|
},
|
||||||
selectedKnownUniversity && {
|
role,
|
||||||
university: {
|
department,
|
||||||
id: selectedKnownUniversity.id,
|
}
|
||||||
},
|
|
||||||
role,
|
|
||||||
department,
|
|
||||||
}
|
|
||||||
|
|
||||||
const unknownUniversityData = universityName &&
|
const unknownUniversityData = universityName &&
|
||||||
!selectedKnownUniversity && {
|
!selectedKnownUniversityId && {
|
||||||
university: {
|
university: {
|
||||||
name: universityName,
|
name: universityName,
|
||||||
country_code: countryCode,
|
country_code: countryCode,
|
||||||
|
@ -136,6 +141,7 @@ function AddEmail() {
|
||||||
setRole={setRole}
|
setRole={setRole}
|
||||||
department={department}
|
department={department}
|
||||||
setDepartment={setDepartment}
|
setDepartment={setDepartment}
|
||||||
|
newEmailMatchedInstitution={newEmailMatchedInstitution}
|
||||||
/>
|
/>
|
||||||
</Cell>
|
</Cell>
|
||||||
</Col>
|
</Col>
|
||||||
|
|
|
@ -52,7 +52,7 @@ function Downshift({ setValue, inputRef }: CountryInputProps) {
|
||||||
}
|
}
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div {...getComboboxProps()} className="form-group mb-2 ui-select-toggle">
|
<div {...getComboboxProps()} className="ui-select-toggle">
|
||||||
{/* eslint-disable-next-line jsx-a11y/label-has-for */}
|
{/* eslint-disable-next-line jsx-a11y/label-has-for */}
|
||||||
<label {...getLabelProps()} className="sr-only">
|
<label {...getLabelProps()} className="sr-only">
|
||||||
{t('country')}
|
{t('country')}
|
||||||
|
|
|
@ -7,8 +7,10 @@ import defaultRoles from '../../../data/roles'
|
||||||
import defaultDepartments from '../../../data/departments'
|
import defaultDepartments from '../../../data/departments'
|
||||||
import { CountryCode } from '../../../data/countries-list'
|
import { CountryCode } from '../../../data/countries-list'
|
||||||
import { University } from '../../../../../../../types/university'
|
import { University } from '../../../../../../../types/university'
|
||||||
|
import { InstitutionInfo } from './input'
|
||||||
import { getJSON } from '../../../../../infrastructure/fetch-json'
|
import { getJSON } from '../../../../../infrastructure/fetch-json'
|
||||||
import useAsync from '../../../../../shared/hooks/use-async'
|
import useAsync from '../../../../../shared/hooks/use-async'
|
||||||
|
import UniversityName from './university-name'
|
||||||
|
|
||||||
type InstitutionFieldsProps = {
|
type InstitutionFieldsProps = {
|
||||||
countryCode: CountryCode | null
|
countryCode: CountryCode | null
|
||||||
|
@ -23,6 +25,7 @@ type InstitutionFieldsProps = {
|
||||||
setRole: React.Dispatch<React.SetStateAction<string>>
|
setRole: React.Dispatch<React.SetStateAction<string>>
|
||||||
department: string
|
department: string
|
||||||
setDepartment: React.Dispatch<React.SetStateAction<string>>
|
setDepartment: React.Dispatch<React.SetStateAction<string>>
|
||||||
|
newEmailMatchedInstitution: InstitutionInfo | null
|
||||||
}
|
}
|
||||||
|
|
||||||
function InstitutionFields({
|
function InstitutionFields({
|
||||||
|
@ -36,6 +39,7 @@ function InstitutionFields({
|
||||||
setRole,
|
setRole,
|
||||||
department,
|
department,
|
||||||
setDepartment,
|
setDepartment,
|
||||||
|
newEmailMatchedInstitution,
|
||||||
}: InstitutionFieldsProps) {
|
}: InstitutionFieldsProps) {
|
||||||
const { t } = useTranslation()
|
const { t } = useTranslation()
|
||||||
const countryRef = useRef<HTMLInputElement | null>(null)
|
const countryRef = useRef<HTMLInputElement | null>(null)
|
||||||
|
@ -59,6 +63,16 @@ function InstitutionFields({
|
||||||
}
|
}
|
||||||
}, [setIsUniversityDirty, universityName])
|
}, [setIsUniversityDirty, universityName])
|
||||||
|
|
||||||
|
// If the institution selected by autocompletion has changed
|
||||||
|
// hide the fields visibility and reset values
|
||||||
|
useEffect(() => {
|
||||||
|
if (!newEmailMatchedInstitution) {
|
||||||
|
setIsInstitutionFieldsVisible(false)
|
||||||
|
setRole('')
|
||||||
|
setDepartment('')
|
||||||
|
}
|
||||||
|
}, [newEmailMatchedInstitution, setRole, setDepartment])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const selectedKnownUniversity = countryCode
|
const selectedKnownUniversity = countryCode
|
||||||
? universities[countryCode]?.find(({ name }) => name === universityName)
|
? universities[countryCode]?.find(({ name }) => name === universityName)
|
||||||
|
@ -100,7 +114,21 @@ function InstitutionFields({
|
||||||
setIsInstitutionFieldsVisible(true)
|
setIsInstitutionFieldsVisible(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isInstitutionFieldsVisible) {
|
const handleSelectUniversityManually = () => {
|
||||||
|
setRole('')
|
||||||
|
setDepartment('')
|
||||||
|
handleShowInstitutionFields()
|
||||||
|
}
|
||||||
|
|
||||||
|
const isLetUsKnowVisible =
|
||||||
|
!newEmailMatchedInstitution && !isInstitutionFieldsVisible
|
||||||
|
const isAutocompletedInstitutionVisible =
|
||||||
|
newEmailMatchedInstitution && !isInstitutionFieldsVisible
|
||||||
|
const isRoleAndDepartmentVisible =
|
||||||
|
isAutocompletedInstitutionVisible || isUniversityDirty
|
||||||
|
|
||||||
|
// Is the email affiliated with an institution?
|
||||||
|
if (isLetUsKnowVisible) {
|
||||||
return (
|
return (
|
||||||
<EmailAffiliatedWithInstitution onClick={handleShowInstitutionFields} />
|
<EmailAffiliatedWithInstitution onClick={handleShowInstitutionFields} />
|
||||||
)
|
)
|
||||||
|
@ -108,24 +136,39 @@ function InstitutionFields({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="form-group mb-2">
|
{isAutocompletedInstitutionVisible ? (
|
||||||
<CountryInput
|
// Display the institution name after autocompletion
|
||||||
id="new-email-country-input"
|
<UniversityName
|
||||||
setValue={setCountryCode}
|
name={newEmailMatchedInstitution.university.name}
|
||||||
ref={countryRef}
|
onClick={handleSelectUniversityManually}
|
||||||
/>
|
/>
|
||||||
</div>
|
) : (
|
||||||
<div className="form-group mb-2">
|
// Display the country and university fields
|
||||||
<DownshiftInput
|
<>
|
||||||
items={getUniversityItems()}
|
<div className="form-group mb-2">
|
||||||
inputValue={universityName}
|
<CountryInput
|
||||||
placeholder={t('university')}
|
id="new-email-country-input"
|
||||||
label={t('university')}
|
setValue={setCountryCode}
|
||||||
setValue={setUniversityName}
|
ref={countryRef}
|
||||||
disabled={!countryCode}
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
<div
|
||||||
{isUniversityDirty && (
|
className={`form-group ${
|
||||||
|
isRoleAndDepartmentVisible ? 'mb-2' : 'mb-0'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<DownshiftInput
|
||||||
|
items={getUniversityItems()}
|
||||||
|
inputValue={universityName}
|
||||||
|
placeholder={t('university')}
|
||||||
|
label={t('university')}
|
||||||
|
setValue={setUniversityName}
|
||||||
|
disabled={!countryCode}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{isRoleAndDepartmentVisible && (
|
||||||
<>
|
<>
|
||||||
<div className="form-group mb-2">
|
<div className="form-group mb-2">
|
||||||
<DownshiftInput
|
<DownshiftInput
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
import { Button } from 'react-bootstrap'
|
||||||
|
|
||||||
|
type UniversityNameProps = {
|
||||||
|
name: string
|
||||||
|
onClick: () => void
|
||||||
|
}
|
||||||
|
|
||||||
|
function UniversityName({ name, onClick }: UniversityNameProps) {
|
||||||
|
const { t } = useTranslation()
|
||||||
|
|
||||||
|
return (
|
||||||
|
<p className="pt-1">
|
||||||
|
{name}
|
||||||
|
<span className="small">
|
||||||
|
{' '}
|
||||||
|
<Button className="btn-inline-link" onClick={onClick}>
|
||||||
|
{t('change')}
|
||||||
|
</Button>
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default UniversityName
|
|
@ -66,7 +66,7 @@ function Downshift({
|
||||||
}
|
}
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div {...getComboboxProps()} className="form-group mb-2">
|
<div {...getComboboxProps()}>
|
||||||
{/* eslint-disable-next-line jsx-a11y/label-has-for */}
|
{/* eslint-disable-next-line jsx-a11y/label-has-for */}
|
||||||
<label {...getLabelProps()} className="sr-only">
|
<label {...getLabelProps()} className="sr-only">
|
||||||
{label}
|
{label}
|
||||||
|
|
|
@ -118,21 +118,25 @@ function InstitutionAndRole({ userEmailData }: InstitutionAndRoleProps) {
|
||||||
) : (
|
) : (
|
||||||
<div className="affiliation-change-container small">
|
<div className="affiliation-change-container small">
|
||||||
<form onSubmit={handleSubmit}>
|
<form onSubmit={handleSubmit}>
|
||||||
<DownshiftInput
|
<div className="form-group mb-2">
|
||||||
items={[...defaultRoles]}
|
<DownshiftInput
|
||||||
inputValue={role}
|
items={[...defaultRoles]}
|
||||||
placeholder={t('role')}
|
inputValue={role}
|
||||||
label={t('role')}
|
placeholder={t('role')}
|
||||||
setValue={setRole}
|
label={t('role')}
|
||||||
ref={roleRef}
|
setValue={setRole}
|
||||||
/>
|
ref={roleRef}
|
||||||
<DownshiftInput
|
/>
|
||||||
items={departments}
|
</div>
|
||||||
inputValue={department}
|
<div className="form-group mb-2">
|
||||||
placeholder={t('department')}
|
<DownshiftInput
|
||||||
label={t('department')}
|
items={departments}
|
||||||
setValue={setDepartment}
|
inputValue={department}
|
||||||
/>
|
placeholder={t('department')}
|
||||||
|
label={t('department')}
|
||||||
|
setValue={setDepartment}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<Button
|
<Button
|
||||||
bsSize="small"
|
bsSize="small"
|
||||||
bsStyle="success"
|
bsStyle="success"
|
||||||
|
|
|
@ -62,7 +62,7 @@ const bazFakeInstitution = {
|
||||||
team_id: null,
|
team_id: null,
|
||||||
}
|
}
|
||||||
|
|
||||||
const fakeInstitutionDomain = [
|
const fakeInstitutionDomain1 = [
|
||||||
{
|
{
|
||||||
university: {
|
university: {
|
||||||
id: 1234,
|
id: 1234,
|
||||||
|
@ -74,6 +74,18 @@ const fakeInstitutionDomain = [
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
const fakeInstitutionDomain2 = [
|
||||||
|
{
|
||||||
|
university: {
|
||||||
|
id: 5678,
|
||||||
|
ssoEnabled: false,
|
||||||
|
name: 'Fake Auto Complete University',
|
||||||
|
},
|
||||||
|
hostname: 'fake-autocomplete.edu',
|
||||||
|
confirmed: true,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
export function defaultSetupMocks(fetchMock) {
|
export function defaultSetupMocks(fetchMock) {
|
||||||
fetchMock
|
fetchMock
|
||||||
.get(/\/user\/emails/, fakeUsersData, { delay: MOCK_DELAY })
|
.get(/\/user\/emails/, fakeUsersData, { delay: MOCK_DELAY })
|
||||||
|
@ -82,7 +94,8 @@ export function defaultSetupMocks(fetchMock) {
|
||||||
.get(/\/institutions\/list\?country_code=.*/, fakeInstitutions, {
|
.get(/\/institutions\/list\?country_code=.*/, fakeInstitutions, {
|
||||||
delay: MOCK_DELAY,
|
delay: MOCK_DELAY,
|
||||||
})
|
})
|
||||||
.get(/\/institutions\/domains/, fakeInstitutionDomain)
|
.get(/\/institutions\/domains\?hostname=a/, fakeInstitutionDomain1)
|
||||||
|
.get(/\/institutions\/domains\?hostname=f/, fakeInstitutionDomain2)
|
||||||
.post(/\/user\/emails\/*/, 200, {
|
.post(/\/user\/emails\/*/, 200, {
|
||||||
delay: MOCK_DELAY,
|
delay: MOCK_DELAY,
|
||||||
})
|
})
|
||||||
|
|
|
@ -46,7 +46,7 @@ const institutionDomainData = [
|
||||||
hostname: 'autocomplete.edu',
|
hostname: 'autocomplete.edu',
|
||||||
confirmed: true,
|
confirmed: true,
|
||||||
},
|
},
|
||||||
]
|
] as const
|
||||||
|
|
||||||
function resetFetchMock() {
|
function resetFetchMock() {
|
||||||
fetchMock.reset()
|
fetchMock.reset()
|
||||||
|
@ -391,4 +391,154 @@ describe('<EmailsSection />', function () {
|
||||||
screen.getByText(userEmailData.affiliation.role, { exact: false })
|
screen.getByText(userEmailData.affiliation.role, { exact: false })
|
||||||
screen.getByText(userEmailData.affiliation.department, { exact: false })
|
screen.getByText(userEmailData.affiliation.department, { exact: false })
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('shows country, university, role and department fields based on whether `change` was clicked or not', async function () {
|
||||||
|
const institutionDomainDataCopy = [
|
||||||
|
{
|
||||||
|
...institutionDomainData[0],
|
||||||
|
university: {
|
||||||
|
...institutionDomainData[0].university,
|
||||||
|
ssoEnabled: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
const hostnameFirstChar = institutionDomainDataCopy[0].hostname.charAt(0)
|
||||||
|
fetchMock.get('/user/emails?ensureAffiliation=true', [])
|
||||||
|
render(<EmailsSection />)
|
||||||
|
|
||||||
|
await fetchMock.flush(true)
|
||||||
|
fetchMock.reset()
|
||||||
|
fetchMock.get(
|
||||||
|
`/institutions/domains?hostname=${hostnameFirstChar}&limit=1`,
|
||||||
|
institutionDomainDataCopy
|
||||||
|
)
|
||||||
|
|
||||||
|
await userEvent.click(
|
||||||
|
screen.getByRole('button', {
|
||||||
|
name: /add another email/i,
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
await userEvent.type(
|
||||||
|
screen.getByLabelText(/email/i),
|
||||||
|
`user@${hostnameFirstChar}`
|
||||||
|
)
|
||||||
|
|
||||||
|
await userEvent.keyboard('{Tab}')
|
||||||
|
await fetchMock.flush(true)
|
||||||
|
fetchMock.reset()
|
||||||
|
|
||||||
|
expect(
|
||||||
|
screen.queryByRole('textbox', {
|
||||||
|
name: /country/i,
|
||||||
|
})
|
||||||
|
).to.be.null
|
||||||
|
expect(
|
||||||
|
screen.queryByRole('textbox', {
|
||||||
|
name: /university/i,
|
||||||
|
})
|
||||||
|
).to.be.null
|
||||||
|
screen.getByRole('textbox', {
|
||||||
|
name: /role/i,
|
||||||
|
})
|
||||||
|
screen.getByRole('textbox', {
|
||||||
|
name: /department/i,
|
||||||
|
})
|
||||||
|
|
||||||
|
await userEvent.click(screen.getByRole('button', { name: /change/i }))
|
||||||
|
|
||||||
|
screen.getByRole('textbox', {
|
||||||
|
name: /country/i,
|
||||||
|
})
|
||||||
|
screen.getByRole('textbox', {
|
||||||
|
name: /university/i,
|
||||||
|
})
|
||||||
|
expect(
|
||||||
|
screen.queryByRole('textbox', {
|
||||||
|
name: /role/i,
|
||||||
|
})
|
||||||
|
).to.be.null
|
||||||
|
expect(
|
||||||
|
screen.queryByRole('textbox', {
|
||||||
|
name: /department/i,
|
||||||
|
})
|
||||||
|
).to.be.null
|
||||||
|
})
|
||||||
|
|
||||||
|
it('displays institution name with change button when autocompleted and adds new record', async function () {
|
||||||
|
const institutionDomainDataCopy = [
|
||||||
|
{
|
||||||
|
...institutionDomainData[0],
|
||||||
|
university: {
|
||||||
|
...institutionDomainData[0].university,
|
||||||
|
ssoEnabled: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
const hostnameFirstChar = institutionDomainDataCopy[0].hostname.charAt(0)
|
||||||
|
fetchMock.get('/user/emails?ensureAffiliation=true', [])
|
||||||
|
render(<EmailsSection />)
|
||||||
|
|
||||||
|
await fetchMock.flush(true)
|
||||||
|
fetchMock.reset()
|
||||||
|
fetchMock.get(
|
||||||
|
`/institutions/domains?hostname=${hostnameFirstChar}&limit=1`,
|
||||||
|
institutionDomainDataCopy
|
||||||
|
)
|
||||||
|
|
||||||
|
await userEvent.click(
|
||||||
|
screen.getByRole('button', {
|
||||||
|
name: /add another email/i,
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
await userEvent.type(
|
||||||
|
screen.getByLabelText(/email/i),
|
||||||
|
`user@${hostnameFirstChar}`
|
||||||
|
)
|
||||||
|
|
||||||
|
await userEvent.keyboard('{Tab}')
|
||||||
|
await fetchMock.flush(true)
|
||||||
|
fetchMock.reset()
|
||||||
|
|
||||||
|
screen.getByText(institutionDomainDataCopy[0].university.name)
|
||||||
|
|
||||||
|
const userEmailDataCopy = {
|
||||||
|
...userEmailData,
|
||||||
|
affiliation: {
|
||||||
|
...userEmailData.affiliation,
|
||||||
|
institution: {
|
||||||
|
...userEmailData.affiliation.institution,
|
||||||
|
name: institutionDomainDataCopy[0].university.name,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
fetchMock
|
||||||
|
.get('/user/emails?ensureAffiliation=true', [userEmailDataCopy])
|
||||||
|
.post('/user/emails', 200)
|
||||||
|
|
||||||
|
await userEvent.type(
|
||||||
|
screen.getByRole('textbox', { name: /role/i }),
|
||||||
|
userEmailData.affiliation.role
|
||||||
|
)
|
||||||
|
await userEvent.type(
|
||||||
|
screen.getByRole('textbox', { name: /department/i }),
|
||||||
|
userEmailData.affiliation.department
|
||||||
|
)
|
||||||
|
await userEvent.click(
|
||||||
|
screen.getByRole('button', {
|
||||||
|
name: /add new email/i,
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
await fetchMock.flush(true)
|
||||||
|
fetchMock.reset()
|
||||||
|
|
||||||
|
screen.getByText(userEmailDataCopy.affiliation.institution.name, {
|
||||||
|
exact: false,
|
||||||
|
})
|
||||||
|
screen.getByText(userEmailDataCopy.affiliation.role, { exact: false })
|
||||||
|
screen.getByText(userEmailDataCopy.affiliation.department, { exact: false })
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue