mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
c2b553e915
* Upgrade react-resizable-panels * Add FileTreeOpenProvider * Add OutlineProvider and OutlineContainer * Convert Outline tests to Cypress GitOrigin-RevId: afd9ae8190edf37642e36a4ffb331f1182c8982d
28 lines
1 KiB
TypeScript
28 lines
1 KiB
TypeScript
import { FileRef } from '../../../../../types/file-ref'
|
|
import { BinaryFile } from '@/features/file-view/types/binary-file'
|
|
|
|
export function convertFileRefToBinaryFile(fileRef: FileRef): BinaryFile {
|
|
return {
|
|
_id: fileRef._id,
|
|
name: fileRef.name,
|
|
id: fileRef._id,
|
|
type: 'file',
|
|
selected: true,
|
|
linkedFileData: fileRef.linkedFileData,
|
|
created: fileRef.created ? new Date(fileRef.created) : new Date(),
|
|
}
|
|
}
|
|
|
|
// `FileViewHeader`, which is TypeScript, expects a BinaryFile, which has a
|
|
// `created` property of type `Date`, while `TPRFileViewInfo`, written in JS,
|
|
// into which `FileViewHeader` passes its BinaryFile, expects a file object with
|
|
// `created` property of type `string`, which is a mismatch. `TPRFileViewInfo`
|
|
// is the only one making runtime complaints and it seems that other uses of
|
|
// `FileViewHeader` pass in a string for `created`, so that's what this function
|
|
// does too.
|
|
export function fileViewFile(fileRef: FileRef) {
|
|
return {
|
|
...convertFileRefToBinaryFile(fileRef),
|
|
created: fileRef.created,
|
|
}
|
|
}
|