mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-13 07:45:07 +00:00
265 lines
8.5 KiB
TypeScript
265 lines
8.5 KiB
TypeScript
import * as React from 'react';
|
|
import { PaletteMode } from '@mui/material';
|
|
import Box from '@mui/material/Box';
|
|
import AppBar from '@mui/material/AppBar';
|
|
import Toolbar from '@mui/material/Toolbar';
|
|
import Button from '@mui/material/Button';
|
|
import Container from '@mui/material/Container';
|
|
import Divider from '@mui/material/Divider';
|
|
import Typography from '@mui/material/Typography';
|
|
import MenuItem from '@mui/material/MenuItem';
|
|
import Drawer from '@mui/material/Drawer';
|
|
import MenuIcon from '@mui/icons-material/Menu';
|
|
import { Logout, OpenInNew } from '@mui/icons-material';
|
|
|
|
const logoStyle = {
|
|
width: '140px',
|
|
height: 'auto',
|
|
cursor: 'pointer',
|
|
};
|
|
|
|
interface AppAppBarProps {
|
|
user: any;
|
|
}
|
|
|
|
function AppAppBar({ user }: AppAppBarProps) {
|
|
const [open, setOpen] = React.useState(false);
|
|
|
|
const toggleDrawer = (newOpen: boolean) => () => {
|
|
setOpen(newOpen);
|
|
};
|
|
|
|
const scrollToSection = (sectionId: string) => {
|
|
const sectionElement = document.getElementById(sectionId);
|
|
const offset = 128;
|
|
if (sectionElement) {
|
|
const targetScroll = sectionElement.offsetTop - offset;
|
|
sectionElement.scrollIntoView({ behavior: 'smooth' });
|
|
window.scrollTo({
|
|
top: targetScroll,
|
|
behavior: 'smooth',
|
|
});
|
|
setOpen(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<AppBar
|
|
position="fixed"
|
|
sx={{
|
|
boxShadow: 0,
|
|
bgcolor: 'transparent',
|
|
backgroundImage: 'none',
|
|
mt: 2,
|
|
}}
|
|
>
|
|
<Container maxWidth="lg">
|
|
<Toolbar
|
|
variant="regular"
|
|
sx={(theme) => ({
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
flexShrink: 0,
|
|
borderRadius: '10px',
|
|
bgcolor:
|
|
theme.palette.mode === 'light'
|
|
? 'rgba(255, 255, 255, 0.6)'
|
|
: 'rgba(0, 0, 0, 0.4)',
|
|
backdropFilter: 'blur(24px)',
|
|
maxHeight: 40,
|
|
border: '1px solid',
|
|
borderColor: 'divider',
|
|
boxShadow:
|
|
theme.palette.mode === 'light'
|
|
? `0 0 1px rgba(85, 166, 246, 0.1), 1px 1.5px 2px -1px rgba(85, 166, 246, 0.15), 4px 4px 12px -2.5px rgba(85, 166, 246, 0.15)`
|
|
: '0 0 1px rgba(2, 31, 59, 0.7), 1px 1.5px 2px -1px rgba(2, 31, 59, 0.65), 4px 4px 12px -2.5px rgba(2, 31, 59, 0.65)',
|
|
})}
|
|
>
|
|
<Box
|
|
sx={{
|
|
flexGrow: 1,
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
ml: '-18px',
|
|
px: 0,
|
|
}}
|
|
>
|
|
<Typography variant="h6" color="primary" sx={{paddingLeft:"25px",paddingRight:"15px"}}>REQUEST.BOX</Typography>
|
|
<Box sx={{ display: { xs: 'none', md: 'flex' } }}>
|
|
<MenuItem
|
|
onClick={() => scrollToSection('home')}
|
|
sx={{ py: '6px', px: '12px' }}
|
|
>
|
|
<Typography variant="body2" color="text.primary">
|
|
Home
|
|
</Typography>
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => scrollToSection('features')}
|
|
sx={{ py: '6px', px: '12px' }}
|
|
>
|
|
<Typography variant="body2" color="text.primary">
|
|
Features
|
|
</Typography>
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => scrollToSection('beta-access')}
|
|
sx={{ py: '6px', px: '12px' }}
|
|
>
|
|
<Typography variant="body2" color="text.primary">
|
|
Beta Testing
|
|
</Typography>
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => scrollToSection('faq')}
|
|
sx={{ py: '6px', px: '12px' }}
|
|
>
|
|
<Typography variant="body2" color="text.primary">
|
|
FAQ
|
|
</Typography>
|
|
</MenuItem>
|
|
<MenuItem
|
|
sx={{ py: '6px', px: '12px' }}
|
|
>
|
|
<Button href='https://discord.gg/hgcH4mvxFg'
|
|
target='_blank' variant="outlined" size="small">
|
|
Discord
|
|
</Button>
|
|
</MenuItem>
|
|
</Box>
|
|
</Box>
|
|
<Box
|
|
sx={{
|
|
display: { xs: 'none', md: 'flex' },
|
|
gap: 0.5,
|
|
alignItems: 'center',
|
|
}}
|
|
>
|
|
{(user ? (
|
|
<>
|
|
<Button color="primary">{user.nickname}</Button>
|
|
<Button
|
|
color="secondary"
|
|
variant="contained"
|
|
size="small"
|
|
component="a"
|
|
href="/dashboard"
|
|
startIcon={<OpenInNew />}
|
|
>
|
|
Dashboard
|
|
</Button>
|
|
<Button
|
|
color="error"
|
|
variant="outlined"
|
|
size="small"
|
|
component="a"
|
|
href="/api/auth/logout"
|
|
startIcon={<Logout />}
|
|
>
|
|
Logout
|
|
</Button>
|
|
</>
|
|
) : (
|
|
<Box>
|
|
<Button
|
|
color="primary"
|
|
variant="text"
|
|
size="small"
|
|
component="a"
|
|
href="/api/auth/login"
|
|
>
|
|
Sign in
|
|
</Button>
|
|
<Button
|
|
color="primary"
|
|
variant="contained"
|
|
size="small"
|
|
component="a"
|
|
href="/api/auth/login"
|
|
>
|
|
Sign up
|
|
</Button>
|
|
</Box>
|
|
)
|
|
)}
|
|
</Box>
|
|
<Box sx={{ display: { sm: '', md: 'none' } }}>
|
|
<Button
|
|
variant="text"
|
|
color="primary"
|
|
aria-label="menu"
|
|
onClick={toggleDrawer(true)}
|
|
sx={{ minWidth: '30px', p: '4px' }}
|
|
>
|
|
<MenuIcon />
|
|
</Button>
|
|
<Drawer anchor="right" open={open} onClose={toggleDrawer(false)}>
|
|
<Box
|
|
sx={{
|
|
minWidth: '60dvw',
|
|
p: 2,
|
|
backgroundColor: 'background.paper',
|
|
flexGrow: 1,
|
|
}}
|
|
>
|
|
<Box
|
|
sx={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'end',
|
|
flexGrow: 1,
|
|
}}
|
|
>
|
|
</Box>
|
|
<MenuItem onClick={() => scrollToSection('features')}>
|
|
Features
|
|
</MenuItem>
|
|
<MenuItem onClick={() => scrollToSection('testimonials')}>
|
|
Testimonials
|
|
</MenuItem>
|
|
<MenuItem onClick={() => scrollToSection('highlights')}>
|
|
Highlights
|
|
</MenuItem>
|
|
<MenuItem onClick={() => scrollToSection('pricing')}>
|
|
Pricing
|
|
</MenuItem>
|
|
<MenuItem onClick={() => scrollToSection('faq')}>FAQ</MenuItem>
|
|
<Divider />
|
|
<MenuItem>
|
|
<Button
|
|
color="primary"
|
|
variant="contained"
|
|
component="a"
|
|
href="/material-ui/getting-started/templates/sign-up/"
|
|
target="_blank"
|
|
sx={{ width: '100%' }}
|
|
>
|
|
Sign up
|
|
</Button>
|
|
</MenuItem>
|
|
<MenuItem>
|
|
<Button
|
|
color="primary"
|
|
variant="outlined"
|
|
component="a"
|
|
href="/material-ui/getting-started/templates/sign-in/"
|
|
target="_blank"
|
|
sx={{ width: '100%' }}
|
|
>
|
|
Sign in
|
|
</Button>
|
|
</MenuItem>
|
|
</Box>
|
|
</Drawer>
|
|
</Box>
|
|
</Toolbar>
|
|
</Container>
|
|
</AppBar>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default AppAppBar;
|