Content-Length: 308632 | pFad | https://github.com/NativeScript/NativeScript/pull/10602

0C perf(core): Avoid setting the same value to view properties by CatchABus · Pull Request #10602 · NativeScript/NativeScript · GitHub
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

perf(core): Avoid setting the same value to view properties #10602

Merged
merged 1 commit into from
Aug 8, 2024

Conversation

CatchABus
Copy link
Contributor

PR Checklist

What is the current behavior?

It seems we have 2 portions of dead code when setting view property values.

Sample:

delete oldProperties[property];
if (property in oldProperties && oldProperties[property] === value) {
	// Skip unchanged values
	continue;
}

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.

@cla-bot cla-bot bot added the cla: yes label Aug 7, 2024
@NathanWalker NathanWalker merged commit 499fe8d into NativeScript:main Aug 8, 2024
4 checks passed
@rigor789
Copy link
Member

rigor789 commented Sep 3, 2024

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 true:

delete oldProperties[property];
if (property in oldProperties && oldProperties[property] === value) {

Essentially because the old property is deleted before the condition, so it's always going to be checking for undefined === value...

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:

  skipping apply background-color
   - old rgba(241, 241, 255, 0.08)
   - new rgba(241, 241, 255, 0.08)
...
  skipping apply background
   - old linear-gradient(to right, #b21834, #860808)
   - new linear-gradient(to right, #b21834, #860808)

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 background-color and a gradient background, since these are separate properties, but it actually goes like this:

1. showGradient() === false -> bg-white - OK
2. showGradient() === true -> bg-gradient - OK
3. showGradient() === false -> no background, nor background-color - NOT OK

With Skip

Screen.Recording.2024-09-04.at.1.04.28.AM.mov

Without Skip

Screen.Recording.2024-09-04.at.1.06.37.AM.mov

@CatchABus
Copy link
Contributor Author

@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.

@rigor789
Copy link
Member

rigor789 commented Sep 4, 2024

@CatchABus sure, here's an example of the same setup: https://github.com/rigor789/style-bug-10602/blob/main/src/app/app.component.html

  1. clone
  2. ns debug ios --no-hmr
  3. button is blue ✅
  4. press button: button has gradient: ✅
  5. press button again: button loses it's background: ❌
  6. press button again: button has gradient: ✅

@CatchABus
Copy link
Contributor Author

CatchABus commented Sep 4, 2024

@CatchABus sure, here's an example of the same setup: https://github.com/rigor789/style-bug-10602/blob/main/src/app/app.component.html

  1. clone
  2. ns debug ios --no-hmr
  3. button is blue ✅
  4. press button: button has gradient: ✅
  5. press button again: button loses it's background: ❌
  6. press button again: button has gradient: ✅

@rigor789 Thanks, that helped a lot! I believe we should revert my PR for now due to how shorthand properties behave in core.
I have a good idea on how to improve handling for those properties and re-apply these changes at a later time. 😄

CatchABus added a commit to CatchABus/NativeScript that referenced this pull request Sep 5, 2024
NathanWalker pushed a commit that referenced this pull request Oct 23, 2024
…#10618)

Revert "perf(core): avoid setting the same value to view properties (#10602)"

This reverts commit 499fe8d.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/NativeScript/NativeScript/pull/10602

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy