mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-08-08 08:00:05 +02:00

Fix frontend to handle missing hashes for image preview GitOrigin-RevId: e67300d9b08b02b1670cb3a7bbd4483cf4486f51
23 lines
533 B
TypeScript
23 lines
533 B
TypeScript
import { useProjectContext } from '../../../shared/context/project-context'
|
|
import { BinaryFile } from '@/features/file-view/types/binary-file'
|
|
import { fileUrl } from '../../utils/fileUrl'
|
|
|
|
export default function FileViewImage({
|
|
file,
|
|
onLoad,
|
|
onError,
|
|
}: {
|
|
file: BinaryFile
|
|
onLoad: () => void
|
|
onError: () => void
|
|
}) {
|
|
const { _id: projectId } = useProjectContext()
|
|
return (
|
|
<img
|
|
src={fileUrl(projectId, file.id, file.hash)}
|
|
onLoad={onLoad}
|
|
onError={onError}
|
|
alt={file.name}
|
|
/>
|
|
)
|
|
}
|