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

format IDE code #2674

Merged
merged 13 commits into from
Oct 2, 2023
Merged

format IDE code #2674

merged 13 commits into from
Oct 2, 2023

Conversation

JerryWu1234
Copy link
Contributor

@JerryWu1234 JerryWu1234 commented Sep 14, 2023

image
#2585

  • I've read and followed the contributing guide on how to create great pull requests.
  • I've updated the relevant documentation for any new or updated feature
  • I've linked relevant GitHub issue with "Closes #"
  • I've added a visual demonstration under the form of a screenshot or video

@JerryWu1234 JerryWu1234 changed the title fix format IDE code Sep 15, 2023
let newValue = input;

if ((input as JsExpressionAttrValue)?.$$jsExpression) {
const jsExpression = await tryFormatExpression(
(input as JsExpressionAttrValue).$$jsExpression,
data!,
Copy link
Member

Choose a reason for hiding this comment

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

If the backend call to getPrettierConfig fails, or is still loading, data will be undefined. So using ! is not the right solution as that is only reserved for when data is guaranteed to be defined by the programmer.

Instead, show a warning to the user that explains that the prettier config couldn't be loaded and therefore the code won't be formatted when saving.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

If the backend call to getPrettierConfig fails, or is still loading, data will be undefined. So using ! is not the right solution as that is only reserved for when data is guaranteed to be defined by the programmer.

Instead, show a warning to the user that explains that the prettier config couldn't be loaded and therefore the code won't be formatted when saving.

what's type of warning for user?
such as https://mui.com/material-ui/react-alert/?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

is there component that i can directly invoke ?

Copy link
Member

Choose a reason for hiding this comment

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

An Alert could work. I'd have to see what it looks like. For me I think it's important it's inline, close enough to the save button (i.e. no popup)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

image
how about this ?

Copy link
Member

Choose a reason for hiding this comment

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

this error only happens without a network I think

There could be a problem while prettier tries to access the file system, or a bug in our code, or in prettier, or our bundler could have transformed the code wrong, or it could be running on an incompatible node.js runtime that we're unaware about, a solar storm flipping a bit,... anything really 🙂

Copy link
Contributor Author

@JerryWu1234 JerryWu1234 Sep 25, 2023

Choose a reason for hiding this comment

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

There could be a problem while prettier tries to access the file system, or a bug in our code, or in prettier, or our bundler could have transformed the code wrong, or it could be running on an incompatible node.js runtime that we're unaware about, a solar storm flipping a bit,... anything really

I see.

do these errors need to be passed to front-end, if back-end occurs error ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@Janpot
please make a final check.

Copy link
Member

Choose a reason for hiding this comment

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

@JerryWu1234 useQuery is a wrapper around react-query. Next to the data property it will return an error property.

Copy link
Contributor Author

@JerryWu1234 JerryWu1234 Sep 27, 2023

Choose a reason for hiding this comment

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

nice point out.
before I thought we need to add a try catch and then pass to front end. lol
I will do it late

@Janpot Janpot added the core Infrastructure work going on behind the scenes label Oct 2, 2023
Copy link
Member

@Janpot Janpot left a comment

Choose a reason for hiding this comment

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

Great work, thanks!

@Janpot Janpot merged commit a34bbd3 into mui:master Oct 2, 2023
11 of 12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core Infrastructure work going on behind the scenes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants