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

* Refactor project context to not use scope store * Fix Cypress tests for project context changes * Fix frontend React Testing Library tests for project context changes * Remove redundant code * Fix some project types in tests * Remove unused import and fix a type * Throw an error if updating the project in the project context before joining the project * Fix some review panel tests * Remove unused imports GitOrigin-RevId: 2f0c928b651f387aa980c29aef7d1ba0649790a7
23 lines
528 B
TypeScript
23 lines
528 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 { projectId } = useProjectContext()
|
|
return (
|
|
<img
|
|
src={fileUrl(projectId, file.id, file.hash)}
|
|
onLoad={onLoad}
|
|
onError={onError}
|
|
alt={file.name}
|
|
/>
|
|
)
|
|
}
|