-
-
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
Refactor MobileNav for handling mobile title more efficiently #3310
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,14 +1,33 @@ | ||
import { useMemo } from 'react'; | ||
import { useSelector } from 'react-redux'; | ||
import { useLocation } from 'react-router-dom'; | ||
import { useTranslation } from 'react-i18next'; | ||
|
||
const getPageTitle = (pageName, t) => { | ||
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'; | ||
case 'home': | ||
default: | ||
return null; // Will use project.name as fallback in Nav | ||
} | ||
}; | ||
|
||
/** | ||
* | ||
* @returns {"home" | "myStuff" | "login" | "signup" | "account" | "examples"} | ||
* @returns {{ page: "home" | "myStuff" | "login" | "signup" | "account" | "examples", title: string }} | ||
*/ | ||
const useWhatPage = () => { | ||
const username = useSelector((state) => state.user.username); | ||
const { pathname } = useLocation(); | ||
const { t } = useTranslation(); | ||
|
||
const pageName = useMemo(() => { | ||
const myStuffPattern = new RegExp( | ||
|
@@ -24,7 +43,28 @@ const useWhatPage = () => { | |
return 'home'; | ||
}, [pathname, username]); | ||
|
||
return pageName; | ||
const title = useMemo(() => getPageTitle(pageName, t), [pageName, t]); | ||
|
||
// For backwards compatibility | ||
const returnValue = { | ||
pageName, | ||
title | ||
}; | ||
|
||
// Add a console warning in development | ||
if (process.env.NODE_ENV === 'development') { | ||
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. The changes you applied to the 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. Thanks for taking the time to review my code! I appreciate your feedback and learned something from it. I'll make the necessary improvements. Thanks again! |
||
// Make the object look like a string for old code | ||
Object.defineProperty(returnValue, 'toString', { | ||
value: () => { | ||
console.warn( | ||
'Deprecated: useWhatPage() now returns an object. Please update your code to use { page, title }.' | ||
); | ||
return pageName; | ||
} | ||
}); | ||
} | ||
|
||
return returnValue; | ||
}; | ||
|
||
export default useWhatPage; |
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.
Although we can't get this in, I wanted to leave a few notes for your work!
Ideally, we want to ensure that comments provide supportive information. Since this function is being removed, ideally lines
212
and213 - 230
could simply be deleted. Since this issue is attempting to address the TODO, line212
could be removed as well.