-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added the AdminPageLayout component
Created the AdminDashboard component and moved AdminSideBar, AdminPageLayout, RecentOrderCard, AdminDashboard to a new directory named Admin panel Committed some changes in the AdminSideBar component Made the sidebar collapsible for mobile screen Made the Admin page responsive
- Loading branch information
1 parent
d95a9e0
commit c596600
Showing
2 changed files
with
291 additions
and
0 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
frontend/src/components/AdminPanel/AdminDashboard/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import {Typography, Box} from '@mui/material'; | ||
import Card from '@mui/material/Card'; | ||
import RecentOrderCard from '../RecentOrderCard'; | ||
import AdminPageLayout from '../AdminPageLayout'; | ||
|
||
export default function AdminDashboard() { | ||
return ( | ||
<Box> | ||
<AdminPageLayout> | ||
<Card | ||
sx={{ | ||
backgroundColor: 'rgba(255, 226, 131, 1)', | ||
display: 'flex', | ||
flexDirection: 'row', | ||
alignItems: 'center', | ||
justifyContent: 'space-between', | ||
padding: '1.3rem', | ||
border: '1px solid rgba(0, 0, 0, 0.1)', | ||
boxShadow: '0px 0px 20px rgba(0, 0, 0, 0.1)', | ||
width: 'fit-content', | ||
columnGap: '1rem', | ||
}} | ||
> | ||
<Box | ||
sx={{ | ||
width: '50%', | ||
display: 'flex', | ||
alignItems: 'center', | ||
}} | ||
> | ||
<Typography | ||
component="div" | ||
sx={{fontWeight: 'bold'}} | ||
fontSize={{xs: '1rem', md: '1.4rem', lg: '1.5rem'}} | ||
> | ||
Tickets booked today | ||
</Typography> | ||
</Box> | ||
<Typography | ||
component="div" | ||
sx={{fontWeight: 'bold'}} | ||
fontSize={{xs: '1.8rem', md: '2.2rem', lg: '2.3rem'}} | ||
> | ||
100 | ||
</Typography> | ||
</Card> | ||
<Typography | ||
component="div" | ||
sx={{ | ||
fontWeight: 'bold', | ||
mt: '3rem', | ||
mb: '1rem', | ||
color: 'rgba(0, 0, 0, 0.4)', | ||
}} | ||
fontSize={{xs: '1.6rem', md: '2.2rem', lg: '2.3rem'}} | ||
> | ||
Recent orders | ||
</Typography> | ||
<RecentOrderCard /> | ||
<RecentOrderCard /> | ||
<RecentOrderCard /> | ||
<RecentOrderCard /> | ||
</AdminPageLayout> | ||
</Box> | ||
); | ||
} |
225 changes: 225 additions & 0 deletions
225
frontend/src/components/AdminPanel/AdminPageLayout/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,225 @@ | ||
import SideBar from '../AdminSideBar'; | ||
import {Typography, styled, Box} from '@mui/material'; | ||
import Card from '@mui/material/Card'; | ||
import {Avatar, useTheme} from '@mui/material'; | ||
import React, {useRef} from 'react'; | ||
// import { useAuthStore } from "../../../store/authStore"; | ||
import {useScreen} from '../../../customHooks/useScreen'; | ||
import helpIcon from '../../../assets/helpIcon.svg'; | ||
import RecentOrderCard from '../RecentOrderCard'; | ||
import Footer from '../../Footer'; | ||
import {useState} from 'react'; | ||
import IconButton from '@mui/material/IconButton'; | ||
import OpenIcon from '@mui/icons-material/MenuRounded'; | ||
|
||
export default function AdminPageLayout({children}: any) { | ||
const currentScreen = useScreen(); | ||
|
||
const theme = useTheme(); | ||
const profile_container = useRef<HTMLDivElement | null>(null); | ||
|
||
const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null); | ||
const open = Boolean(anchorEl); | ||
|
||
const openmenu = (event: React.MouseEvent<HTMLDivElement>) => { | ||
setAnchorEl(event.currentTarget); | ||
console.log('open'); | ||
}; | ||
|
||
const closeMenu = async ( | ||
event: React.MouseEvent<HTMLDivElement | HTMLAnchorElement> | ||
) => { | ||
event.stopPropagation(); | ||
setAnchorEl(null); | ||
}; | ||
|
||
const openSidebar = () => { | ||
if (document.getElementById('drawer')) { | ||
(document.getElementById('drawer') as HTMLElement).style.display = | ||
'block'; | ||
} | ||
}; | ||
|
||
const current = new Date(); | ||
const monthNames = [ | ||
'January', | ||
'February', | ||
'March', | ||
'April', | ||
'May', | ||
'June', | ||
'July', | ||
'August', | ||
'September', | ||
'October', | ||
'November', | ||
'December', | ||
]; | ||
const monthIndex = new Date().getMonth(); | ||
const monthName = monthNames[monthIndex]; | ||
const dayNames = [ | ||
'Sunday', | ||
'Monday', | ||
'Tuesday', | ||
'Wednesday', | ||
'Thursday', | ||
'Friday', | ||
'Saturday', | ||
]; | ||
const dayIndex = new Date().getDay(); | ||
const dayName = dayNames[dayIndex]; | ||
const date = `${dayName}, ${current.getDate()} ${monthName} ${current.getFullYear()}`; | ||
|
||
const ProfileContainer = styled(Box)` | ||
display: flex; | ||
align-items: center; | ||
border-radius: 8px; | ||
cursor: pointer; | ||
&:hover { | ||
border: 0.5px solid ${({theme}) => theme.palette.primary.main}; | ||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15); | ||
} | ||
`; | ||
|
||
const HelpButton = styled(Box)` | ||
align-items: center; | ||
gap: 5px; | ||
cursor: pointer; | ||
`; | ||
|
||
const Icon = styled('img')` | ||
width: 2rem; | ||
height: 2rem; | ||
@media (max-width: 600px) { | ||
width: 1.5rem; | ||
height: 1.5rem; | ||
} | ||
`; | ||
|
||
return ( | ||
<Box sx={{display: 'flex', flexDirection: 'row'}}> | ||
{currentScreen !== 'xs' ? ( | ||
<Box> | ||
<SideBar /> | ||
</Box> | ||
) : ( | ||
<IconButton | ||
aria-label="delete" | ||
size="medium" | ||
onClick={openSidebar} | ||
sx={{ | ||
display: {sm: 'none'}, | ||
position: 'absolute', | ||
top: '-1px', | ||
left: '-.1px', | ||
}} | ||
> | ||
<OpenIcon fontSize="inherit" /> | ||
</IconButton> | ||
)} | ||
|
||
<Box | ||
marginLeft={{sm: '5rem'}} | ||
marginRight="1rem" | ||
marginTop={{xs: '1.5rem', sm: '0px'}} | ||
sx={{ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
justifyContent: 'center', | ||
}} | ||
> | ||
{/* topbar */} | ||
<Box sx={{width: '100%', position: 'static'}}> | ||
<Box | ||
sx={{ | ||
display: 'flex', | ||
width: '100%', | ||
flexDirection: 'column', | ||
justifyContent: 'space-between', | ||
}} | ||
> | ||
<Box> | ||
<Box | ||
sx={{ | ||
display: 'flex', | ||
width: {xs: '95%', sm: '100%'}, | ||
flexDirection: 'row', | ||
justifyContent: 'space-between', | ||
}} | ||
> | ||
<Typography | ||
component="div" | ||
sx={{fontWeight: 'bold', mt: '-.15rem'}} | ||
fontSize={{xs: '2rem', md: '2.2rem', lg: '2.3rem'}} | ||
> | ||
Manage Buses | ||
</Typography> | ||
<Box | ||
sx={{ | ||
display: 'flex', | ||
flexDirection: 'row', | ||
columnGap: '1rem', | ||
}} | ||
> | ||
<HelpButton display={{xs: 'none', md: 'flex'}}> | ||
<img src={helpIcon} alt="help" /> | ||
<Typography variant="h6" color={theme.palette.common.black}> | ||
Help | ||
</Typography> | ||
</HelpButton> | ||
<ProfileContainer | ||
id="basic-button" | ||
aria-controls={open ? 'basic-menu' : undefined} | ||
aria-haspopup="true" | ||
aria-expanded={open ? 'true' : undefined} | ||
onClick={openmenu} | ||
sx={{ | ||
cursor: 'pointer', | ||
border: | ||
currentScreen === 'xs' ? 'none' : '0.5px solid #4f4f4f', | ||
}} | ||
ref={profile_container} | ||
> | ||
<Avatar | ||
// alt={user?.name} | ||
// src={user?.picture} | ||
sx={{ | ||
width: '1.5rem', | ||
height: '1.5rem', | ||
marginLeft: '.5em', | ||
}} | ||
/> | ||
<Typography | ||
display={{xs: 'none', sm: 'flex'}} | ||
variant="h6" | ||
color={theme.palette.common.black} | ||
paddingX="0.3rem" | ||
textTransform={'none'} | ||
> | ||
Hi, User !{/* Hi, {user?.name}! */} | ||
</Typography> | ||
</ProfileContainer> | ||
</Box> | ||
</Box> | ||
<Typography | ||
component="div" | ||
sx={{ | ||
fontWeight: 'bold', | ||
mb: '3rem', | ||
color: 'rgba(0, 0, 0, 0.4)', | ||
}} | ||
fontSize={{md: '1.4rem', lg: '1.5rem'}} | ||
> | ||
{date} | ||
</Typography> | ||
</Box> | ||
</Box> | ||
</Box> | ||
{children} | ||
<Footer /> | ||
<SideBar /> | ||
</Box> | ||
</Box> | ||
); | ||
} |