Skip to content
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

Conversation

Rajnish2105
Copy link

@Rajnish2105 Rajnish2105 commented Dec 25, 2024

Refactior: TODO: remove the switch and use a props like mobileTitle

Changes:

  1. I have moved the switch logic to the useWhatPage hook to maintain clean and modular code while ensuring the app's functionality remains intact.
  2. Instead of passing MobileTitle as a prop, I shifted the logic to the useWhatPage hook. This approach provides a cleaner and more optimized solution by deriving the title directly from the function.

I have verified that this pull request:

  • has no linting errors (npm run lint)
  • has no test errors (npm run test)
  • is from a uniquely-named feature branch and is up to date with the develop branch.
  • is descriptively named and links to an issue number, i.e. Fixes #123

Copy link
Collaborator

@raclim raclim left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks so much for giving this a shot! I edited it contained text meant for a different issue, I'm sorry about that!

Although this pull request addresses a TODO written within a file, we ideally want to accept pull requests that are associated to an issue to ensure that contributors can work on issues that have been confirmed by maintainers. I'm sorry that we couldn't get this in and that the process might've been a bit confusing, but I strongly encourage finding an issue to work within the repository vs. looking through the code!

@raclim raclim closed this Feb 7, 2025
}

const title = useMemo(resolveTitle, [pageName, project.name]);
// function resolveTitle() {
Copy link
Collaborator

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 and 213 - 230 could simply be deleted. Since this issue is attempting to address the TODO, line 212 could be removed as well.

};

// Add a console warning in development
if (process.env.NODE_ENV === 'development') {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes you applied to the useWhatPage.js hook should be visible within development, so I don't think this warning might be needed here!

Copy link
Author

Choose a reason for hiding this comment

The 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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants