-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Enable stats header row wrapping and expandable counts #8343
Closed
joshuaeilers
wants to merge
18
commits into
datahub-project:master
from
joshuaeilers:feature/prd-376
Closed
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
2e3bab2
fix(stats): improve stats word wrapping
af68c48
flex approach
403d7a4
revert test code
97a2781
componetize more stats
a043255
hide left separators
7616af9
use an overflow approach to hide the left borders
cff9232
proper stat filtering
ed0aed7
back out some test code
109e440
more componetization
8c9dfe5
last updated stat
9c9f2fa
revert test code
110361e
remove left dividers
c4f947d
margin
65781f2
remove more test code
28bd4d9
Merge branch 'master' into feature/prd-376
ec84c88
Merge branch 'master' into feature/prd-376
a7ec6ee
better handling of overflow css
0af2bb6
full width stats in search cards
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 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 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 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
12 changes: 0 additions & 12 deletions
12
datahub-web-react/src/app/entity/dataset/shared/FormattedBytesStat.tsx
This file was deleted.
Oops, something went wrong.
This file contains 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
38 changes: 38 additions & 0 deletions
38
datahub-web-react/src/app/entity/shared/components/styled/stat/ByteCountStat.tsx
This file contains 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,38 @@ | ||
import React from 'react'; | ||
import { HddOutlined } from '@ant-design/icons'; | ||
import StatText from './StatText'; | ||
import { formatBytes, formatNumberWithoutAbbreviation } from '../../../../../shared/formatNumber'; | ||
import { needsFormatting } from '../../../../../../utils/formatter'; | ||
import HorizontalExpander from '../../../../../shared/HorizontalExpander'; | ||
|
||
type Props = { | ||
color: string; | ||
disabled: boolean; | ||
sizeInBytes: number; | ||
}; | ||
|
||
const ByteCountStat = ({ color, disabled, sizeInBytes }: Props) => { | ||
const formattedBytes = formatBytes(sizeInBytes); | ||
|
||
return ( | ||
<HorizontalExpander | ||
disabled={disabled || !needsFormatting(sizeInBytes)} | ||
render={(isExpanded) => ( | ||
<StatText color={color}> | ||
<HddOutlined style={{ marginRight: 8, color }} /> | ||
{isExpanded ? ( | ||
<> | ||
<b>{formatNumberWithoutAbbreviation(sizeInBytes)}</b> Bytes | ||
</> | ||
) : ( | ||
<> | ||
<b>{formattedBytes.number}</b> {formattedBytes.unit} | ||
</> | ||
)} | ||
</StatText> | ||
)} | ||
/> | ||
); | ||
}; | ||
|
||
export default ByteCountStat; |
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.
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.
can we maybe add a minor padding/margin to the bottom? even like 4px or something. it looks a little tight on the bottom of the card between the stats and edge of card!