210 lines
7.0 KiB
JavaScript
210 lines
7.0 KiB
JavaScript
import { useRef, useState } from 'react'
|
|
import { useLocation } from 'react-router-dom'
|
|
import { Space, Flex, Card } from 'antd'
|
|
import useCollapseState from '../../hooks/useCollapseState'
|
|
import ObjectForm from '../../common/ObjectForm'
|
|
import ObjectInfo from '../../common/ObjectInfo'
|
|
import ObjectTable from '../../common/ObjectTable'
|
|
import ObjectActions from '../../common/ObjectActions'
|
|
import ViewButton from '../../common/ViewButton'
|
|
import EditButtons from '../../common/EditButtons'
|
|
import ActionHandler from '../../common/ActionHandler'
|
|
import InfoCollapse from '../../common/InfoCollapse'
|
|
import NotesPanel from '../../common/NotesPanel'
|
|
import LockIndicator from '../../common/LockIndicator'
|
|
import InfoCircleIcon from '../../../Icons/InfoCircleIcon'
|
|
import FilamentStockIcon from '../../../Icons/FilamentStockIcon'
|
|
import NoteIcon from '../../../Icons/NoteIcon'
|
|
import AuditLogIcon from '../../../Icons/AuditLogIcon'
|
|
import InfoCollapsePlaceholder from '../../common/InfoCollapsePlaceholder'
|
|
import DocumentPrintButton from '../../common/DocumentPrintButton'
|
|
import ScrollBox from '../../common/ScrollBox'
|
|
|
|
const FilamentStockInfo = () => {
|
|
const location = useLocation()
|
|
const objectFormRef = useRef(null)
|
|
const actionHandlerRef = useRef(null)
|
|
const filamentStockId = new URLSearchParams(location.search).get(
|
|
'filamentStockId'
|
|
)
|
|
const [collapseState, updateCollapseState] = useCollapseState(
|
|
'FilamentStockInfo',
|
|
{
|
|
info: true,
|
|
events: true,
|
|
notes: true,
|
|
auditLogs: true
|
|
}
|
|
)
|
|
const [objectFormState, setEditFormState] = useState({
|
|
isEditing: false,
|
|
editLoading: false,
|
|
formValid: false,
|
|
lock: null,
|
|
loading: false,
|
|
objectData: {}
|
|
})
|
|
|
|
const actions = {
|
|
reload: () => {
|
|
objectFormRef?.current?.fetchObject?.()
|
|
return true
|
|
},
|
|
edit: () => {
|
|
objectFormRef?.current?.startEditing?.()
|
|
return false
|
|
},
|
|
cancelEdit: () => {
|
|
objectFormRef?.current?.cancelEditing?.()
|
|
return true
|
|
},
|
|
finishEdit: () => {
|
|
objectFormRef?.current?.handleUpdate?.()
|
|
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='filamentStock'
|
|
id={filamentStockId}
|
|
disabled={objectFormState.loading}
|
|
objectData={objectFormState.objectData}
|
|
/>
|
|
<ViewButton
|
|
disabled={objectFormState.loading}
|
|
items={[
|
|
{ key: 'info', label: 'Filament Stock Information' },
|
|
{ key: 'events', label: 'Filament Stock Events' },
|
|
{ key: 'notes', label: 'Notes' },
|
|
{ key: 'auditLogs', label: 'Audit Logs' }
|
|
]}
|
|
visibleState={collapseState}
|
|
updateVisibleState={updateCollapseState}
|
|
/>
|
|
<DocumentPrintButton
|
|
type='filamentStock'
|
|
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='Filament Stock Information'
|
|
icon={<InfoCircleIcon />}
|
|
active={collapseState.info}
|
|
onToggle={(expanded) => updateCollapseState('info', expanded)}
|
|
collapseKey='info'
|
|
>
|
|
<ObjectForm
|
|
id={filamentStockId}
|
|
type='filamentStock'
|
|
style={{ height: '100%' }}
|
|
ref={objectFormRef}
|
|
onStateChange={(state) => {
|
|
setEditFormState((prev) => ({ ...prev, ...state }))
|
|
}}
|
|
>
|
|
{({ loading, isEditing, objectData }) => (
|
|
<ObjectInfo
|
|
loading={loading}
|
|
isEditing={isEditing}
|
|
type='filamentStock'
|
|
objectData={objectData}
|
|
/>
|
|
)}
|
|
</ObjectForm>
|
|
</InfoCollapse>
|
|
</ActionHandler>
|
|
<InfoCollapse
|
|
title='Filament Stock Events'
|
|
icon={<FilamentStockIcon />}
|
|
active={collapseState.events}
|
|
onToggle={(expanded) => updateCollapseState('events', expanded)}
|
|
collapseKey='events'
|
|
>
|
|
{objectFormState.loading ? (
|
|
<InfoCollapsePlaceholder />
|
|
) : (
|
|
<ObjectTable
|
|
type='stockEvent'
|
|
masterFilter={{ 'parent._id': filamentStockId }}
|
|
visibleColumns={{ 'parent._id': false }}
|
|
/>
|
|
)}
|
|
</InfoCollapse>
|
|
<InfoCollapse
|
|
title='Notes'
|
|
icon={<NoteIcon />}
|
|
active={collapseState.notes}
|
|
onToggle={(expanded) => updateCollapseState('notes', expanded)}
|
|
collapseKey='notes'
|
|
>
|
|
<Card>
|
|
<NotesPanel _id={filamentStockId} type='filamentStock' />
|
|
</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': filamentStockId }}
|
|
visibleColumns={{ _id: false, 'parent._id': false }}
|
|
/>
|
|
)}
|
|
</InfoCollapse>
|
|
</Flex>
|
|
</ScrollBox>
|
|
</Flex>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FilamentStockInfo
|