Git Product home page Git Product logo

Comments (3)

McPo avatar McPo commented on May 24, 2024

On further investigation, I had no issue with deepMap (I was initially trying to do deepMap on already precompiled react code, so perhaps this influenced the results).

However it appears that deepFind does go deep, but it misses out several node.

from react-children-utilities.

fernandopasik avatar fernandopasik commented on May 24, 2024

Thanks @McPo for taking the time to add this issue. Do you have an example where deepFind is missing nodes?

from react-children-utilities.

fernandopasik avatar fernandopasik commented on May 24, 2024

@McPo I've revised deepFind and I couldn't find an example which avoids nodes.
Just for you to know it doesn't traverse by tree level, it goes as deep possible on each node so let's say we have

const DeepFound = props => (<div>{ Children.deepFind(props.children, child => child.type === 'i') }</div>);

and we want to test it on this:

<DeepFound>
  <b>1</b>
  <b><span><i>2</i></span></b>
  <span><i>3</i></span>
  <i>4</i>
</DeepFound>);

In this case the nodes visited would be b -> b -> span -> i and it would end there on the i with text 2, the rest of the nodes would have never been visited.

from react-children-utilities.

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.