index.tsx 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import BottomNavigation from '@mui/material/BottomNavigation';
  2. import BottomNavigationAction from '@mui/material/BottomNavigationAction';
  3. import React, { useState } from 'react';
  4. import { makeStyles } from '@material-ui/core'
  5. import ChatListRecent from './ChatListRecent'
  6. import NotDoneList from '../../../reusableComponents/NotDoneList';
  7. const useStyles = makeStyles({
  8. bottomNavigation: {
  9. boxShadow: '0px 1px 1px 1px rgba(120,120,120,0.63)',
  10. },
  11. icon: {
  12. fontSize: 17,
  13. lineHeight: 0,
  14. marginBottom: 0,
  15. fontWeight:600
  16. },
  17. underline: {
  18. fontSize: 45,
  19. lineHeight: 0,
  20. },
  21. })
  22. const SearchLists = ({value}:{value:string}) => {
  23. const [isActive, setIsActive] = useState<number>(0)
  24. const handleIsActive = (_e: React.SyntheticEvent<Element, Event>, newValue: number): void => setIsActive(newValue)
  25. const classes = useStyles()
  26. const Icon = ({ name }: { name: string }) => <span className={classes.icon}>{name}</span>
  27. const Label = () => <span className={classes.underline}>__</span>
  28. return (
  29. <>
  30. <BottomNavigation
  31. showLabels
  32. value={isActive}
  33. onChange={handleIsActive}
  34. className={classes.bottomNavigation}
  35. >
  36. <BottomNavigationAction label={<Label/>} icon={<Icon name='Chats' />} />
  37. <BottomNavigationAction label={<Label/>} icon={<Icon name='Media' />} />
  38. <BottomNavigationAction label={<Label/>} icon={<Icon name='Files' />} />
  39. <BottomNavigationAction label={<Label />} icon={<Icon name='Audio' />} />
  40. <BottomNavigationAction label={<Label/>} icon={<Icon name='Video' />} />
  41. </BottomNavigation>
  42. {isActive === 0 && <ChatListRecent value={value}/>}
  43. {isActive === 1 && <NotDoneList name='Media'/>}
  44. {isActive === 2 && <NotDoneList name='Links'/>}
  45. {isActive === 3 && <NotDoneList name='Files'/>}
  46. {isActive === 4 && <NotDoneList name='Music'/>}
  47. {isActive === 5 && <NotDoneList name='Voice'/>}
  48. </>
  49. )
  50. }
  51. export default SearchLists