import { useRef, useState } from 'react' import { useLocation } from 'react-router-dom' import { Space, Flex, Card } from 'antd' import loglevel from 'loglevel' import config from '../../../../config' import useCollapseState from '../../hooks/useCollapseState' import NotesPanel from '../../common/NotesPanel' import InfoCollapse from '../../common/InfoCollapse' import ObjectInfo from '../../common/ObjectInfo' import ViewButton from '../../common/ViewButton' import InfoCircleIcon from '../../../Icons/InfoCircleIcon.jsx' import NoteIcon from '../../../Icons/NoteIcon.jsx' import AuditLogIcon from '../../../Icons/AuditLogIcon.jsx' import EditObjectForm from '../../common/EditObjectForm' import EditButtons from '../../common/EditButtons' 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('VendorInfo') log.setLevel(config.logLevel) const VendorInfo = () => { const location = useLocation() const editFormRef = useRef(null) const actionHandlerRef = useRef(null) const vendorId = new URLSearchParams(location.search).get('vendorId') const [collapseState, updateCollapseState] = useCollapseState('VendorInfo', { info: true, notes: true, auditLogs: true }) const [editFormState, setEditFormState] = useState({ isEditing: false, editLoading: false, formValid: false, lock: null, loading: false }) const actions = { reload: () => { editFormRef?.current?.handleFetchObject?.() return true }, edit: () => { editFormRef?.current?.startEditing?.() return false }, cancelEdit: () => { editFormRef?.current?.cancelEditing?.() return true }, finishEdit: () => { editFormRef?.current?.handleUpdate?.() return true }, delete: () => { editFormRef?.current?.handleDelete?.() return true } } return ( <> { actionHandlerRef.current.callAction('finishEdit') }} cancelEditing={() => { actionHandlerRef.current.callAction('cancelEdit') }} startEditing={() => { actionHandlerRef.current.callAction('edit') }} editLoading={editFormState.editLoading} formValid={editFormState.formValid} disabled={editFormState.lock?.locked || editFormState.loading} loading={editFormState.editLoading} />
} active={collapseState.info} onToggle={(expanded) => updateCollapseState('info', expanded)} collapseKey='info' > { setEditFormState((prev) => ({ ...prev, ...state })) }} > {({ loading, isEditing, objectData }) => ( )} } active={collapseState.notes} onToggle={(expanded) => updateCollapseState('notes', expanded)} collapseKey='notes' > } active={collapseState.auditLogs} onToggle={(expanded) => updateCollapseState('auditLogs', expanded) } collapseKey='auditLogs' > {editFormState.loading ? ( ) : ( )}
) } export default VendorInfo