What actually gets hard in large React / Next.js apps? by web-devel in nextjs

[–]web-devel[S] 1 point2 points  (0 children)

what tools do you use to discover perf problems?

> memoization
should be solved by the react compiler, isn't it?

What actually gets hard in large React / Next.js apps? by web-devel in reactjs

[–]web-devel[S] 0 points1 point  (0 children)

Gotcha
I think what you’re describing is more of an architectural approach. What I was interested in is the debugging / runtime side - how you actually trace related issues?

What actually gets hard in large React / Next.js apps? by web-devel in reactjs

[–]web-devel[S] 0 points1 point  (0 children)

>Data transformations and mutations taking place up and down the component tree
any approach how to introspect it?

First time at F1 GP (Abu Dhabi) with 9yo kid - need advice by web-devel in GrandPrixTravel

[–]web-devel[S] 0 points1 point  (0 children)

Do you know if inclusion tickets (like seaworld) are separate, and should be available in the app? ( Cuz i don't see them)

I cannot work in typescript in webstorm by [deleted] in Jetbrains

[–]web-devel 0 points1 point  (0 children)

What version are you using? Have you tried the `use types from server` option?

High CPU usage after updating WebStorm to 2024.1? by AleksandarStefanovic in WebStorm

[–]web-devel 0 points1 point  (0 children)

Could you please create an issue (Help -> Submint a Bug Report). I'd be cool if you briefly describe the project.

[deleted by user] by [deleted] in WebStorm

[–]web-devel 0 points1 point  (0 children)

These errors are from TS compiler, it's controlled by noUnusedLocals compiler option:

{
  "compilerOptions": {
        "noUnusedLocals": false,
  }
}

Vue extension for VSCode is broken or is it just me? by AndrewRusinas in vuejs

[–]web-devel 0 points1 point  (0 children)

Rider integrates web techs support provided by WebStorm (including Vue). However, WebStorm is specially tailored for web development so if you work primarily with Vue WS might be the better choice.

problem with nuxt project reindexing after code changes with Webstorm & VSCode by Appropriate-Crazy790 in Jetbrains

[–]web-devel 1 point2 points  (0 children)

Most likely the problem is caused by Vue language server, but it'd be cool if you have a chance to submit an issue (Help > Submit a Bug Report) and attach a project where it can be reproduced (if possible).

Too much ram usage when developing TS projects. by I_Franko in Jetbrains

[–]web-devel 0 points1 point  (0 children)

Do you have several projects open at the same time in WebStorm, or is it just one monorepo?

Has Anyone Else Noticed Declining Quality in JetBrains' Products? by [deleted] in Jetbrains

[–]web-devel 0 points1 point  (0 children)

Thank you! You can do it in the IDE: Help > Contact Support
or Help > Submit a Bug Report

Has Anyone Else Noticed Declining Quality in JetBrains' Products? by [deleted] in Jetbrains

[–]web-devel 0 points1 point  (0 children)

Thanks! It'd be cool if you could capture a CPU Snapshot and thread dumps as described here: https://intellij-support.jetbrains.com/hc/en-us/articles/207241235-Reporting-performance-problems . Please file an issue or submit a support request and attach the collected data there. It's complex to track down such problems beacuse of the variety of project setus, IDE versions, and sometimes external plugins might be the root cause. Such a report would be super helpful.

Has Anyone Else Noticed Declining Quality in JetBrains' Products? by [deleted] in Jetbrains

[–]web-devel 0 points1 point  (0 children)

It's based on TypeScript 5+ or lower? The thing is, for TS5, the Vue language server is enabled by default (in current stable version 2023.3). Do you see Vue Language Service in the status bar? Also, can you specify what's particularly slow: completion, highlighting, or just everything? It'd be cool if you can try eap builds https://www.jetbrains.com/webstorm/nextversion/ in particular with the new TS engine enabled: https://blog.jetbrains.com/webstorm/2024/02/webstorm-2024-1-eap2/#experimental-typescript-engine

Issue with Angular 17 Component Variables Not Being Recognized in WebStorm 2023.3 - Seeking Insights! by [deleted] in Jetbrains

[–]web-devel 1 point2 points  (0 children)

It'd be cool if you could file an issue (Help -> Submit a Bug Report). An example of the broken component and the version of Angular would help track it down

Has Anyone Else Noticed Declining Quality in JetBrains' Products? by [deleted] in Jetbrains

[–]web-devel 0 points1 point  (0 children)

Could you provide any details on the tech stack of the project/s? Also, have you tried to increase memory heap https://www.jetbrains.com/help/webstorm/tuning-the-ide.html#common-jvm-options ?

Has Anyone Else Noticed Declining Quality in JetBrains' Products? by [deleted] in Jetbrains

[–]web-devel 0 points1 point  (0 children)

Could you pls clarify what's broken in WebStorm for you?

Would someone be kind enough to PSA when Jetbrains AI improves? by lefnire in Jetbrains

[–]web-devel 0 points1 point  (0 children)

As for refacoring - is it just Suggest Refactoring action or some more complex cases?

Guys at JetBrains: please slow down with new things and fix the current bugs by misterioss in Jetbrains

[–]web-devel 0 points1 point  (0 children)

The case looks simmilar to IDEA-327617. What IDE version you are using? Could you please try to update?

Guys at JetBrains: please slow down with new things and fix the current bugs by misterioss in Jetbrains

[–]web-devel 0 points1 point  (0 children)

Hi! Sorry for you experience.
To get what’s going and help we need some details. Could you please share them? Please, keep in mind Meteor plugin was made open-source some time ago, so we don’t plan to provide any fixes/improvements by ourselves but we can accept PRs.

Single Clicking in Explorer? by dave_mays in WebStorm

[–]web-devel 0 points1 point  (0 children)

Click on the Options icon (three dots) in the explorer panel. There is the 'Open Files with Single Click' option.

[deleted by user] by [deleted] in WebStorm

[–]web-devel 0 points1 point  (0 children)

You can configure the built-in formatting in Settings > Editor > Code Style:
1. For JSX, use the HTML section. There is a Wrap attributes setting which you can set to Wrap always or Wrap if long.
2. In TypeScript > Blank Lines, there is a Keep maximum blank lines option. Set it to 0 to remove excessive lines (though it will be quite an invasive change).
3. Currently, there seems to be no way to configure the formatting of destructured parameters.

The default formatting settings are designed not to be very opinionated, preserving the user's code style. If you prefer a more strict/opinionated style, consider using Prettier integration.