Coder Social home page Coder Social logo

Comments (2)

gchust avatar gchust commented on July 27, 2024 2

@teamreactwts
This is not a bug, this is because react's PointerDown is different from the browser's native dom event.

Your parent component's event listener was added by the native addEventListner function, but your child component's event is a react's SyntheticEvent which is added by onPointerDown.

It is just like that your parent and child components are in different event cycles.

Changing your parent component to something like the following will fix your issue.

    <div onPointerDown={handlePointerDown2}>
      Parent
      <ChildComponent />
    </div>

from react.

Syed-Bilal-Haider-Engineer avatar Syed-Bilal-Haider-Engineer commented on July 27, 2024 1

@teamreactwts Method explanation, your code, and a correct alternative snippet.

<>
    <div ref={containerRef}>
      Parent
    </div>
    <ChildComponent />
</>

 <>
    <div ref={containerRef}>
      Parent
    <ChildComponent />
    </div>
</>

It is not a bug, the difference in behavior between these two code snippets lies in the structure of the JSX elements and their relationship to the parent <div> element:

  1. In the first snippet, the <**ChildComponent** /> is rendered outside of the parent <div>.
  2. In the second snippet, the <**ChildComponent** /> is rendered inside the parent <div>.

The difference in behavior when clicking lies in event propagation and event delegation:

  1. In the first snippet, if you click on the <**ChildComponent** />, the event bubbles up to the parent <div> before reaching the document.
  2. In the second snippet, the event only reaches the parent <div> when you click inside it or on its children. If you click on the <**ChildComponent** />, the event doesn't bubble up beyond it.

This difference in event propagation can affect event handling and behavior based on where you click within the rendered components:

  1. In the first snippet, clicking anywhere within the rendered area may trigger events associated with the parent <div>.
  2. In the second snippet, clicking outside of the parent <div> won't trigger events associated with it, unless it's specifically targeted.

from react.

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.