-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
perf(core): Avoid setting the same value to view properties #10602
perf(core): Avoid setting the same value to view properties #10602
Conversation
This change seems to have introduced an issue. The old code was working by accident, as it was never actually skipping anything because the condition would never be
Essentially because the old property is deleted before the condition, so it's always going to be checking for But now that it actually skips, there's a problem, old and new value are somehow always the same, for example adding some logging, I see:
But the general issue/side-effect of this is that for example <Label [ngClass]="{
'bg-white': !showGradient(),
'bg-gradient': showGradient()
}"></Label> this should toggle between a white
With Skip Screen.Recording.2024-09-04.at.1.04.28.AM.movWithout Skip Screen.Recording.2024-09-04.at.1.06.37.AM.mov |
@rigor789 Is it possible to share that sample? We can definitely revert it but before that, I'd like to see if we can find a solution because old code looked a bit weird. |
@CatchABus sure, here's an example of the same setup: https://github.com/rigor789/style-bug-10602/blob/main/src/app/app.component.html
|
@rigor789 Thanks, that helped a lot! I believe we should revert my PR for now due to how shorthand properties behave in core. |
…ativeScript#10602)" This reverts commit 499fe8d.
PR Checklist
What is the current behavior?
It seems we have 2 portions of dead code when setting view property values.
Sample:
This ends up with a dead if block and core will attempt to re-apply the same values to view properties.
Even though this is getting caught in Observable, we do one more additional check even though it's always going to be
false
.What is the new behavior?
This PR corrects property set behaviour and deletes property from list once its existence has been confirmed, enabling core to proceed to value check.
This is trivial, yet it keeps code cleaner and functional.