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

style(frontend): organize imports with Biome TASK-1640 #5568

Merged
merged 14 commits into from
Mar 5, 2025

Conversation

Akuukis
Copy link
Contributor

@Akuukis Akuukis commented Mar 4, 2025

💭 Notes

See package.json, tsconfig.json, biome.jsonc, webpack.common.js, kpi.code-workspace and js/k-icons.ts files. The rest are semi-auto-generated.

Organize imports using Biome, automatically on save in VSCode workspace. As Biome explains:

Import statements are sorted by “distance”. Modules that are “farther” from the user are put on the top, modules “closer” to the user are put on the bottom.

For smarter distance calculation Biome treats # prefixed paths as internal paths (as implemented by nodejs itself), and so I also did a simple search/replace refactor to consolidate aliases and remap jsapp/js/* to #/*.

Biome supports grouped imports. Note that manually set grouped imports conflicts with auto-import functionality - auto-imports just add the new import at the end of imports and so at the end of last import group instead of the correct import group, and then either we commit wrong grouping or the import has to be adjusted manually anyways. Usually the first, but both defeats the purpose of either auto-imports or import group. Unless, it's ok to most of time to automatically add to only the last group, while only manually to others! Here's my compromise:

  • first group for side-effect imports (e.g. import './example.scss'), we want the order of them manually reviewed anyways. And we will have less of them over time.
  • second group for import { ... } from 'react' only, because it looks like all of like to see react import at the top of other imports, because almost all files already had it there. It's only one line (or none), there wont be second line.
  • third group for everything else, auto-import safe and auto-sorted.

👀 Preview steps

Developers:

  • open repo in the VSCode workspace
    • perhaps also restart Biome extension (CTRL+SHIFT+P -> "Biome: Restart LSP Server") to load the new config
    • YMMV for other IDEs
  • open a javascript or typescript file
  • change import order
  • save and see how it resorts the imports
    • if not, in VSCode check bottom-right corner whenever formatting is manually disabled

Users:

  • nothing should change.
  • beware of order of explicit side-effect imports. Please search for import ' to review those parts.
  • beware of order of hidden side-effect imports - do we have any? 🤔

Akuukis added 10 commits March 4, 2025 12:57

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
This feature was designed for use in conjunction with AMD module loaders in
the browser, and is not recommended in any other context.
As of TypeScript 4.1, baseUrl is no longer required to be set when using paths.
~ https://www.typescriptlang.org/tsconfig/#baseUrl
from 'jsapp/js/utils -> from 'utils
from 'js/utils -> from 'utils
from 'jsapp/js -> from 'js
Akuukis added 2 commits March 4, 2025 16:11
@Akuukis Akuukis changed the title style(frontend): organize imports with Biome style(frontend): organize imports with Biome TASK-1640 Mar 4, 2025
Copy link
Member

@magicznyleszek magicznyleszek left a comment

Choose a reason for hiding this comment

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

Just one question to verify things. Other than that LGTM, tested and works like a charm :)

Akuukis added 2 commits March 5, 2025 13:22
@Akuukis Akuukis merged commit d5796bd into main Mar 5, 2025
5 checks passed
@Akuukis Akuukis deleted the kalvis/import-paths-2 branch March 5, 2025 11:58
jamesrkiger pushed a commit that referenced this pull request Mar 5, 2025
…5571)

### 🗒️ Checklist

1. [X] run linter locally
2. [X] update all related docs (API, README, inline, etc.), if any
3. [X] draft PR with a title `<type>(<scope>)<!>: <title> TASK-1234`
4. [X] tag PR: at least `frontend` or `backend` unless it's global
5. [X] fill in the template below and delete template comments
6. [X] review thyself: read the diff and repro the preview as written
7. [X] open PR & confirm that CI passes
8. [X] request reviewers, if needed
9. [ ] delete this section before merging

### 💭 Notes
Error from #5568. The Leaflet
library needs to have the L object imported before other leaflet
imports.

### 👀 Preview steps

1. ℹ️ have an account and a project
2. Navigate to the Project Summary page
4. 🔴 [on main] notice that if you click on "Data" or "Settings", an
error message is shown
5. 🟢 [on PR] notice that you can click on and view the "Data" and
"Settings" pages
Akuukis added a commit that referenced this pull request Mar 19, 2025
### 📣 Summary

Revert broken default line-height for various elements.

### 💭 Notes

CSS import order matters, because CSS selectors with equal specificity
the last one applies.
#5568 across files moved mantine default styles after kobo styles that
changed the resulting CSS rules.

### 👀 Preview steps

- launch frontend
- 🟢 notice that line-height is as expected (compare with
before/after screenshots in the ticket)
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.

None yet

2 participants