correct MobileNavMenu to be closed when outside area will be clicked
This commit is contained in:
parent
9b1742880b
commit
3a36996b24
@ -9,15 +9,15 @@ import {Link} from "react-router-dom";
|
|||||||
|
|
||||||
const MobileNavMenuStyle = styled(FlexColumn)`
|
const MobileNavMenuStyle = styled(FlexColumn)`
|
||||||
gap: 32px;
|
gap: 32px;
|
||||||
padding: 16px 20px;
|
padding: 20px;
|
||||||
background-color: ${({theme}) => theme.colors.white};
|
background-color: ${({theme}) => theme.colors.white};
|
||||||
box-shadow: ${({theme}) => theme.navShadow};
|
box-shadow: ${({theme}) => theme.navShadow};
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 44px;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
transition: transform 0.3s ease-in-out;
|
z-index: 2;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -44,9 +44,22 @@ const MobileNavMenuStyle = styled(FlexColumn)`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const TransBack = styled(Container)`
|
||||||
|
position: fixed;
|
||||||
|
top: 42px;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
transition: transform 0.3s ease-in-out;
|
||||||
|
`
|
||||||
|
|
||||||
const MobileNavMenu = (props) => {
|
const MobileNavMenu = (props) => {
|
||||||
return (
|
return (
|
||||||
<MobileNavMenuStyle as='ul' translateY={props.translateY}>
|
<TransBack translateY={props.translateY} onClick={props.toggleNavMenu}>
|
||||||
|
<MobileNavMenuStyle as='ul'>
|
||||||
<FlexRow as={Link} to='/' gap='16px'>
|
<FlexRow as={Link} to='/' gap='16px'>
|
||||||
<Svg width='16px' height='16px' src={loginIco}/>
|
<Svg width='16px' height='16px' src={loginIco}/>
|
||||||
<Menu as='li'>
|
<Menu as='li'>
|
||||||
@ -66,6 +79,7 @@ const MobileNavMenu = (props) => {
|
|||||||
</Menu>
|
</Menu>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
</MobileNavMenuStyle>
|
</MobileNavMenuStyle>
|
||||||
|
</TransBack>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,22 +29,22 @@ const MenuButton = styled(Container)`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const NavBar = () => {
|
const NavBar = () => {
|
||||||
const [navMenuTranslateY, setNavMenuTranslateY] = React.useState('-100vh');
|
const [navMenuTranslateY, setNavMenuTranslateY] = React.useState('calc(-100vh - 42px)');
|
||||||
|
|
||||||
const toggleNavMenu = () => {
|
const toggleNavMenu = () => {
|
||||||
if (navMenuTranslateY === '-100vh')
|
if (navMenuTranslateY === 'calc(-100vh - 42px)')
|
||||||
setNavMenuTranslateY('0');
|
setNavMenuTranslateY('0');
|
||||||
else
|
else
|
||||||
setNavMenuTranslateY('-100vh');
|
setNavMenuTranslateY('calc(-100vh - 42px)');
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NavBarStyle as='header'>
|
<NavBarStyle as='header'>
|
||||||
<FlexRow height='100%' alignmentX='space-between' as='nav'>
|
<FlexRow height='100%' alignmentX='space-between' as='nav'>
|
||||||
<Logo/>
|
<Logo/>
|
||||||
<MenuButton as='button' onClick={() => toggleNavMenu()}/>
|
<MenuButton as='button' onClick={toggleNavMenu}/>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
<MobileNavMenu translateY={navMenuTranslateY}/>
|
<MobileNavMenu translateY={navMenuTranslateY} toggleNavMenu={toggleNavMenu}/>
|
||||||
</NavBarStyle>
|
</NavBarStyle>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -8,13 +8,13 @@ import challengesResp from "../prototypeData/challenges";
|
|||||||
import {ELEMENTS_PER_PAGE} from "../utils/globals";
|
import {ELEMENTS_PER_PAGE} from "../utils/globals";
|
||||||
|
|
||||||
const Challenges = () => {
|
const Challenges = () => {
|
||||||
const calcPages = (challenges) => {
|
|
||||||
return Math.ceil(challenges.length / ELEMENTS_PER_PAGE);
|
|
||||||
}
|
|
||||||
|
|
||||||
const [pageNr, setPageNr] = React.useState(1);
|
const [pageNr, setPageNr] = React.useState(1);
|
||||||
const [challenges, setChallenges] = React.useState(challengesResp);
|
const [challenges, setChallenges] = React.useState(challengesResp);
|
||||||
|
|
||||||
|
const calcPages = () => {
|
||||||
|
return Math.ceil(challenges.length / ELEMENTS_PER_PAGE);
|
||||||
|
}
|
||||||
|
|
||||||
const searchQueryHandler = (event) => {
|
const searchQueryHandler = (event) => {
|
||||||
let searchQuery = event.target.value;
|
let searchQuery = event.target.value;
|
||||||
let challengesToRender = [];
|
let challengesToRender = [];
|
||||||
@ -47,7 +47,6 @@ const Challenges = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const renderChallenges = () => {
|
const renderChallenges = () => {
|
||||||
|
|
||||||
const n = (pageNr - 1) * ELEMENTS_PER_PAGE;
|
const n = (pageNr - 1) * ELEMENTS_PER_PAGE;
|
||||||
return (
|
return (
|
||||||
challenges.slice(n, n + ELEMENTS_PER_PAGE).map((challenge, index) => {
|
challenges.slice(n, n + ELEMENTS_PER_PAGE).map((challenge, index) => {
|
||||||
@ -75,7 +74,7 @@ const Challenges = () => {
|
|||||||
</Grid>
|
</Grid>
|
||||||
</FlexColumn>
|
</FlexColumn>
|
||||||
</FlexColumn>
|
</FlexColumn>
|
||||||
<Pager pageNr={pageNr} pages={calcPages(challenges)}
|
<Pager pageNr={pageNr} pages={calcPages()}
|
||||||
nextPage={nextPage} previousPage={previousPage}/>
|
nextPage={nextPage} previousPage={previousPage}/>
|
||||||
</FlexColumn>
|
</FlexColumn>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user