mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
dc6f480843
Changed LoadingSpinner default delay GitOrigin-RevId: 2bf499585e3394e5c6b8ed9583add7ef6f678fc1
38 lines
702 B
JavaScript
38 lines
702 B
JavaScript
import { useTranslation } from 'react-i18next'
|
|
import Icon from './icon'
|
|
import { useEffect, useState } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
function LoadingSpinner({ delay = 0 }) {
|
|
const { t } = useTranslation()
|
|
|
|
const [show, setShow] = useState(false)
|
|
|
|
useEffect(() => {
|
|
const timer = window.setTimeout(() => {
|
|
setShow(true)
|
|
}, delay)
|
|
|
|
return () => {
|
|
window.clearTimeout(timer)
|
|
}
|
|
}, [delay])
|
|
|
|
if (!show) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className="loading">
|
|
<Icon type="refresh" fw spin />
|
|
|
|
{t('loading')}…
|
|
</div>
|
|
)
|
|
}
|
|
|
|
LoadingSpinner.propTypes = {
|
|
delay: PropTypes.number,
|
|
}
|
|
|
|
export default LoadingSpinner
|