-
Notifications
You must be signed in to change notification settings - Fork 21
feat(admin-ui): implement mobile header, dashboard, and health screens (#2920) #2921
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ee1a154
feat(admin-ui): implement mobile header, dashboard, and health screen…
faisalsiddique4400 675eccf
feat(admin-ui): resolve code rabbit issues
faisalsiddique4400 c65bd1c
minor fixes
faisalsiddique4400 3e6692b
new hardcoded colors fixed
faisalsiddique4400 7fbd486
mathing the padding with nav
faisalsiddique4400 cd371ee
spaces fixed
faisalsiddique4400 d45e736
coderabbit fixes
faisalsiddique4400 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| import { memo } from 'react' | ||
|
|
||
| type ArrowRightIconProps = { | ||
| width?: number | string | ||
| height?: number | string | ||
| className?: string | ||
| } | ||
|
|
||
| export const ArrowRightIcon = memo<ArrowRightIconProps>( | ||
| ({ width = 10, height = 10, className }) => ( | ||
| <svg | ||
| width={width} | ||
| height={height} | ||
| viewBox="0 0 10 10" | ||
| fill="none" | ||
| className={className} | ||
| style={{ display: 'block' }} | ||
| aria-hidden="true" | ||
| focusable="false" | ||
| > | ||
| <path | ||
| d="M1 5h8M5.5 1.5L9 5l-3.5 3.5" | ||
| stroke="currentColor" | ||
| strokeWidth="1.2" | ||
| strokeLinecap="round" | ||
| strokeLinejoin="round" | ||
| /> | ||
| </svg> | ||
| ), | ||
| ) | ||
|
|
||
| ArrowRightIcon.displayName = 'ArrowRightIcon' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| import { memo } from 'react' | ||
|
|
||
| type RefreshIconProps = { | ||
| width?: number | string | ||
| height?: number | string | ||
| className?: string | ||
| } | ||
|
|
||
| export const RefreshIcon = memo<RefreshIconProps>(({ width = 22, height = 22, className }) => ( | ||
| <svg | ||
| width={width} | ||
| height={height} | ||
| viewBox="0 0 22 22" | ||
| fill="none" | ||
| className={className} | ||
| style={{ display: 'block' }} | ||
| aria-hidden="true" | ||
| focusable="false" | ||
| > | ||
| <path | ||
| d="M3.4375 11.6875C3.05766 11.6875 2.75 11.3798 2.75 11C2.75 6.45047 6.45047 2.75 11 2.75C13.2052 2.75 15.3106 3.65406 16.8438 5.18547V2.75C16.8438 2.37016 17.1514 2.0625 17.5312 2.0625C17.9111 2.0625 18.2188 2.37016 18.2188 2.75V7.21875C18.2188 7.59859 17.9111 7.90625 17.5312 7.90625H13.0625C12.6827 7.90625 12.375 7.59859 12.375 7.21875C12.375 6.83891 12.6827 6.53125 13.0625 6.53125H16.2233C14.9291 5.00844 13.047 4.125 11 4.125C7.20844 4.125 4.125 7.20844 4.125 11C4.125 11.3798 3.81734 11.6875 3.4375 11.6875ZM18.5625 10.3125C18.1827 10.3125 17.875 10.6202 17.875 11C17.875 14.7916 14.7916 17.875 11 17.875C8.98734 17.875 7.07609 16.9727 5.78187 15.4688H8.9375C9.31734 15.4688 9.625 15.1611 9.625 14.7812C9.625 14.4014 9.31734 14.0938 8.9375 14.0938H4.46875C4.08891 14.0938 3.78125 14.4014 3.78125 14.7812V19.25C3.78125 19.6298 4.08891 19.9375 4.46875 19.9375C4.84859 19.9375 5.15625 19.6298 5.15625 19.25V16.8145C6.68938 18.3477 8.79312 19.25 11 19.25C15.5495 19.25 19.25 15.5495 19.25 11C19.25 10.6202 18.9423 10.3125 18.5625 10.3125Z" | ||
| fill="currentColor" | ||
| /> | ||
| </svg> | ||
| )) | ||
|
|
||
| RefreshIcon.displayName = 'RefreshIcon' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.