-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
BUG: Performance issue when adding more than 20 classes to a single component #5525
Closed
2 tasks done
Comments
Agree with the suggested alternative, I will update accordingly. Thanks @duydvu |
2 tasks
This was referenced May 24, 2024
This was referenced Aug 27, 2024
This was referenced Sep 20, 2024
This was referenced Oct 26, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GrapesJS version
What browser are you using?
Edge v119.0.2151.72
Reproducible demo link
https://grapesjs.com/demo.html
Describe the bug
Hi, thank you for creating an amazing project. I would like to report an issue found during my use of GrapesJS.
How to reproduce the bug?
What is the expected behavior?
There should be no performance issue.
What is the current behavior?
The browser freezes for a noticeable amount of time. The more classes added, the longer it freezes. My browser freezes for 10 seconds when the component has 23 classes.
This is a common issue when working with TailwindCSS since there are a lot of classes. For example, if I copy an HTML template from a TailwindCSS library, the browser might freeze when I import to the Custom Code.
Cause
So I investigated and found the problem. Here it is:
The
combine
function generates all combinations of the classes, which results in 2^n combinations (n is the number of classes). So if there are 20 classes, there would be 1048576 combinations.If I understand it right, it generates all combinations to filter the CSS rules of the component in this function:
grapesjs/src/css_composer/index.ts
Line 373 in 8025b95
I think this algorithm is not optimal since it loops through all selectors and rules. A better solution is only looping through all the rules and for each rule, checking if the rule's selectors is a subset of the component's selectors.
Simplified example:
Component's selectors:
['.a', '.b', '.c', '.d', '.e', '.f']
Rules' selectors:
For each rule, you only need to check if
['.a', '.b', '.c']
is a subset of['.a', '.b', '.c', '.d', '.e', '.f']
, without generating all combinations of 6 classes.Code of Conduct
The text was updated successfully, but these errors were encountered: