195 lines
6.6 KiB
JavaScript
195 lines
6.6 KiB
JavaScript
import { useLocation } from 'react-router-dom'
|
|
import { Space, Flex, Card } from 'antd'
|
|
import { LoadingOutlined } from '@ant-design/icons'
|
|
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 EditObjectForm from '../../common/EditObjectForm.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'
|
|
|
|
const log = loglevel.getLogger('DocumentSizeInfo')
|
|
log.setLevel(config.logLevel)
|
|
|
|
const DocumentSizeInfo = () => {
|
|
const location = useLocation()
|
|
const documentSizeId = new URLSearchParams(location.search).get(
|
|
'documentSizeId'
|
|
)
|
|
const [collapseState, updateCollapseState] = useCollapseState(
|
|
'DocumentSizeInfo',
|
|
{
|
|
info: true,
|
|
notes: true,
|
|
auditLogs: true
|
|
}
|
|
)
|
|
|
|
return (
|
|
<EditObjectForm
|
|
id={documentSizeId}
|
|
type='documentSize'
|
|
style={{ height: '100%' }}
|
|
>
|
|
{({
|
|
loading,
|
|
isEditing,
|
|
startEditing,
|
|
cancelEditing,
|
|
handleUpdate,
|
|
formValid,
|
|
objectData,
|
|
editLoading,
|
|
lock,
|
|
fetchObject
|
|
}) => {
|
|
// Define actions for ActionHandler
|
|
const actions = {
|
|
reload: () => {
|
|
fetchObject()
|
|
return true
|
|
},
|
|
edit: () => {
|
|
startEditing()
|
|
return false
|
|
},
|
|
cancelEdit: () => {
|
|
cancelEditing()
|
|
return true
|
|
},
|
|
finishEdit: () => {
|
|
handleUpdate()
|
|
return true
|
|
}
|
|
}
|
|
|
|
return (
|
|
<ActionHandler actions={actions} loading={loading}>
|
|
{({ callAction }) => (
|
|
<Flex
|
|
gap='large'
|
|
vertical='true'
|
|
style={{
|
|
height: 'calc(var(--unit-100vh) - 155px)',
|
|
minHeight: 0
|
|
}}
|
|
>
|
|
<Flex justify={'space-between'}>
|
|
<Space size='middle'>
|
|
<Space size='small'>
|
|
<ObjectActions
|
|
type='documentSize'
|
|
id={documentSizeId}
|
|
disabled={loading}
|
|
/>
|
|
<ViewButton
|
|
disabled={loading}
|
|
items={[
|
|
{ key: 'info', label: 'DocumentSize Information' },
|
|
{ key: 'stocks', label: 'DocumentSize Stocks' },
|
|
{ key: 'notes', label: 'Notes' },
|
|
{ key: 'auditLogs', label: 'Audit Logs' }
|
|
]}
|
|
visibleState={collapseState}
|
|
updateVisibleState={updateCollapseState}
|
|
/>
|
|
</Space>
|
|
<LockIndicator lock={lock} />
|
|
</Space>
|
|
<Space>
|
|
<EditButtons
|
|
isEditing={isEditing}
|
|
handleUpdate={() => {
|
|
callAction('finishEdit')
|
|
}}
|
|
cancelEditing={() => {
|
|
callAction('cancelEdit')
|
|
}}
|
|
startEditing={() => {
|
|
callAction('edit')
|
|
}}
|
|
editLoading={editLoading}
|
|
formValid={formValid}
|
|
disabled={lock?.locked || loading}
|
|
loading={editLoading}
|
|
/>
|
|
</Space>
|
|
</Flex>
|
|
|
|
<div style={{ height: '100%', overflowY: 'scroll' }}>
|
|
<Flex vertical gap={'large'}>
|
|
<InfoCollapse
|
|
title='Document Size Information'
|
|
icon={<InfoCircleIcon />}
|
|
active={collapseState.info}
|
|
onToggle={(expanded) =>
|
|
updateCollapseState('info', expanded)
|
|
}
|
|
collapseKey='info'
|
|
>
|
|
<ObjectInfo
|
|
loading={loading}
|
|
indicator={<LoadingOutlined />}
|
|
isEditing={isEditing}
|
|
type='documentSize'
|
|
objectData={objectData}
|
|
/>
|
|
</InfoCollapse>
|
|
|
|
<InfoCollapse
|
|
title='Notes'
|
|
icon={<NoteIcon />}
|
|
active={collapseState.notes}
|
|
onToggle={(expanded) =>
|
|
updateCollapseState('notes', expanded)
|
|
}
|
|
collapseKey='notes'
|
|
>
|
|
<Card>
|
|
<NotesPanel _id={documentSizeId} type='documentSize' />
|
|
</Card>
|
|
</InfoCollapse>
|
|
|
|
<InfoCollapse
|
|
title='Audit Logs'
|
|
icon={<AuditLogIcon />}
|
|
active={collapseState.auditLogs}
|
|
onToggle={(expanded) =>
|
|
updateCollapseState('auditLogs', expanded)
|
|
}
|
|
collapseKey='auditLogs'
|
|
>
|
|
{loading ? (
|
|
<InfoCollapsePlaceholder />
|
|
) : (
|
|
<ObjectTable
|
|
type='auditLog'
|
|
masterFilter={{ 'parent._id': documentSizeId }}
|
|
visibleColumns={{ _id: false, 'parent._id': false }}
|
|
/>
|
|
)}
|
|
</InfoCollapse>
|
|
</Flex>
|
|
</div>
|
|
</Flex>
|
|
)}
|
|
</ActionHandler>
|
|
)
|
|
}}
|
|
</EditObjectForm>
|
|
)
|
|
}
|
|
|
|
export default DocumentSizeInfo
|