Giter Site home page Giter Site logo

Comments (6)

ept avatar ept commented on June 27, 2024

Hi @aslakhellesoy, sorry for the slow response. This seems like a good idea. I've put an initial implementation here: a9d75d9 — could you give it a try and see if it does what you want?

One caveat about this feature: at present, Automerge allows an object to appear in several places in the tree (i.e. it allows the document to be a DAG), in which case the path will not be unique. In the future I plan to change this (i.e. I want to restrict the structure to always be a tree). With this in mind, I haven't added support for multiple paths; instead, if there are multiple paths to the same object, the current code just picks one arbitrarily. That behaviour is a bit nasty at present, but will make more sense when the tree restriction is in place.

Another caveat: sometimes an object is created and modified before it is linked into the tree. For example, if you do

Automerge.change(state, doc => doc.foo = {bar: 'baz'})

then Automerge first creates an empty map object, assigns the key bar on that object to the value baz, and then links that new object into the root object under key foo. This means that at the time of assignment of the key bar, the object is not yet in the tree, and thus the assignment operation of bar has no path. If this is a problem, we could probably switch the order of operations so that the empty object is linked into the tree first, and then its key is assigned.

What do you think?

from automerge-classic.

aslakhellesoy avatar aslakhellesoy commented on June 27, 2024

Hi @ept thanks a lot for this!

I've decided to try using React for now, despite my original reservations. I still think this change could be useful. I'll comment here if/when I get to try it out.

Thanks again

from automerge-classic.

FUEANGFA avatar FUEANGFA commented on June 27, 2024

good

from automerge-classic.

pvh avatar pvh commented on June 27, 2024

@aslakhellesoy just doing a little issue grooming. Is this something you're still looking at? If not, would you mind closing the issue? Thanks!

from automerge-classic.

pvh avatar pvh commented on June 27, 2024

Oh, hah, looks like @ept already implemented it. I'll close this.

from automerge-classic.

aslakhellesoy avatar aslakhellesoy commented on June 27, 2024

👍

from automerge-classic.

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.