pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
import React from 'react'
|
|
import { Button, Flex, Icon, useDisclosure } from '@chakra-ui/react'
|
|
import { FaPlus } from 'react-icons/fa'
|
|
|
|
import AddUser from '../Admin/AddUser'
|
|
import AddItem from '../Items/AddItem'
|
|
|
|
interface NavbarProps {
|
|
type: string
|
|
}
|
|
|
|
const Navbar: React.FC<NavbarProps> = ({ type }) => {
|
|
const addUserModal = useDisclosure()
|
|
const addItemModal = useDisclosure()
|
|
|
|
return (
|
|
<>
|
|
<Flex py={8} gap={4}>
|
|
{/* TODO: Complete search functionality */}
|
|
{/* <InputGroup w={{ base: '100%', md: 'auto' }}>
|
|
<InputLeftElement pointerEvents='none'>
|
|
<Icon as={FaSearch} color='gray.400' />
|
|
</InputLeftElement>
|
|
<Input type='text' placeholder='Search' fontSize={{ base: 'sm', md: 'inherit' }} borderRadius='8px' />
|
|
</InputGroup> */}
|
|
<Button
|
|
bg="ui.main"
|
|
color="white"
|
|
_hover={{ opacity: 0.8 }}
|
|
gap={1}
|
|
fontSize={{ base: 'sm', md: 'inherit' }}
|
|
onClick={type === 'User' ? addUserModal.onOpen : addItemModal.onOpen}
|
|
>
|
|
<Icon as={FaPlus} /> Add {type}
|
|
</Button>
|
|
<AddUser isOpen={addUserModal.isOpen} onClose={addUserModal.onClose} />
|
|
<AddItem isOpen={addItemModal.isOpen} onClose={addItemModal.onClose} />
|
|
</Flex>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Navbar
|
|
|