mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
c5d45c1bac
Fix for Binary file view repeatedly requesting content GitOrigin-RevId: af41539ccb92c609bc5f61f49ff09370c10481f6
81 lines
2.2 KiB
JavaScript
81 lines
2.2 KiB
JavaScript
import { useState, useCallback } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import FileViewHeader from './file-view-header'
|
|
import FileViewImage from './file-view-image'
|
|
import FileViewText from './file-view-text'
|
|
import Icon from '../../../shared/components/icon'
|
|
|
|
const imageExtensions = ['png', 'jpg', 'jpeg', 'gif']
|
|
|
|
const textExtensions = window.ExposedSettings.textExtensions
|
|
|
|
export default function FileView({ file, storeReferencesKeys }) {
|
|
const [contentLoading, setContentLoading] = useState(true)
|
|
const [hasError, setHasError] = useState(false)
|
|
|
|
const { t } = useTranslation()
|
|
|
|
const extension = file.name.split('.').pop().toLowerCase()
|
|
const isUnpreviewableFile =
|
|
!imageExtensions.includes(extension) && !textExtensions.includes(extension)
|
|
|
|
const handleLoad = useCallback(() => {
|
|
setContentLoading(false)
|
|
}, [])
|
|
|
|
const handleError = useCallback(() => {
|
|
if (!hasError) {
|
|
setContentLoading(false)
|
|
setHasError(true)
|
|
}
|
|
}, [hasError])
|
|
|
|
const content = (
|
|
<>
|
|
<FileViewHeader file={file} storeReferencesKeys={storeReferencesKeys} />
|
|
{imageExtensions.includes(extension) && (
|
|
<FileViewImage
|
|
fileName={file.name}
|
|
fileId={file.id}
|
|
onLoad={handleLoad}
|
|
onError={handleError}
|
|
/>
|
|
)}
|
|
{textExtensions.includes(extension) && (
|
|
<FileViewText file={file} onLoad={handleLoad} onError={handleError} />
|
|
)}
|
|
</>
|
|
)
|
|
|
|
return (
|
|
<div className="file-view full-size">
|
|
{!hasError && content}
|
|
{!isUnpreviewableFile && contentLoading && <FileViewLoadingIndicator />}
|
|
{(isUnpreviewableFile || hasError) && (
|
|
<p className="no-preview">{t('no_preview_available')}</p>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function FileViewLoadingIndicator() {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<div className="loading-panel loading-panel-file-view">
|
|
<span>
|
|
<Icon type="refresh" modifier="spin" />
|
|
{t('loading')}…
|
|
</span>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
FileView.propTypes = {
|
|
file: PropTypes.shape({
|
|
id: PropTypes.string,
|
|
name: PropTypes.string,
|
|
}).isRequired,
|
|
storeReferencesKeys: PropTypes.func.isRequired,
|
|
}
|