Code Monkey home page Code Monkey logo

Comments (6)

shunjizhan avatar shunjizhan commented on May 16, 2024

Hi, just upgraded to v4.1.0, which (almost) supports what you need!

Please check out the latest examples (in section Use Custom Icons)

Basically now we can do something like

const FileIcon = ({ onClick: defaultOnClick, className, path, name }) => {
  const handleClick = () => {
    openFile(name);
    // or use 'path', which is the path to the clicked node in the root state
  };

  return <YourIcon onClick={ handleClick } />;
};

So when user clicks on the icon we can open the file.

If you mean onClick() on the node name itself, unfortunately we don't seem to support this, but I will probably try to add this functionality in later versions : )

from react-folder-tree.

sunjeen avatar sunjeen commented on May 16, 2024

yup, i also would like to have this feature, when user click on the filename , not only the icon, it should able to trigger a event

from react-folder-tree.

shunjizhan avatar shunjizhan commented on May 16, 2024

@sunjeen yup this would be a nice one! And indeed this is on the plan

from react-folder-tree.

sunjeen avatar sunjeen commented on May 16, 2024

@sunjeen yup this would be a nice one! And indeed this is on the plan

Look forward to it, currently I have one projects is utilizing file tree components, thanks for adding it!

from react-folder-tree.

shunjizhan avatar shunjizhan commented on May 16, 2024

@sunjeen Hi, just released a new version that supports custom onClick() for node name!

this is the doc for how to do it, basically if we want to open a file, we can add filePath to each node data, then do

const onNameClick = (defaultOnClick, nodeData) => {
  const { filePath } = nodeData;
  openFile(filePath);
};

alternatively, if we don't want to include extra data, we can choose to derive the filePath using the file name

const onNameClick = (defaultOnClick, nodeData) => {
  const { name } = nodeData;
  const filePath = getFilePath(name);
  openFile(filePath);
};

Please check it out and let me know if there is anything breaking 😃

from react-folder-tree.

sunjeen avatar sunjeen commented on May 16, 2024

@sunjeen Hi, just released a new version that supports custom onClick() for node name!

this is the doc for how to do it, basically if we want to open a file, we can add filePath to each node data, then do

const onNameClick = (defaultOnClick, nodeData) => {
  const { filePath } = nodeData;
  openFile(filePath);
};

alternatively, if we don't want to include extra data, we can choose to derive the filePath using the file name

const onNameClick = (defaultOnClick, nodeData) => {
  const { name } = nodeData;
  const filePath = getFilePath(name);
  openFile(filePath);
};

Please check it out and let me know if there is anything breaking 😃

Thanks! I will try now!

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.