mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
5e08d5f505
GitOrigin-RevId: b99c5c998de9cc36cffffaab5b318331b45e931d
197 lines
5.2 KiB
TypeScript
197 lines
5.2 KiB
TypeScript
import { useState } from 'react'
|
|
import {
|
|
Alert,
|
|
Button,
|
|
ControlLabel,
|
|
FormControl,
|
|
FormGroup,
|
|
} from 'react-bootstrap'
|
|
import { useTranslation } from 'react-i18next'
|
|
import {
|
|
getUserFacingMessage,
|
|
postJSON,
|
|
} from '../../../infrastructure/fetch-json'
|
|
import getMeta from '../../../utils/meta'
|
|
import { ExposedSettings } from '../../../../../types/exposed-settings'
|
|
import useAsync from '../../../shared/hooks/use-async'
|
|
import { useUserContext } from '../../../shared/context/user-context'
|
|
|
|
function AccountInfoSection() {
|
|
const { t } = useTranslation()
|
|
const { hasAffiliationsFeature } = getMeta(
|
|
'ol-ExposedSettings'
|
|
) as ExposedSettings
|
|
const isExternalAuthenticationSystemUsed = getMeta(
|
|
'ol-isExternalAuthenticationSystemUsed'
|
|
) as boolean
|
|
const shouldAllowEditingDetails = getMeta(
|
|
'ol-shouldAllowEditingDetails'
|
|
) as boolean
|
|
const {
|
|
first_name: initialFirstName,
|
|
last_name: initialLastName,
|
|
email: initialEmail,
|
|
} = useUserContext()
|
|
|
|
const [email, setEmail] = useState(initialEmail)
|
|
const [firstName, setFirstName] = useState(initialFirstName)
|
|
const [lastName, setLastName] = useState(initialLastName)
|
|
const { isLoading, isSuccess, isError, error, runAsync } = useAsync()
|
|
const [isFormValid, setIsFormValid] = useState(true)
|
|
|
|
const handleEmailChange = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
setEmail(event.target.value)
|
|
setIsFormValid(event.target.validity.valid)
|
|
}
|
|
|
|
const handleFirstNameChange = (
|
|
event: React.ChangeEvent<HTMLInputElement>
|
|
) => {
|
|
setFirstName(event.target.value)
|
|
}
|
|
|
|
const handleLastNameChange = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
setLastName(event.target.value)
|
|
}
|
|
|
|
const canUpdateEmail =
|
|
!hasAffiliationsFeature && !isExternalAuthenticationSystemUsed
|
|
const canUpdateNames = shouldAllowEditingDetails
|
|
|
|
const handleSubmit = (event: React.FormEvent<HTMLFormElement>) => {
|
|
event.preventDefault()
|
|
if (!isFormValid) {
|
|
return
|
|
}
|
|
runAsync(
|
|
postJSON('/user/settings', {
|
|
body: {
|
|
email: canUpdateEmail ? email : undefined,
|
|
first_name: canUpdateNames ? firstName : undefined,
|
|
last_name: canUpdateNames ? lastName : undefined,
|
|
},
|
|
})
|
|
).catch(() => {})
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<h3>{t('update_account_info')}</h3>
|
|
<form id="account-info-form" onSubmit={handleSubmit}>
|
|
{hasAffiliationsFeature ? null : (
|
|
<ReadOrWriteFormGroup
|
|
id="email-input"
|
|
type="email"
|
|
label={t('email')}
|
|
value={email}
|
|
handleChange={handleEmailChange}
|
|
canEdit={canUpdateEmail}
|
|
required
|
|
/>
|
|
)}
|
|
<ReadOrWriteFormGroup
|
|
id="first-name-input"
|
|
type="text"
|
|
label={t('first_name')}
|
|
value={firstName}
|
|
handleChange={handleFirstNameChange}
|
|
canEdit={canUpdateNames}
|
|
required={false}
|
|
/>
|
|
<ReadOrWriteFormGroup
|
|
id="last-name-input"
|
|
type="text"
|
|
label={t('last_name')}
|
|
value={lastName}
|
|
handleChange={handleLastNameChange}
|
|
canEdit={canUpdateNames}
|
|
required={false}
|
|
/>
|
|
{isSuccess ? (
|
|
<FormGroup>
|
|
<Alert bsStyle="success">{t('thanks_settings_updated')}</Alert>
|
|
</FormGroup>
|
|
) : null}
|
|
{isError ? (
|
|
<FormGroup>
|
|
<Alert bsStyle="danger">{getUserFacingMessage(error)}</Alert>
|
|
</FormGroup>
|
|
) : null}
|
|
{canUpdateEmail || canUpdateNames ? (
|
|
<Button
|
|
form="account-info-form"
|
|
type="submit"
|
|
bsStyle="primary"
|
|
disabled={isLoading || !isFormValid}
|
|
>
|
|
{isLoading ? <>{t('saving')}…</> : t('update')}
|
|
</Button>
|
|
) : null}
|
|
</form>
|
|
</>
|
|
)
|
|
}
|
|
|
|
type ReadOrWriteFormGroupProps = {
|
|
id: string
|
|
type: string
|
|
label: string
|
|
value: string
|
|
handleChange: (event: any) => void
|
|
canEdit: boolean
|
|
required: boolean
|
|
}
|
|
|
|
function ReadOrWriteFormGroup({
|
|
id,
|
|
type,
|
|
label,
|
|
value,
|
|
handleChange,
|
|
canEdit,
|
|
required,
|
|
}: ReadOrWriteFormGroupProps) {
|
|
const [validationMessage, setValidationMessage] = useState('')
|
|
|
|
const handleInvalid = (
|
|
event: React.InvalidEvent<HTMLInputElement & FormControl>
|
|
) => {
|
|
event.preventDefault()
|
|
}
|
|
|
|
const handleChangeAndValidity = (
|
|
event: React.ChangeEvent<HTMLInputElement & FormControl>
|
|
) => {
|
|
handleChange(event)
|
|
setValidationMessage(event.target.validationMessage)
|
|
}
|
|
|
|
if (!canEdit) {
|
|
return (
|
|
<FormGroup>
|
|
<ControlLabel htmlFor={id}>{label}</ControlLabel>
|
|
<FormControl id={id} type="text" readOnly value={value} />
|
|
</FormGroup>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<FormGroup>
|
|
<ControlLabel htmlFor={id}>{label}</ControlLabel>
|
|
<FormControl
|
|
id={id}
|
|
type={type}
|
|
required={required}
|
|
value={value}
|
|
data-ol-dirty={!!validationMessage}
|
|
onChange={handleChangeAndValidity}
|
|
onInvalid={handleInvalid}
|
|
/>
|
|
{validationMessage ? (
|
|
<span className="small text-danger">{validationMessage}</span>
|
|
) : null}
|
|
</FormGroup>
|
|
)
|
|
}
|
|
|
|
export default AccountInfoSection
|