67 lines
1.8 KiB
JavaScript
67 lines
1.8 KiB
JavaScript
import React, { useContext, useRef } from 'react'
|
|
import { Button, Flex, Space, Dropdown } from 'antd'
|
|
import { AuthContext } from '../context/AuthContext'
|
|
import ObjectTable from '../common/ObjectTable'
|
|
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 Users = () => {
|
|
const tableRef = useRef()
|
|
const { authenticated } = useContext(AuthContext)
|
|
const [viewMode, setViewMode] = useViewMode('user')
|
|
|
|
const [columnVisibility, setColumnVisibility] = useColumnVisibility('user')
|
|
|
|
const actionItems = {
|
|
items: [
|
|
{
|
|
label: 'Reload List',
|
|
key: 'reloadList',
|
|
icon: <ReloadIcon />
|
|
}
|
|
],
|
|
onClick: ({ key }) => {
|
|
if (key === 'reloadList') {
|
|
tableRef.current?.reload()
|
|
}
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Flex vertical={'true'} gap='large'>
|
|
<Flex justify={'space-between'}>
|
|
<Space size='small'>
|
|
<Dropdown menu={actionItems}>
|
|
<Button>Actions</Button>
|
|
</Dropdown>
|
|
<ColumnViewButton
|
|
type='user'
|
|
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}
|
|
type={'user'}
|
|
visibleColumns={columnVisibility}
|
|
authenticated={authenticated}
|
|
cards={viewMode === 'cards'}
|
|
/>
|
|
</Flex>
|
|
)
|
|
}
|
|
|
|
export default Users
|