Skip to content
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

chore: remove more mui #2585

Merged
merged 19 commits into from
Apr 2, 2025
Merged

chore: remove more mui #2585

merged 19 commits into from
Apr 2, 2025

Conversation

jimniels
Copy link
Collaborator

Removing more mui dependencies. See inline comments for changes

@cla-bot cla-bot bot added the cla-signed label Mar 26, 2025
Copy link

qa-wolf bot commented Mar 26, 2025

QA Wolf here! As you write new code it's important that your test coverage is keeping up.
Click here to request test coverage for this PR!

Copy link
Contributor

github-actions bot commented Mar 26, 2025

Preview - Build & Deploy Images

✅ Build images
✅ Deploy images

🕒 Last deployed: Mar 28, 2025 at 04:42 PM UTC

🔗 URL: https://jim-remove-more-mui.quadratic-preview.com

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 26, 2025 22:05 Destroyed
],
};
};
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replaced all these with their (roughly) equivalents in tailwind.

CleanShot 2025-03-26 at 15 53 20@2x

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 26, 2025 22:09 Destroyed
@@ -99,7 +100,7 @@ const commands: CommandGroup = {
label: 'Date and time format',
isAvailable: isAvailableBecauseCanEditFile,
Component: (props) => {
return <CommandPaletteListItem {...props} action={props.openDateFormat} icon={<DateRangeIcon />} />;
return <CommandPaletteListItem {...props} action={props.openDateFormat} icon={<FormatDateTimeIcon />} />;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use the same icon we're using elsewhere (like the toolbar)

CleanShot 2025-03-26 at 16 09 03@2x

<Button asChild variant="outline" size="sm">
<Link to={ROUTES.LOGIN_WITH_REDIRECT()}>Log in</Link>
</Button>
<Button size="sm">
<Link to={ROUTES.SIGNUP_WITH_REDIRECT()}>Sign up</Link>
</Button>
</Stack>
</div>
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No visual change here. Identical to before

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 26, 2025 22:10 Destroyed
Copy link

codecov bot commented Mar 26, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 90.39%. Comparing base (7654d7e) to head (d3aebc6).
Report is 47 commits behind head on qa.

Additional details and impacted files
@@           Coverage Diff           @@
##               qa    #2585   +/-   ##
=======================================
  Coverage   90.39%   90.39%           
=======================================
  Files         383      383           
  Lines       86262    86262           
=======================================
  Hits        77973    77973           
  Misses       8289     8289           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

message={message}
/>
);
};
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File wasn't being used anywhere

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 26, 2025 22:19 Destroyed
@@ -147,7 +147,7 @@ export const SheetRange = (props: Props) => {
side="bottom"
>
<Button size="sm" onClick={onInsert} disabled={disableButton}>
<HighlightAltIcon fontSize="small" />
<InsertCellRefIcon />
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use the existing 'insert cell ref' icon

CleanShot 2025-03-26 at 16 22 07@2x

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 26, 2025 22:23 Destroyed
@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 26, 2025 22:35 Destroyed
) : (
<Box style={styles}>{inner}</Box>
<div className={classNames}>{inner}</div>
Copy link
Collaborator Author

@jimniels jimniels Mar 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use standard tokens for theming, including standard font size.

Because this makes the sheet bar and the bottom bar have a similar visual weight, I made the sheet bar normal black and bottom bar muted, providing emphasized hierarchy between these two (and the sheet)

CleanShot 2025-03-26 at 16 36 54@2x

@@ -14,6 +14,7 @@ import { javascriptWebWorker } from '@/app/web-workers/javascriptWebWorker/javas
import type { LanguageState } from '@/app/web-workers/languageTypes';
import { pythonWebWorker } from '@/app/web-workers/pythonWebWorker/pythonWebWorker';
import { quadraticCore } from '@/app/web-workers/quadraticCore/quadraticCore';
import { StopIcon } from '@/shared/components/Icons';
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no visual change. just use the one from our collection rather than mui

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 26, 2025 22:42 Destroyed
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';

const SHOW_SELECTION_SUMMARY_DELAY = 500;
const DECIMAL_PLACES = 2;

export const SelectionSummary = () => {
const isBigEnoughForActiveSelectionStats = useMediaQuery('(min-width:1000px)');
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hide via CSS rather than special mui JS hook

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 26, 2025 22:45 Destroyed
@@ -37,7 +37,7 @@ export function EducationDialog() {
<DialogContent className="max-w-sm">
<DialogHeader className="text-center sm:text-center">
<div className="flex flex-col items-center gap-2 py-4">
<SchoolOutlined sx={{ fontSize: '64px' }} className="text-primary" />
<EducationIcon className="text-primary" size="2xl" />
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No big visual change here, just swapping the mui icon for the one from material (had to add scaling to the base Icon component).

CleanShot 2025-03-27 at 14 08 12@2x

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 27, 2025 20:09 Destroyed
@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 27, 2025 22:09 Destroyed
>
{sheet.name}
</Box>
</div>
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No visual changes.

}}
/>
);
}
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unused file.

@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 27, 2025 22:32 Destroyed
@github-actions github-actions bot temporarily deployed to preview-pr-2585 March 27, 2025 22:33 Destroyed
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
muiColors.blueGrey['600'],
muiColors.lime['900'],
muiColors.brown['500'],
tailwindColors.orange['600'],
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have no clue how these numbers match up. Maybe the UI reviewer can validate color consistency of this branch and main?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had to figure out how these matched up doing the work ha, so I just took a screenshot. It's on a comment I left

Copy link
Collaborator

@ddimaria ddimaria left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code looks good!

@ddimaria
Copy link
Collaborator

@jimniels lints are failing in CI.

@jimniels
Copy link
Collaborator Author

@ddimaria thx for the tip. Ran prettier locally and made all fixes. Should pass now...

Copy link
Collaborator

@davidkircos davidkircos left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, looks good to me!

@davidkircos davidkircos merged commit 911abe6 into qa Apr 2, 2025
23 checks passed
@davidkircos davidkircos deleted the jim/remove-more-mui branch April 2, 2025 01:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants