Code Monkey home page Code Monkey logo

Comments (6)

paoloricciuti avatar paoloricciuti commented on July 20, 2024 1

Interestingly the order of the props matters: repl

from svelte.

paoloricciuti avatar paoloricciuti commented on July 20, 2024 1

but aren't props like open or about primitives? shouldn't it run when the value changes? there is no mention of the parent object inside the $effect.

What I mean is this:

<Child open={true} {...rest} />
<button onclick={()=> rest = { open: false }}>change</button>

So if inside the effect you access open you have an implicit dependency on the object because it the object changes open could change

from svelte.

HighFunctioningSociopathSH avatar HighFunctioningSociopathSH commented on July 20, 2024

@trueadm Here's another example of a problem I think has to do with the same thing and it's weird.
Lets say we have the following component.
Test.svelte

<script lang="ts">
  import { onMount } from "svelte";

  let { open = $bindable(false), about, somethingElse }: { open?: boolean; about?: string; somethingElse?: number } = $props();

  // $inspect(open);
  $effect(() => {
    console.log(open);
  });

  onMount(() => {
    setTimeout(() => {
      open = true;
    }, 3000);
  });
</script>

And this is our +page where I'm simulating the spreading of 2 different objects based on a condition.

<script lang="ts">
  import Test from "$components/Test/Test.svelte";
  import { onMount } from "svelte";

  let boolVar = $state(false);
  onMount(() => {
    setTimeout(() => {
      boolVar = true;
    }, 5000);
  });
</script>

<Test {...boolVar ? {} : { about: "hello", somethingElse: 2 }}></Test>

Now after 3 seconds, we are simulating a change from inside Test that sets open to true, then wait for the setTimeout inside page to change the boolVar variable. You will notice that the variable open which was not even in the spreaded object, retakes its default value, meaning it changes back to false.
Now if you change the $effect with an inspect then something else happens. Even though the reactivity is triggered and $inspect runs again, this time the value of open remains true.

from svelte.

paoloricciuti avatar paoloricciuti commented on July 20, 2024

Just to clarify the behaviour: the reason effects rerun when you reassign a spread is because they need to check if the new shape of the object is overriding a prop. In my PR I limited this by listening to a derived of the keys of the object so that it's only rerunning when the keys change.

However it would still need to rerun in both cases you proposed.

from svelte.

HighFunctioningSociopathSH avatar HighFunctioningSociopathSH commented on July 20, 2024

but aren't props like open or about primitives? shouldn't it run when the value changes? there is no mention of the parent object inside the $effect.
still, it shouldn't cause open to take its default value again.

from svelte.

Rich-Harris avatar Rich-Harris commented on July 20, 2024

After discussion, we decided against merging #11290 β€” this is one of those cases where the cure (creating extra derived signals indiscriminately) is worse than the disease (effects occasionally overfiring). Effects should generally be idempotent, meaning it doesn't matter if they overfire, and in the cases where it does matter you can create a derived locally to work around the problem.

The case where a prop is reset to its default value is admittedly trickier. But #11290 doesn't actually solve it, it only mitigates it, because you could easily have a situation where the keys of the spread prop change.

If we want to fix that, I think we would need to have a new rule along the lines of 'if an unbound prop was changed locally, it won't be reset to the fallback value if the parent changes it to undefined'.

from svelte.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.