-
Notifications
You must be signed in to change notification settings - Fork 50.6k
Description
Summary
Per discussion in issue #11347 and in PR #22184, the current implementation of custom element support in React 19 does the following:
- checks if the react prop name begins with
on - checks if the react prop value is of type
function
If both conditions hold, it will addEventListener for an event based off of the remaining name, also using naming conventions to check if the suffix is Capture to determine whether or not to use capture phase for the event.
Example:
<my-custom-element
// This will listen for events of type `"customevent"`
oncustomevent={(evt) => console.log(evt.type)}
// This will listen for events of type `"customevent"` and will `useCapture`(See: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#usecapture)
oncustomeventCapture={(evt) => console.log(event.eventPhase, event.type)}
/>In the aforementioned discussions, there was some debate on how to approach events, namely:
I originally proposed that we do the same thing as preact here (forward everything starting with "on" to addEventListener), but if I remember correctly Sebastian felt strongly that we shouldn't reserve everything starting with "on" for event listeners. Jason Miller also felt strongly about this the other way, so maybe it's something that I can revisit/discuss more after merging this PR - maybe more users will chime in if they get to test it out.
Referencing this, @jfbrennan called out, among other things, the relevant bits of the HTML Standard
(See: #11347 (comment))
I believe there is a simple path forward to strike a balance here while still having support that is "idiomatically React"
Proposal
Prefer the "in heuristic" even for properties that meet the two conditions mentioned above over adding an event listener.
Motivation
- For cases that conform to the HTML standard for custom element properties/IDL attributes, a property intended to handle events should behave the same as the current implementation: namely, if I (or react-dom) set
myCustomElement.oncustomevent = (evt) => console.log(evt.type);, this should add an event listener "under the hood" - For cases where custom element authors have built properties that happen to begin with
"on"and happen to accept functions as values, these will still work as expected, e.g. if there is a property onmy-custom-elementnamed"onto"it will get set as expected, even if the value is a function, so, e.g.
<my-custom-element
// This will be set as the value of property `"onto"`, even though it begins with `"on"` and its value is of type `function`
onto={(value) => console.log(value)}
/>Current workarounds
- Use hooks (e.g.
useRef()+useEffect(), etc.) to set these properties - Expect web component authors to have a 2nd property whose name does not begin with
"on"that mirrors the functionality of the property whose name does begin with"on".
Relevant code
cc @jakearchibald @rickhanlonii for visibility