mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-03 23:57:52 -05:00
5b6bbcb73c
[web] Migrate notifications and error boundaries on the editor page GitOrigin-RevId: c195ecf0dd9e38ec8326c823174e559e1f192ce1
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import { useEffect, useState } from 'react'
|
|
import { secondsUntil } from '@/features/ide-react/connection/utils'
|
|
import OLNotification from '@/features/ui/components/ol/ol-notification'
|
|
import OLButton from '@/features/ui/components/ol/ol-button'
|
|
|
|
type LostConnectionAlertProps = {
|
|
reconnectAt: number
|
|
tryReconnectNow: () => void
|
|
}
|
|
|
|
export function LostConnectionAlert({
|
|
reconnectAt,
|
|
tryReconnectNow,
|
|
}: LostConnectionAlertProps) {
|
|
const { t } = useTranslation()
|
|
const [secondsUntilReconnect, setSecondsUntilReconnect] = useState(
|
|
secondsUntil(reconnectAt)
|
|
)
|
|
|
|
useEffect(() => {
|
|
const timer = window.setInterval(() => {
|
|
setSecondsUntilReconnect(secondsUntil(reconnectAt))
|
|
}, 1000)
|
|
return () => window.clearInterval(timer)
|
|
}, [reconnectAt])
|
|
|
|
return (
|
|
<OLNotification
|
|
type="warning"
|
|
content={
|
|
<>
|
|
<strong>{t('lost_connection')}</strong>{' '}
|
|
{t('reconnecting_in_x_secs', { seconds: secondsUntilReconnect })}.
|
|
</>
|
|
}
|
|
action={
|
|
<OLButton
|
|
id="try-reconnect-now-button"
|
|
onClick={() => tryReconnectNow()}
|
|
size="sm"
|
|
variant="secondary"
|
|
bs3Props={{ className: 'pull-right' }}
|
|
>
|
|
{t('try_now')}
|
|
</OLButton>
|
|
}
|
|
/>
|
|
)
|
|
}
|