224 lines
7.5 KiB
JavaScript
224 lines
7.5 KiB
JavaScript
import { useContext, useRef, useState } from 'react'
|
|
import { useLocation } from 'react-router-dom'
|
|
import { Space, Flex, Card } from 'antd'
|
|
import loglevel from 'loglevel'
|
|
import config from '../../../../config.js'
|
|
import useCollapseState from '../../hooks/useCollapseState.js'
|
|
import NotesPanel from '../../common/NotesPanel.jsx'
|
|
import InfoCollapse from '../../common/InfoCollapse.jsx'
|
|
import ObjectInfo from '../../common/ObjectInfo.jsx'
|
|
import ViewButton from '../../common/ViewButton.jsx'
|
|
import InfoCircleIcon from '../../../Icons/InfoCircleIcon.jsx'
|
|
import NoteIcon from '../../../Icons/NoteIcon.jsx'
|
|
import AuditLogIcon from '../../../Icons/AuditLogIcon.jsx'
|
|
import ObjectForm from '../../common/ObjectForm.jsx'
|
|
import EditButtons from '../../common/EditButtons.jsx'
|
|
import LockIndicator from '../../common/LockIndicator.jsx'
|
|
import ActionHandler from '../../common/ActionHandler.jsx'
|
|
import ObjectActions from '../../common/ObjectActions.jsx'
|
|
import ObjectTable from '../../common/ObjectTable.jsx'
|
|
import InfoCollapsePlaceholder from '../../common/InfoCollapsePlaceholder.jsx'
|
|
import DocumentPrintButton from '../../common/DocumentPrintButton.jsx'
|
|
import FileIcon from '../../../Icons/FileIcon.jsx'
|
|
import FilePreview from '../../common/FilePreview.jsx'
|
|
import MissingPlaceholder from '../../common/MissingPlaceholder.jsx'
|
|
import { ApiServerContext } from '../../context/ApiServerContext.jsx'
|
|
import ScrollBox from '../../common/ScrollBox.jsx'
|
|
|
|
const log = loglevel.getLogger('FileInfo')
|
|
log.setLevel(config.logLevel)
|
|
|
|
const FileInfo = () => {
|
|
const location = useLocation()
|
|
const objectFormRef = useRef(null)
|
|
const actionHandlerRef = useRef(null)
|
|
const fileId = new URLSearchParams(location.search).get('fileId')
|
|
const [collapseState, updateCollapseState] = useCollapseState('FileInfo', {
|
|
info: true,
|
|
notes: true,
|
|
auditLogs: true
|
|
})
|
|
const [objectFormState, setEditFormState] = useState({
|
|
isEditing: false,
|
|
editLoading: false,
|
|
formValid: false,
|
|
lock: null,
|
|
loading: true,
|
|
objectData: {
|
|
_id: fileId
|
|
}
|
|
})
|
|
const { fetchFileContent } = useContext(ApiServerContext)
|
|
|
|
const actions = {
|
|
reload: () => {
|
|
objectFormRef?.current?.handleFetchObject?.()
|
|
return true
|
|
},
|
|
edit: () => {
|
|
objectFormRef?.current?.startEditing?.()
|
|
return false
|
|
},
|
|
cancelEdit: () => {
|
|
objectFormRef?.current?.cancelEditing?.()
|
|
return true
|
|
},
|
|
finishEdit: () => {
|
|
objectFormRef?.current?.handleUpdate?.()
|
|
return true
|
|
},
|
|
download: () => {
|
|
fetchFileContent(objectFormState?.objectData, true)
|
|
return true
|
|
},
|
|
delete: () => {
|
|
objectFormRef?.current?.handleDelete?.()
|
|
return true
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Flex
|
|
gap='large'
|
|
vertical='true'
|
|
style={{ maxHeight: '100%', minHeight: 0 }}
|
|
>
|
|
<Flex justify={'space-between'}>
|
|
<Space size='middle'>
|
|
<Space size='small'>
|
|
<ObjectActions
|
|
type='file'
|
|
id={fileId}
|
|
disabled={objectFormState.loading}
|
|
objectData={objectFormState.objectData}
|
|
/>
|
|
<ViewButton
|
|
disabled={objectFormState.loading}
|
|
items={[
|
|
{ key: 'info', label: 'File Information' },
|
|
{ key: 'preview', label: 'Preview' },
|
|
{ key: 'notes', label: 'Notes' },
|
|
{ key: 'auditLogs', label: 'Audit Logs' }
|
|
]}
|
|
visibleState={collapseState}
|
|
updateVisibleState={updateCollapseState}
|
|
/>
|
|
<DocumentPrintButton
|
|
type='file'
|
|
objectData={objectFormState.objectData}
|
|
disabled={objectFormState.loading}
|
|
/>
|
|
</Space>
|
|
<LockIndicator lock={objectFormState.lock} />
|
|
</Space>
|
|
<Space>
|
|
<EditButtons
|
|
isEditing={objectFormState.isEditing}
|
|
handleUpdate={() => {
|
|
actionHandlerRef.current.callAction('finishEdit')
|
|
}}
|
|
cancelEditing={() => {
|
|
actionHandlerRef.current.callAction('cancelEdit')
|
|
}}
|
|
startEditing={() => {
|
|
actionHandlerRef.current.callAction('edit')
|
|
}}
|
|
editLoading={objectFormState.editLoading}
|
|
formValid={objectFormState.formValid}
|
|
disabled={objectFormState.lock?.locked || objectFormState.loading}
|
|
loading={objectFormState.editLoading}
|
|
/>
|
|
</Space>
|
|
</Flex>
|
|
<ScrollBox>
|
|
<Flex vertical gap={'large'}>
|
|
<ActionHandler
|
|
actions={actions}
|
|
loading={objectFormState.loading}
|
|
ref={actionHandlerRef}
|
|
>
|
|
<InfoCollapse
|
|
title='File Information'
|
|
icon={<InfoCircleIcon />}
|
|
active={collapseState.info}
|
|
onToggle={(expanded) => updateCollapseState('info', expanded)}
|
|
collapseKey='info'
|
|
>
|
|
<ObjectForm
|
|
id={fileId}
|
|
type='file'
|
|
style={{ height: '100%' }}
|
|
ref={objectFormRef}
|
|
onStateChange={(state) => {
|
|
setEditFormState((prev) => ({ ...prev, ...state }))
|
|
}}
|
|
>
|
|
{({ loading, isEditing, objectData }) => (
|
|
<ObjectInfo
|
|
loading={loading}
|
|
isEditing={isEditing}
|
|
type='file'
|
|
objectData={objectData}
|
|
/>
|
|
)}
|
|
</ObjectForm>
|
|
</InfoCollapse>
|
|
</ActionHandler>
|
|
<InfoCollapse
|
|
title='Preview'
|
|
icon={<FileIcon />}
|
|
active={collapseState.preview}
|
|
onToggle={(expanded) => updateCollapseState('preview', expanded)}
|
|
collapseKey='preview'
|
|
>
|
|
{objectFormState?.objectData?._id ? (
|
|
<Card>
|
|
<FilePreview
|
|
file={objectFormState?.objectData}
|
|
style={{ width: '100%', height: '100%' }}
|
|
/>
|
|
</Card>
|
|
) : (
|
|
<MissingPlaceholder message={'No file.'} />
|
|
)}
|
|
</InfoCollapse>
|
|
<InfoCollapse
|
|
title='Notes'
|
|
icon={<NoteIcon />}
|
|
active={collapseState.notes}
|
|
onToggle={(expanded) => updateCollapseState('notes', expanded)}
|
|
collapseKey='notes'
|
|
>
|
|
<Card>
|
|
<NotesPanel _id={fileId} type='file' />
|
|
</Card>
|
|
</InfoCollapse>
|
|
<InfoCollapse
|
|
title='Audit Logs'
|
|
icon={<AuditLogIcon />}
|
|
active={collapseState.auditLogs}
|
|
onToggle={(expanded) =>
|
|
updateCollapseState('auditLogs', expanded)
|
|
}
|
|
collapseKey='auditLogs'
|
|
>
|
|
{objectFormState.loading ? (
|
|
<InfoCollapsePlaceholder />
|
|
) : (
|
|
<ObjectTable
|
|
type='auditLog'
|
|
masterFilter={{ 'parent._id': fileId }}
|
|
visibleColumns={{ _id: false, 'parent._id': false }}
|
|
/>
|
|
)}
|
|
</InfoCollapse>
|
|
</Flex>
|
|
</ScrollBox>
|
|
</Flex>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FileInfo
|