-
Notifications
You must be signed in to change notification settings - Fork 6
Drawer menu #129
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
Drawer menu #129
Conversation
Switched to clickable card for datasets.
… flushed at the bottom.
… enough for one row.
… default screen size columns size.
# Conflicts: # backend/app/routers/datasets.py # frontend/src/components/Dashbard.tsx
Fixed bug in link to registration.
longshuicy
left a comment
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.
| import {RootState} from "./types/data"; | ||
| import {resetLogout} from "./actions/common"; | ||
| import Layout from "./components/Layout"; | ||
| import {Paragraph} from "./components/Paragraph"; |
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.
I don't think Paragraph is being used
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.
Same as Layout
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.
Done. Thanks for the reminder. I try to do it when I remember, but we don't have an automatic way to do this. Also many of my files show in red because of the import React, {useEffect, useState} from "react"; import at the top. React is never used and Typescript doesn't like that.
frontend/src/components/Dashbard.tsx
Outdated
| <div className="inner-container"> | ||
| <Grid container spacing={4}> | ||
| <Grid item xs> | ||
| <Grid item> |
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.
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.
I made a new file called Explore.tsx to make it clear that that is the explore page. I fixed it there and remove Dasboard.tsx file to not create confusion.


Depends on #108 . Please merge that first.
New Layout component to wrap pages using the MUI Drawer. All new pages should include this Layout.
Fixed bug in link to registration.
TODO: store open/closed variable for drawer in redux store. Right now the drawer always shows closed after switching pages.