-
Notifications
You must be signed in to change notification settings - Fork 12
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
Implement new App Launcher Navigation #158
Conversation
…yout. Update jhub_apps to support new layout.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
return window.jhdata | ||
? window.jhdata | ||
: JSON.parse(localStorage.getItem('jhdata') || '{}'); | ||
}; | ||
|
||
/** | ||
* Store JupyterHub data in local storage for non-hub pages | ||
* @param data | ||
*/ | ||
export const storeJhData = (data: JhData) => { | ||
localStorage.setItem('jhdata', JSON.stringify(data)); |
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.
Realized we had an endpoint for getting user data, so removed this and replaced with accessing from endpoint and storing in global storage
Can you merge the latest main, that's probably why the docs deployment is failing. |
nitpick: If there are too many of them on the sidebar, we can't see the last one: Screen.Recording.2024-03-20.at.10.18.11.am.mov |
The plan right now is to put the services under expandable sections, which would be collapsed by default, so that should help. We just don’t have the mechanism yet for categorization. That said, it might be worth mentioning during our design/dev sync this week as something to reconsider. |
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.
This looks great! 🎉
Reference Issues or PRs
N/A
What does this implement/fix?
Put a
x
in the boxes that applyTesting
Screenshots
Any other comments?