Giter VIP home page Giter VIP logo

Comments (5)

FoHoOV avatar FoHoOV commented on August 16, 2024

If it is decided to have warning, it shoudn't be for usages of none-reactive values in effects/deriveds. IMHO a warning could be there, only if there are 0 reactive values inside an effect/derived. For example an effect could depend on only 1 reactive value, but use 10 other variables that are not reactive which is fine. If nothing in the effect, triggers a rerun, then there could be a warning. Also one might use $effect just for onMount and then cleanup logic. Thoughts?

from svelte.

MotionlessTrain avatar MotionlessTrain commented on August 16, 2024

If it is decided to have warning, it shoudn't be for usages of none-reactive values in effects/deriveds

The warning is to make sure you don't forget assigning them with $state, if they were meant to be reactive. That is also why it is a warning, and not an error, as it is fine to use those if you don't need the reactive dependency

from svelte.

brunnerh avatar brunnerh commented on August 16, 2024

The question is whether this would lead to many false positives or not.
To evaluate that, testing the warning on real world code would probably be helpful.

from svelte.

paoloricciuti avatar paoloricciuti commented on August 16, 2024

The question is whether this would lead to many false positives or not. To evaluate that, testing the warning on real world code would probably be helpful.

I think i'm with @FoHoOV on this one...there are reasons to use non stateful variables in an effect. The error should really just be thrown if that's the only dependency but this also means that the first function call should mute this error. Maybe even property access.

from svelte.

brunnerh avatar brunnerh commented on August 16, 2024

I suspect you both overestimate how often the warning would trigger - it is very specific.

The variable has to be...

  • non-reactive
  • locally declared
  • locally modified

E.g. constants and imports would not be affected.

How often do you really want to change a local value, use it in an $effect and not have the effect be triggered by that change?

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.