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

Create static analysis tool for token usage #34108

Closed
wants to merge 27 commits into from

Conversation

brandonthomas
Copy link
Contributor

This change adds a static analysis tool based on ts-morph that processes token usage and can map to CSS rules, slots and generate meta data for which states they are applied in. This gives us a powerful set of data to build better tooling, have greater confidence when changes are made, and to help ensure we don't regress the existing token API when we apply semantic tokens across the repository.

Some features this tool has

  • Can be called from CLI and programmatically.
  • Can be run on individual dirs or across a repo. Default setup is to process all styles files in react-components.
  • Processes not just token references in files but can also process imports through n exports, template string literal spans, var fallback chains, Griffel's shorthands and more. We attempted to make this as comprehensive as possible however there may still be some edges left.
  • Because this is able to be configured, partners could also attempt to run this in their repos as long as they follow the *.styles.ts naming convention. We don't process all files for performance reasons.
  • We process, in multiple passes, makeStyles, makeResetStyles and mergeClasses. This allows us to build a comprehensive picture of styles as they are in the repository.
  • Saves analysis as JSON for further processing, tooling, or for testing.

etudie and others added 24 commits March 28, 2025 16:49
updating to use recursive analysis
process through AST
Still some bugs
remove output file
adding debug/perf measures
update code to properly output new format
simplify types
* Store makeResetStyles lookup

* Fix up reset styles

* Remove unneeded function

* Update analyzer to work on nested tokens

* Add mergeStyles variable detection

* Update comment

* Comment out completed task

* Create analysis.json

* Update analysis.json

* Add data layer based on style function and object name

* add assignedvars to all
* Update function call to spec to nested values

* Update test and focus style
* Update test to handle focus

* Update readme with completed tasks

* Update test
* add some module res code and tests

* updated module resolver

* updates to module resolver

* fixing tests
removing log

* fix tests
add import analyzer
leverage TS APIs to find aliased values

* remove console log.

* adding comment
updating readme

* writing css var analysis tests and ensure failure

* uncomment clean up

* update readme

* adding ability to analyze css vars
updating some broken import analysis

* fixing import processing for string literals and property accessors

* Fix duplication issues in token data
adjust tests so we aren't testing for scenarios we can't cover
add todo for more complexity/nesting

* updating button analysis
fixing import for cjs

* update README

* updating analysis with default format from tool and order

* add format to do

* some debug comments
break template expression handling out separately so we can deal with spans

* Format json with prettier automatically.

* update to dos

* Update so we recurse through imports and template string spans

* Adding spread handling
updating tests and sample data
centralize token detection

* fix spread analysis

* sorting json output for consistent results
updating button analysis
update todos
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I might actually revert this

@layershifter
Copy link
Member

@brandonthomas IMO contrib looks like a better fit for this kind of projects. @Hotell thoughts?

@JustSlone
Copy link
Collaborator

@brandonthomas IMO contrib looks like a better fit for this kind of projects. @Hotell thoughts?

I tend to agree, unless there is a reason this needs to be in the build with the core suite package, contrib is a great place to house this, we want to move more things to contrib where we can.

@brandonthomas
Copy link
Contributor Author

@JustSlone @layershifter I don't mind moving it over since we can run it in CLI and programmatically. I don't think I have any hard deps that would require it be here other than pure convenience. I can shift it over and pull it down in this repo for testing. I'd likely then just add it as a devdep.

Copy link
Contributor

@tudorpopams tudorpopams left a comment

Choose a reason for hiding this comment

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

Blocking until the right place for this project is figured out.

@brandonthomas
Copy link
Contributor Author

Moving all logic into contrib repo. Once published, I'll pull the package as a dev dep and run it here.

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.

6 participants