Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dynamically set a nested property? #16

Open
michaelpalumbo opened this issue Mar 28, 2023 · 0 comments
Open

dynamically set a nested property? #16

michaelpalumbo opened this issue Mar 28, 2023 · 0 comments

Comments

@michaelpalumbo
Copy link

First off, thanks for making and maintaining this project, it seems great!

Given the following:

const Y = require('yjs')
newDoc = new Y.Doc()

doc = newDoc.getMap('patches') 

doc.set('patch', 
  {"people": 
    {"michael": 
      { "lastname": "smith",
        "height": "tall"
      },
    "sal": 
      { "lastname": "orange",
        "height": "small"
      }
    }
  })

In vanilla js, to dynamically update a property I could do:

let name = 'sal'
let prop = 'height'
people[name][height] = 'short'

How would I do this same operation in Yjs? I know that issue #11is similar, but does not discuss dealing with nested and dynamic properties.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant