Giter VIP home page Giter VIP logo

Comments (4)

NicolaeBasso avatar NicolaeBasso commented on May 19, 2024 2

Well, I've just added blueprint tooltip wrapper to tree items and it worked for me...
Not the best option for a 'light weight lib' to add blueprint to dependencies though;

from react-folder-tree.

shunjizhan avatar shunjizhan commented on May 19, 2024 1

Hi Nick,

Seems that we currently don't have a way to attach mouse event handler 😢

I guess it won't be too hard to add a onNodeHover callback in next version, which has similar arguments with the existing onNameClick handler.

However, I am not sure so far what's the best way to support "DOM related" callback, I mean for "data related callback", it is super easy, like what we have:

const onNameClick = ({  nodeData }) => { ... };

if we need to show a tooltip, maybe we can have something like this? Although it doesn't look very 'React'

const onNodeHover = ({  nodeData, refToNodeDOM }) => { showTooltip(refToNodeDOM); };

Let me know if you have any idea about it, and thanks for this feature suggestion!

By the way if we just need to support a very specific hover handler (like a tooltip), but not a general on hover interface, it should be achievable, feel free to fork the code and implement a react-folder-tree-with-tooltip, and I am happy to answer any question about the codes : )

from react-folder-tree.

shunjizhan avatar shunjizhan commented on May 19, 2024 1

and for 'Per tree item', events could be distinguished by it's node data, for example

const onNodeHover = ({ nodeData, refToNodeDOM }) => { 
  if (nodeData.tooltipInfo) {
    showTooltip(refToNodeDOM, nodeData.tooltipInfo);
  }
 };

let me know if you have any better ideas.

from react-folder-tree.

shunjizhan avatar shunjizhan commented on May 19, 2024

glad to hear it worked out for you!

from react-folder-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.