Git Product home page Git Product logo

Comments (3)

gaperton avatar gaperton commented on July 29, 2024

Is this bug or I do something wrong?

It's the feature. When carLink.at('manufacturer') is updated, it assumes that carLink is the plain object or array because it needs to know how to properly clone it. That's how nested link update is done: it creates the copies of the parent chain so that setState or other state management libraries could detect that direct state member is changed using the shallow comparison.

Therefore, no classes as state members are supported. As this is not the way to go in a large application, we're at Verizon/Volicon are not using NestedLink alone, but as a part of NestedReact. Which replaces React's state with observable and serializable classes. https://github.com/Volicon/NestedReact

Here is an example. In order to get ES6 classes syntax you need to use "rc" version. It will be released soon.

https://github.com/Volicon/NestedReact/tree/develop/examples/checklistTree

from nestedlink.

gaperton avatar gaperton commented on July 29, 2024

As an alternative, it is possible to create the fork of NestedLink to support immutable classes.

The easiest way to go is to add your own "helper". Put it in the third option to the switch (note that built-ins like Date should still go through the dummyHelper). Here:
https://github.com/Volicon/NestedLink/blob/master/valuelink.ts#L298

Helper is a combination of clone, map, and remove functions. That's what NestedLink must know how to do for your classes in order to operate properly. clone is essential. Others are needed only if you want to use corresponding operations in your classes.

I would just forward these operations to the object in your helper, and created the base class with such an operation. Generic "clone" operation can be implemented in the base class like this:

clone(){
    const copy = new this.constructor();
    Object.assign( copy, this );
    return copy;
}

In simple cases, it should work just fine.

from nestedlink.

bartko-s avatar bartko-s commented on July 29, 2024

ok. Thank you.

from nestedlink.

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.