-
Notifications
You must be signed in to change notification settings - Fork 71
PD-547: Add payment status badge to project nav #337
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
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ef66415
add project stauts badge
bruugey 106c3b7
changeset
bruugey 4128a8c
refactor
bruugey c491d8e
use variant from badge
bruugey c71ae80
set width to 32px manually on platform icons for submenu alignment
bruugey 7749d6b
changeset for menu
bruugey 30cb33e
change export patterns and fix platform icon bug
bruugey 2e4314f
merged with mater
bruugey 2c8d9e3
merged with master
bruugey 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@leafygreen-ui/mongo-nav': minor | ||
--- | ||
|
||
Adds project status badge to ProjectNav |
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,5 @@ | ||
--- | ||
'@leafygreen-ui/menu': patch | ||
--- | ||
|
||
Fixes SubMenuIcon padding to account for change in size of xlarge glyphs |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,33 @@ | ||
import React from 'react'; | ||
import Badge, { Variant } from '@leafygreen-ui/badge'; | ||
import { css } from '@leafygreen-ui/emotion'; | ||
import { ProjectStatus } from '../types'; | ||
|
||
const projectStatusBadgeMargin = css` | ||
margin-right: 20px; | ||
`; | ||
|
||
const projectStatusBadgeVariant = { | ||
[ProjectStatus.Active]: Variant.Green, | ||
[ProjectStatus.Closing]: Variant.Yellow, | ||
[ProjectStatus.Closed]: Variant.Red, | ||
[ProjectStatus.Dead]: Variant.Red, | ||
}; | ||
|
||
interface ProjectStatusBadgeProps { | ||
currentStatus: ProjectStatus; | ||
} | ||
|
||
export default function ProjectStatusBadge({ | ||
currentStatus, | ||
}: ProjectStatusBadgeProps) { | ||
return ( | ||
<Badge | ||
variant={projectStatusBadgeVariant[currentStatus]} | ||
data-testid="project-nav-project-status-badge" | ||
className={projectStatusBadgeMargin} | ||
> | ||
{currentStatus} | ||
</Badge> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import OrgNavLink from './OrgNavLink'; | ||
import InteractionRingWrapper from './InteractionRingWrapper'; | ||
import OnPremUserMenu from './OnPremUserMenu'; | ||
export { OrgNavLink, InteractionRingWrapper, OnPremUserMenu }; | ||
export { default as OrgNavLink } from './OrgNavLink'; | ||
export { default as InteractionRingWrapper } from './InteractionRingWrapper'; | ||
export { default as OnPremUserMenu } from './OnPremUserMenu'; | ||
export { default as ProjectStatusBadge } from './ProjectStatusBadge'; | ||
export { RealmIcon, AtlasIcon, ChartsIcon } from './Icons'; |
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
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.
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.
Wondering what this change is for?
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.
To better align the two badges, as they are in the design spec