Giter Site home page Giter Site logo

Comments (7)

kunalnhes avatar kunalnhes commented on June 1, 2024

Using React Material TreeItem for Node, getting an error when selecting the node:

TreeItem.js:367 Uncaught TypeError: focus is not a function
    at handleFocus (TreeItem.js:367)

Sample Code:

<Tree treeWalker={treeWalker} itemSize={30} height={600}>
    {Node}
</Tree>

Node Component:

const Node = ({data,data: {isLeaf,nestingLevel,name}, isOpen, style, toggle}) => (
  <div style={{
    ...style,
    alignItems: 'center',
    display: 'flex',
    marginLeft: nestingLevel * 40 + (isLeaf ? 48 : 0),
  }} >
    {
      !isLeaf && (
        <div onClick={toggle}>
          {!isOpen ? <Expandcon/>:<CollapseIcon/>}
        </div>
      )
    }
    <div>
       <TreeItem nodeId={data.id} label={name}>

      </TreeItem>
    </div>
  </div>

TreeItem is the custom Material UI. Stuck with it think somthing to do with forwarding the ref,but couldnt find a way around. Can you help.

from react-vtree.

Lodin avatar Lodin commented on June 1, 2024

@kunalnhes, unfortunately, MaterialUI tree cannot work with the react-vtree because it requires nested TreeItems to display the tree structure (more details in #10).

Regarding your question: since react-vtree does not provide any other handlers except for ones you can receive in the Node component, the error is hiding somewhere else. I guess it is connected with the nesting MaterialUI requires for tree structures.

from react-vtree.

Lodin avatar Lodin commented on June 1, 2024

@ramHruday, you can track the current scroll via the scrollTop for the ref of the Tree component. When the scroll alsmost reaches the bottom of the Tree component, the new data for the infinite scroll can be loaded. After that the treeWalker is re-created with the new data, and because of it the Tree component will be re-rendered to consume the new data. Well, something like that.

from react-vtree.

ramHruday avatar ramHruday commented on June 1, 2024

Thanks , @Lodin , My use case is more of scrolling in child-level also.
Shifted to a custom approach for implementing this.
Let me know if this is possible in treewalker

from react-vtree.

Lodin avatar Lodin commented on June 1, 2024

@ramHruday, not sure I understand your case. Could you explain it with more details?

from react-vtree.

Lodin avatar Lodin commented on June 1, 2024

Well, since there is no recent activity, I'm going to close this issue. Fell free to reopen!

from react-vtree.

adsee42 avatar adsee42 commented on June 1, 2024

@Lodin
Sorry for commenting on a closed issue, but I do really need to implement this. Infinite scroll + async
An example would be very useful!.

My use case: a contact list (hierarchy structure: company -> department -> contact)

  1. for init, fetching from server 30 company and render
    1.1. the infinite scroll and async part is for company only
    1.2. when user scrolls down, more company would be downloaded and rendered
  2. for department and contact, when user clicks one company, its departments get downloaded and rendered; and department clicked, user downloaded and rendered.

I saw this story book example. It shows solution for 2..
And also an example for multiple roots; this is partly an answer to 1.
How can I combine this two, and add Infinite scroll + async to multiple roots?

from react-vtree.

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.