Git Product home page Git Product logo

Comments (4)

fritz-c avatar fritz-c commented on July 18, 2024

Just to get a better idea of your issue, what is it that you want to do with that node once you can access it like treeData[0].children[1].children[3]?

from react-sortable-tree.

harris800 avatar harris800 commented on July 18, 2024

@fritz-c I want to get the index of the node on it's new position on that level (like 3 in treeData[0].children[1].children[3] )to send back to database, so the database know where the node moved to.

from react-sortable-tree.

fritz-c avatar fritz-c commented on July 18, 2024

Since you're using a DB, do you have unique ids tied to your nodes that you could use instead? If so, you could use a getNodeKey prop like so:

// Supposing your nodes look something like:
// node = {
//     myUniqueId: 5,
//     parentId: 3,
//     title: 'My Title'
// };

// Render with getNodeKey and onMoveNode like so:
<SortableTree
    // ...
    getNodeKey={({ node }) => node.myUniqueId}
    onMoveNode={({ node, path }) => {
        const newParentId = path.slice(-2, -1);
        updateParentOnDb(node.myUniqueId, newParentId)
    }}
>

By default, getNodeKey uses the treeIndex to generate the numbers in the path, but you can customize it to get the path that works best for you. The one requirement is that it returns a unique node key for each node, so using the children array index isn't possible.

from react-sortable-tree.

harris800 avatar harris800 commented on July 18, 2024

I see, I got your point. Will use the getNodeKey to customize my path.
Thank you!

from react-sortable-tree.

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.