- Introduced DocumentPrinters, DocumentSizes, and DocumentTemplates components for managing respective entities. - Added corresponding info and design components for each entity. - Created new SVG icons for document-related functionalities. - Implemented hooks for column visibility and view mode management in the new components. - Enhanced user experience with action buttons and modals for creating new entries.
99 lines
2.9 KiB
JavaScript
99 lines
2.9 KiB
JavaScript
import React, { useState, useRef } from 'react'
|
|
import { Button, Flex, Space, Modal, Dropdown, message } from 'antd'
|
|
import NewDocumentTemplate from './DocumentTemplates/NewDocumentTemplate'
|
|
import ObjectTable from '../common/ObjectTable'
|
|
import PlusIcon from '../../Icons/PlusIcon'
|
|
import ReloadIcon from '../../Icons/ReloadIcon'
|
|
import useColumnVisibility from '../hooks/useColumnVisibility'
|
|
import GridIcon from '../../Icons/GridIcon'
|
|
import ListIcon from '../../Icons/ListIcon'
|
|
import useViewMode from '../hooks/useViewMode'
|
|
import ColumnViewButton from '../common/ColumnViewButton'
|
|
|
|
const DocumentTemplates = () => {
|
|
const [messageApi, contextHolder] = message.useMessage()
|
|
const [newDocumentTemplateOpen, setNewDocumentTemplateOpen] = useState(false)
|
|
const tableRef = useRef()
|
|
|
|
const [viewMode, setViewMode] = useViewMode('documentTemplate')
|
|
|
|
const [columnVisibility, setColumnVisibility] =
|
|
useColumnVisibility('documentTemplate')
|
|
|
|
const actionItems = {
|
|
items: [
|
|
{
|
|
label: 'New Document Template',
|
|
key: 'newDocumentTemplate',
|
|
icon: <PlusIcon />
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
label: 'Reload List',
|
|
key: 'reloadList',
|
|
icon: <ReloadIcon />
|
|
}
|
|
],
|
|
onClick: ({ key }) => {
|
|
if (key === 'reloadList') {
|
|
tableRef.current?.reload()
|
|
} else if (key === 'newDocumentTemplate') {
|
|
setNewDocumentTemplateOpen(true)
|
|
}
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Flex vertical={'true'} gap='large'>
|
|
{contextHolder}
|
|
<Flex justify={'space-between'}>
|
|
<Space size='small'>
|
|
<Dropdown menu={actionItems}>
|
|
<Button>Actions</Button>
|
|
</Dropdown>
|
|
<ColumnViewButton
|
|
type='documentTemplate'
|
|
loading={false}
|
|
collapseState={columnVisibility}
|
|
updateCollapseState={setColumnVisibility}
|
|
/>
|
|
</Space>
|
|
<Space>
|
|
<Button
|
|
icon={viewMode === 'cards' ? <ListIcon /> : <GridIcon />}
|
|
onClick={() =>
|
|
setViewMode(viewMode === 'cards' ? 'list' : 'cards')
|
|
}
|
|
/>
|
|
</Space>
|
|
</Flex>
|
|
<ObjectTable
|
|
ref={tableRef}
|
|
visibleColumns={columnVisibility}
|
|
type='documentTemplate'
|
|
cards={viewMode === 'cards'}
|
|
/>
|
|
</Flex>
|
|
<Modal
|
|
open={newDocumentTemplateOpen}
|
|
onCancel={() => setNewDocumentTemplateOpen(false)}
|
|
footer={null}
|
|
destroyOnHidden={true}
|
|
width={700}
|
|
>
|
|
<NewDocumentTemplate
|
|
onOk={() => {
|
|
setNewDocumentTemplateOpen(false)
|
|
messageApi.success('New note type created successfully.')
|
|
tableRef.current?.reload()
|
|
}}
|
|
reset={!newDocumentTemplateOpen}
|
|
/>
|
|
</Modal>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default DocumentTemplates
|