-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactored Header/MobileNav.jsx with all Todos #3312
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import React, { useContext, useMemo, useState } from 'react'; | ||
import React, { useContext, useState } from 'react'; | ||
import styled from 'styled-components'; | ||
import { useDispatch, useSelector } from 'react-redux'; | ||
import { useTranslation } from 'react-i18next'; | ||
import { Link } from 'react-router-dom'; | ||
import { sortBy } from 'lodash'; | ||
import classNames from 'classnames'; | ||
import PropTypes from 'prop-types'; | ||
|
||
import { ParentMenuContext } from '../../../../components/Nav/contexts'; | ||
import NavBar from '../../../../components/Nav/NavBar'; | ||
import { useMenuProps } from '../../../../components/Nav/NavDropdownMenu'; | ||
|
@@ -35,6 +37,7 @@ import { setLanguage } from '../../actions/preferences'; | |
import Overlay from '../../../App/components/Overlay'; | ||
import ProjectName from './ProjectName'; | ||
import CollectionCreate from '../../../User/components/CollectionCreate'; | ||
import { selectRootFile } from '../../selectors/files'; | ||
|
||
const Nav = styled(NavBar)` | ||
background: ${prop('MobilePanel.default.background')}; | ||
|
@@ -200,34 +203,36 @@ const LanguageSelect = styled.div` | |
} | ||
`; | ||
|
||
const MobileNav = () => { | ||
const MobileNav = ({ title }) => { | ||
const project = useSelector((state) => state.project); | ||
const user = useSelector((state) => state.user); | ||
|
||
const { t } = useTranslation(); | ||
// console.log('The title: ', title); | ||
|
||
// const { t } = useTranslation(); | ||
|
||
const editorLink = useSelector(selectSketchPath); | ||
const pageName = useWhatPage(); | ||
|
||
// TODO: remove the switch and use a props like mobileTitle <Nav layout=“dashboard” mobileTitle={t(‘Login’)} /> | ||
function resolveTitle() { | ||
switch (pageName) { | ||
case 'login': | ||
return t('LoginView.Login'); | ||
case 'signup': | ||
return t('LoginView.SignUp'); | ||
case 'account': | ||
return t('AccountView.Settings'); | ||
case 'examples': | ||
return t('Nav.File.Examples'); | ||
case 'myStuff': | ||
return 'My Stuff'; | ||
default: | ||
return project.name; | ||
} | ||
} | ||
|
||
const title = useMemo(resolveTitle, [pageName, project.name]); | ||
// function resolveTitle() { | ||
// switch (pageName) { | ||
// case 'login': | ||
// return t('LoginView.Login'); | ||
// case 'signup': | ||
// return t('LoginView.SignUp'); | ||
// case 'account': | ||
// return t('AccountView.Settings'); | ||
// case 'examples': | ||
// return t('Nav.File.Examples'); | ||
// case 'myStuff': | ||
// return 'My Stuff'; | ||
// default: | ||
// return project.name; | ||
// } | ||
// } | ||
|
||
// const title = useMemo(resolveTitle, [pageName, project.name]); | ||
|
||
const Logo = AsteriskIcon; | ||
return ( | ||
|
@@ -244,7 +249,7 @@ const MobileNav = () => { | |
)} | ||
</Title> | ||
{/* check if the user is in login page */} | ||
{pageName === 'login' || pageName === 'signup' ? ( | ||
{pageName === 'LoginView.Login' || pageName === 'LoginView.SignUp' ? ( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replacing hardcoded strings is a great move here! |
||
// showing the CrossIcon | ||
<Options> | ||
<div> | ||
|
@@ -256,7 +261,7 @@ const MobileNav = () => { | |
) : ( | ||
// Menus for other pages | ||
<Options> | ||
{pageName === 'myStuff' && <StuffMenu />} | ||
{pageName === 'My Stuff' && <StuffMenu />} | ||
{user.authenticated ? ( | ||
<AccountMenu /> | ||
) : ( | ||
|
@@ -266,7 +271,7 @@ const MobileNav = () => { | |
</Link> | ||
</div> | ||
)} | ||
{pageName === 'home' ? ( | ||
{pageName === 'home' || pageName === project.name ? ( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This could probably look more lik |
||
<MoreMenu /> | ||
) : ( | ||
<div> | ||
|
@@ -281,6 +286,14 @@ const MobileNav = () => { | |
); | ||
}; | ||
|
||
MobileNav.propTypes = { | ||
title: PropTypes.string | ||
}; | ||
|
||
MobileNav.defaultProps = { | ||
title: 'p5.js Web Editor' | ||
}; | ||
|
||
const StuffMenu = () => { | ||
const { isOpen, handlers } = useMenuProps('stuff'); | ||
const { newSketch } = useSketchActions(); | ||
|
@@ -341,9 +354,8 @@ const AccountMenu = () => { | |
|
||
const MoreMenu = () => { | ||
// TODO: use selectRootFile selector | ||
const rootFile = useSelector( | ||
(state) => state.files.filter((file) => file.name === 'root')[0] | ||
); | ||
// DONE | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If a comment is addressed, the original one can simply be deleted! |
||
const rootFile = useSelector(selectRootFile); | ||
const language = useSelector((state) => state.preferences.language); | ||
|
||
const dispatch = useDispatch(); | ||
|
@@ -367,8 +379,8 @@ const MoreMenu = () => { | |
{isLanguageModalVisible && ( | ||
<Overlay | ||
// TODO: add translations | ||
title="Select Language" | ||
ariaLabel="Select Language" | ||
title={t('selectLanguage', { defaultValue: 'Select Language' })} | ||
ariaLabel={t('selectLanguage', { defaultValue: 'Select Language' })} | ||
closeOverlay={() => setIsLanguageModalVisible(false)} | ||
> | ||
<LanguageSelect> | ||
|
@@ -420,7 +432,8 @@ const MoreMenu = () => { | |
{t('Nav.Sketch.AddFolder')} | ||
</NavMenuItem> | ||
{/* TODO: Add Translations */} | ||
<b>Settings</b> | ||
{/* DONE */} | ||
<b>{t('settings', { defaultValue: 'Settings' })}</b> | ||
<NavMenuItem | ||
onClick={() => { | ||
dispatch(openPreferences()); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,11 +31,13 @@ import { CmControllerContext } from '../../pages/IDEView'; | |
import MobileNav from './MobileNav'; | ||
import useIsMobile from '../../hooks/useIsMobile'; | ||
|
||
const Nav = ({ layout }) => { | ||
const Nav = ({ layout, mobileTitle }) => { | ||
const isMobile = useIsMobile(); | ||
|
||
// console.log('The updated mobile title is: ', mobileTitle); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We would ideally want to remove commented out logs! |
||
|
||
return isMobile ? ( | ||
<MobileNav /> | ||
<MobileNav title={mobileTitle} /> | ||
) : ( | ||
<NavBar> | ||
<LeftLayout layout={layout} /> | ||
|
@@ -45,11 +47,13 @@ const Nav = ({ layout }) => { | |
}; | ||
|
||
Nav.propTypes = { | ||
layout: PropTypes.oneOf(['dashboard', 'project']) | ||
layout: PropTypes.oneOf(['dashboard', 'project']), | ||
mobileTitle: PropTypes.string | ||
}; | ||
|
||
Nav.defaultProps = { | ||
layout: 'project' | ||
layout: 'project', | ||
mobileTitle: 'p5.js Web Editor' | ||
}; | ||
|
||
const LeftLayout = (props) => { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally, we want to isolate changes in each pull request to tie as much to the original issue as possible. In most scenarios, we recommend not having pull requests build on top of another and create dependencies on each other.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By update i meant i started from scratch but worked on the same problem, just with a different idea in mind.
i didn't used any code from previous pull request.