mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5b0c122f5d
List of user emails GitOrigin-RevId: 28a8e405812932ba7ebd8043a4dc9d3c573a68b2
62 lines
1.5 KiB
TypeScript
62 lines
1.5 KiB
TypeScript
import { useEffect } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Icon from '../../../../shared/components/icon'
|
|
import useAsync from '../../../../shared/hooks/use-async'
|
|
import { postJSON } from '../../../../infrastructure/fetch-json'
|
|
import { UserEmailData } from '../../../../../../types/user-email'
|
|
import { useUserEmailsContext } from '../../context/user-email-context'
|
|
|
|
type ResendConfirmationEmailButtonProps = {
|
|
email: UserEmailData['email']
|
|
}
|
|
|
|
function ResendConfirmationEmailButton({
|
|
email,
|
|
}: ResendConfirmationEmailButtonProps) {
|
|
const { t } = useTranslation()
|
|
const { isLoading, isError, runAsync } = useAsync()
|
|
const { setLoading } = useUserEmailsContext()
|
|
|
|
// Update global isLoading prop
|
|
useEffect(() => {
|
|
setLoading(isLoading)
|
|
}, [setLoading, isLoading])
|
|
|
|
const handleResendConfirmationEmail = () => {
|
|
runAsync(
|
|
postJSON('/user/emails/resend_confirmation', {
|
|
body: {
|
|
email,
|
|
},
|
|
})
|
|
)
|
|
}
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<>
|
|
<Icon type="refresh" spin fw /> {t('sending')}...
|
|
</>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<button
|
|
className="btn btn-inline-link"
|
|
onClick={handleResendConfirmationEmail}
|
|
>
|
|
{t('resend_confirmation_email')}
|
|
</button>
|
|
<br />
|
|
{isError && (
|
|
<span className="text-danger">
|
|
<Icon type="exclamation-triangle" fw />{' '}
|
|
{t('error_performing_request')}
|
|
</span>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default ResendConfirmationEmailButton
|