-
Notifications
You must be signed in to change notification settings - Fork 1
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
DT-1152: Migrate Components from @mui/styles #1751
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
79cbc8a
feat: migrate AddUserAccess component
rushtong c948a8f
feat: fixes
rushtong 97ad89d
feat: migrate Failure component
rushtong f968404
feat: migrate FullViewSnapshotButton component
rushtong 14627b1
feat: AddUserAccess readonly props
rushtong 63afb28
feat: revert
rushtong c7b5f3b
feat: migrate InfoModal component
rushtong 2cab3e3
feat: readonly + destructure props
rushtong 6f85f12
feat: theming fixes
rushtong 0fa2f9b
feat: migrate LoadingSpinner component
rushtong 3e856c1
feat: import the correct `styled` function
rushtong 40fbe11
feat: migrate TabPanel component
rushtong 25450ec
feat: migrate TabWrapper component
rushtong c5d55b9
feat: migrate TerraTooltip component
rushtong 4f206f0
feat: fix readonly warnings
rushtong eb5c1c0
feat: migrate TextContent component
rushtong c4a8589
feat: prop fixes
rushtong 100fcb9
Merge branch 'refs/heads/develop' into gr-DT-1152-mui-style-fixes
rushtong 2862dea
feat: refactor TabWrapper for CustomTheme type safety
rushtong b8de5aa
feat: refactor FullViewSnapshotButton for CustomTheme type safety
rushtong 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,37 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { withStyles } from '@mui/styles'; | ||
import { Box } from '@mui/material'; | ||
import { styled } from '@mui/material/styles'; | ||
|
||
import ErrorIcon from 'media/icons/warning-standard-solid.svg?react'; | ||
|
||
const styles = (theme) => ({ | ||
text: { | ||
alignSelf: 'center', | ||
fontFamily: theme.typography.fontFamily, | ||
fontSize: 12, | ||
fontWeight: 600, | ||
padding: `0 0 0 ${theme.spacing(2)}px`, | ||
}, | ||
icon: { | ||
fill: theme.palette.primary.contrastText, | ||
height: theme.spacing(4), | ||
}, | ||
}); | ||
// Use styled component for text since it has >3 styles | ||
const StyledText = styled(Box)(({ theme }) => ({ | ||
alignSelf: 'center', | ||
fontFamily: theme.typography.fontFamily, | ||
fontSize: '12px', | ||
fontWeight: 600, | ||
padding: `0 0 0 ${theme.spacing(2)}`, | ||
})); | ||
|
||
function Failure({ errString, classes }) { | ||
function Failure({ errString }) { | ||
// Use sx prop for icon since it has ≤3 styles | ||
return ( | ||
<div> | ||
<ErrorIcon className={classes.icon} alt="logo" /> | ||
<div className={classes.text}>{errString}</div> | ||
</div> | ||
<Box> | ||
<ErrorIcon | ||
sx={{ | ||
fill: (theme) => theme.palette.primary.contrastText, | ||
height: (theme) => theme.spacing(4), | ||
}} | ||
alt="logo" | ||
/> | ||
<StyledText>{errString}</StyledText> | ||
</Box> | ||
); | ||
} | ||
|
||
Failure.propTypes = { | ||
classes: PropTypes.object.isRequired, | ||
errString: PropTypes.string, | ||
}; | ||
|
||
export default withStyles(styles)(Failure); | ||
export default Failure; |
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
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.
This one is borderline. It only has three properties, but it also has the hover logic? What do you think about pulling this out?
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.
That would totally be reasonable to pull it into a styled component.
The approach I took with my PR was just to go with whichever option (sx or styled) copilot picked. Especially for cases where a selection is borderline, I would like to defer to copilot's pick mostly to help expedite these PRs. We can always revisit a given pick if we're working with a component in the future.
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'm happy with the current approach, and I think once more components are converted, we'll have a better handle on how to generify this to handle more cases. For instance, our
CustomTheme
+useTheme()
approach did not work inTextContent.jsx
due to thespan
as an argument tostyled
.