Giter VIP home page Giter VIP logo

Comments (3)

derrickbeining avatar derrickbeining commented on May 25, 2024

@soeik my apologies for not seeing this sooner. No I don't think you're doing anything wrong. This is just the way TypeScript handles excess property checking. Here's a decent article on the subject. If you want to get a type error, you'd need to specifically annotate the return type of the update function in swap, like this:

export const setIsLoading = (isLoading: boolean) =>
    swap<AppState>(appState, (state): AppState => ({
        ...state,
        foo: 0, // now there's an error
        isLoading,
    }))

I'm sure there's a way I could improve the typings for swap to make it prevent excess properties more strictly. Don't have the time to mess with it right now, but if anyone wants to PR that feature, I wouldn't be opposed.

However, the excess property should be innocuous. The Atom's type will remain unchanged, so you won't be able to read any excess properties that get put in there. I guess theoretically, this does pose as a sort of memory leak if your app happens to continually add dynamically generated properties to the Atom, because they'd never be able to be garbage collected.

from react-atom.

derrickbeining avatar derrickbeining commented on May 25, 2024

Going to close this for now, feel free to comment further.

from react-atom.

soeik avatar soeik commented on May 25, 2024

Thank you so much for the explanation. Now I see what's happening. And I don't see any way to fix this, to be honest, unless TS introduces something like the exact type.

from react-atom.

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.