Bypass synthetic event system for Web Component events #7901
|
https://github.com/webcomponents/react-integration will create a React component from a web component constructor and give you custom event support. |
|
As long as we only support attributes. I don't see a problem doing this for the heuristic I'd like it better if we could just pass through all props to element properties but it seems like that ship has sailed since most web components aren't designed to handle properties properly. A massive loss to the community IMO. |
It feels like that statement is clumping all web components into a single bag of poor design, which in many cases they are, but it doesn't mean you can't optimise for the ones that are designed well. A couple paradigms I'm trying to push in the community (and with SkateJS) are:
Monica Dinculescu mentioned the former and Rob Dodson the latter in their Polymer Summit talks, so I think that's something they're trying to espouse. It's unfortunate the primitives don't make this more obvious, but I think that comes with the nature of most browser built-ins these days. React not setting props, and not supporting custom events, is the reason we've had to maintain that React integration library I posted above (https://github.com/webcomponents/react-integration). It's worth looking at as a source of some patterns that are definitely working for us in production. It's also worth noting that the patterns employed there are also used in Skate's wrapper around Incremental DOM. We set props for everything we can, falling back to attributes as a last resort. In the integration lib, events have their own special convention, similar to React's. This in particular is something to pay attention to because adding event listeners if |
|
@treshugart Most people seem to find this counter-intuitive but my preference would be to effectively just call @staltz What do you think about that approach? |
|
@sebmarkbage I like that approach but I think there are a few things to consider (and you're probably already aware):
Something like the following might be a little bit more robust: Object.keys(props).forEach(name => {
if (name in element) {
// You might also need to ensure that it's a custom element because of point 1.
element[name] = props[name];
} else {
doWhatReactNormallyDoesWithAttributes();
}
});Brainstorming just in case. Overall, I tend to agree with you that it'd be fine for React to just do
I sure hope so. I'm trying to and I know the Polymer team is trying to, as well. I think if React did do this, that it'd be a massive help, too. |
I'm not sure what exactly you're referring to, but with Polymer we'd definitely prefer setting properties to setting attributes. Which web components don't handle properties and in what way? |
|
@sebmarkbage I think we can definitely encourage folks to write components that support the Object.assign approach you mentioned above. As @treshugart mentioned, I spoke about doing this in my Polymer Summit talk based on our previous twitter discussion. Having easy event support in React would also be great. |
|
Talk is here: https://www.youtube.com/shared?ci=256yfQG-abU I also mentioned the need to dispatch events for state changes so libraries like React can revert those changes (similar to the way React handles the native input checkbook element) |
Yes. I think there would be benefits outside of web components too. I wonder if we'd see libraries rely less on the context API when they could just emit a custom event.
@sebmarkbage Unless you know if any current work here, I'd be happen to stencil something out. |
|
@nhunzaker Well I think that what is being discussed here would be an alternate strategy. We would not support addEventListener('click', fn). We would instead support element.onclick = fn; |
|
Yeah I think I'm ok with the idea of |
|
A problem with properties, attributes, events and children is that you have to know which one to use so you end up with heuristics or explicit namespaces. I don't think explicit namespaces is very ergonomic. Properties are more powerful than attributes because:
So if we only had one, I'd prefer it to be properties. That leaves events. If we use a heuristic, that affects performance negatively since we have to create mappings for it at runtime. It also means that we're claiming a whole namespace. It means that custom elements can't provide an I think that would be unfortunate to claim a whole namespace prefix or type when the precedence of Of course, that will still leave us "children" as special but that's kind of a unique property of React that children of components can be any type of value so we'll have to concede that one constrained special case. |
|
I took a stab at implementing the model discussed above. @sebmarkbage can you let me know if this matches your thinking? class XCheckbox extends HTMLElement {
connectedCallback() {
this.addEventListener('click', this._onclick);
}
disconnectedCallback() {
this.removeEventListener('click', this._onclick);
}
_onclick(e) {
this.checked = !this.checked;
this.dispatchEvent(new CustomEvent('checkchanged', {
detail: { checked: this.checked }, bubbles: false
}));
}
set oncheckchanged(fn) {
this.removeEventListener('checkchanged', this._oncheckchanged);
this._oncheckchanged = fn;
this.addEventListener('checkchanged', this._oncheckchanged);
}
get oncheckchanged() {
return this._oncheckchanged;
}
set checked(value) {
this._checked = value;
value ? this.setAttribute('checked', '') : this.removeAttribute('checked');
}
get checked() {
return this._checked;
}
}
customElements.define('x-checkbox', XCheckbox);
const props = {
checked: true,
oncheckchanged: function(e) {
console.log('oncheckchanged called with', e);
}
};
const customCheckbox = document.createElement('x-checkbox');
Object.assign(customCheckbox, props);
document.body.appendChild(customCheckbox);One concern is that element authors have to opt-in to defining a setter to expose a handler for every event that they dispatch. That may end up bloating the elements, especially if they have a variety of events that they expose. Having React do |
|
@sebmarkbage I get why properties are preferable to attributes, that's why Polymer defaults to setting properties. Since most Web Components these days are Polymer elements, and Polymer automatically supports properties, I think most Web Components handle properties correctly. Most of the other WC libraries I've seen handle properties correctly as well. If you know of a large set of components that don't support properties, let me know and I'd be glad to we see if I can help fix that massive loss. @robdodson I don't think it's really feasible to have element authors write their own event handler properties. Events work fine with just Polymer and Angular (and I believe SkateJS as well) have syntax conventions for declaring a binding to a property, attribute or adding an event handler with HTML attribute names. I don't know JSX, but it seems like since it's not HTML and not JavaScript, there's a lot of leeway to invent its own syntax to unambiguously differentiate between properties attributes and events. |
|
React intentionally went back on that and claims that single event handlers is a better model and the use cases for multiple event listeners is better solved elsewhere since it leads to confusion about where events flow and which order they flow. Additionally, the string based event system is difficult to type. Both statically for type systems like TypeScript and Flow, and for optimizing adding lots of event subscriptions at runtime (instead of string based hash maps). So I don't think it's fair to say that event handler properties are strictly worse. More over, there are other types of first-class event handlers like Observables that would be nice to support using properties. The most important feature for interop is reflection. Without reflection you can't make automatic wrappers such as providing a first-class Observables as properties for each available event. This is something that the event listener system doesn't provide. There is no |
|
@sebmarkbage those are good points. If you have a moment can you take a look at the sample code I posted and let me know if it seems inline with what you're thinking? |
|
@robdodson Yes, that looks very good to me. |
|
If the only problem is boilerplate, I think that is solvable. Initially in user space in terms of libraries that make it easy to create best-practice custom elements. Later a standard helper can be batteries included. |
Yeah that sounds good to me |
|
Looks awesome! I'll reiterate that https://github.com/webcomponents/react-integration currently solves this stuff in userland. That might be a good spot to start collaborating on some of the boilerplate. |
|
From experience of using vanilla Web Components in a React-like architecture, a few humble suggestions:
|
|
I hate to chime in on a thread like this but feel I owe it to justin as a deminimus for all his hard work and patience just with me. As someone building a shard templating engine,designed to approximate functional groups, the unbelievable --excuse my French -- Via shard templating, or granular web components hundreds of inputs, radically different configs and on the fly changes can be handled with fewer than five fingers worth of event handlers--focus edge cases when attempting to dual focus being the one exception Attribute based handlers make events specific to the element not the view Image one of my simplest projects a iuniversal dropdown that takes its items from whatever input or menu calls it. How do you handle those events via an attribute binding. I can do it with just the window click / touched listener and some creative refactoring Focus manipulation from text inputs excepted. Then I do use a "chase" handler that passes the listener to each active text field for the damned tab on Apple |
|
At a minimum you are gonna burn your wheel and kill your cpu in a complex app |
|
@robdodson Yeah that's aligned with what I think as well.
I'd also choose the same. What's the action points with this issue? I'm willing to do something but unsure what, and confused whether @robdodson or @sebmarkbage have intentions to act on this. |
|
To clarify my conclusion: If @robdodson shows that the proposed "best-practice" above is a feasible direction for the Web Components ecosystem including event listeners as properties. Then React will switch to simply transferring props to the element properties, The next actionable item there would be that someone (maybe Polymer?) provides a way to make it easy to build such Web Components and see if it is viable in the more raw-form Web Components community (as opposed to big libraries). |
|
@staltz I've been discussing it with some of the platform engineers on Chrome. They raised some issues around how the native on* properties work with builtins and I think it'd be worthwhile to discuss those. I'm working on a follow up that details the points they covered. |
This raises the concern: does it make sense to promote a pattern for CEs that uses the existing on* semantics but doesn't have the same attribute / property parallelism? I realize for most frameworks/libraries this is not a problem, because they’ll just use properties. But as a general pattern for CEs it’s troubling because it breaks with how all of the other HTML elements work, and could be surprising to anyone assuming that There are a couple solutions the team proposed:
I personally lean toward option 2, but am curious what other folks on this thread think? Because both of the above options will take some time, that leaves the question of what approach should we move forward with in the near term. I think there are a couple options:
return (
<paper-slider
min={props.min}
max={props.max}
value={props.value}
domEvents={
click: props.onClick
'value-changed': props.onValueChanged
}>
</paper-slider>
Here I lean toward option 1, not that the react-integration lib isn’t awesome, it is(!), but because option 1 lowers the barrier for people to use CEs + React together. In either case, we would continue to encourage folks to treat properties as their source of truth, and we may want to encourage them to only bubble events if they have a good reason to do so. I know that was one of the critiques of the current event system and might be a place where we can agree on a best practice. Both of these options avoid baking in the on* pattern while we hash out what would be a better long term alternative. I’ll add that I’m very motivated to work on this. I think a primary goal of the extensible web movement and Web Components in general is to take feedback from library and framework authors and use that to improve the platform. |
|
+1 for |
|
Yes, I agree with everything Rob said. Could still bikeshed on the name for |
|
+1 for just I am curious, though, as to how React will decide how it should set props on an element, as opposed to attributes. This could be troublesome for custom elements needing some things set as attributes, such as |
|
I'm very supportive of this effort, a property makes sense to accomodate the react's model, but before we go that route, there are other things we should define:
My main concern is the shape of the event object, and the potential confusions around it. Today, and based on the example from @robdodson, those events will be custom events with a I think we will have to bikeshed more around the name of the property. Is it really a collection of events? can we break with the past and not call those event handlers? |
Let me put in a -1 for
|
This is exactly why we're discussing using a specific syntax (i.e. a One thing React could do, would be to just
The more I think about it, the more I like this proposal for our own purposes instead of using a specific syntax. |
I don't like this either. Using If we want to completely avoid any possibility of property name collision, all we have to do is use a symbol for the property React uses internally. <paper-slider [ReactDOM.events]={{'value-changed': this.props.onValueChanged}} />Personally speaking though, if React devs can accept an official interface for 3rd parties to inject custom event implementations (kind of like the current unofficial interface, but better) and 3rd party event modules, using Symbols rather than string property names so there is no collision. I wouldn't mind an alternative where anyone can write a module that will register custom events with React for whatever pattern is used by various Web Component implementations. import { Event as on } from 'react-polymer';
// ...
<paper-slider [on('value-changed')]={this.props.onValueChanged} /> |
|
@treshugart I think putting the burden of writing event handler properties on the custom elements author is the wrong approach. 1) it's extra code that won't always be implemented. 2) it's basically impossible to emulate what the platform does and 3) only using properties doesn't support bubbling or capturing event handlers (Unless you add the property to It's very easy for a binding library to offer a syntax that differentiates between attributes, properties and events. |
|
@dantman that's a good point. I like the symbol suggestion. @justinfagnani I agree it's extra code and that's what I dislike about it. As for 2, that's a given; I don't think any method could emulate that. For 3, setting I actually wouldn't mind having a convention in web components I build to expose properties corresponding to custom events supported by the component as it enables a declarative API without leaving it up to each templating engine to have custom semantics around how it binds events. All the templating engine needs to do is what something like Incremental DOM does by default: if it's a function, set a prop. If it's anything else, set an attribute. I wish it was prop all the time, though. EDIT To be clear, I'd prefer using a symbol approach over my proposal. |
Good question. It may be the case that some attributes still require a special case. Either using special syntax in React to set the attribute, or React could set it using some kind of heuristic ("any property beginning with aria* gets set as an attribute instead). For what it's worth, there's an effort underway to allow you to set accessibility properties in JavaScript. So in the future, that one piece could be a non-issue
As I understand it, CustomEvent inherits from Event and therefore has the same properties. By calling
I think the idea is that
If there was a standards based way of doing this I'd be cool with it to. For instance, the
Somehow |
|
@sebmarkbage I see that react@16.0.0-alpha was released today - does that have the new support you talked about for custom elements, where everything is properties instead of attributes? Also, one thing I have noticed with React@15 that could also possibly be improved is support for the /* Rendering <Foo /> will result in the actual DOM having a `classname` attribute. For example, the real dom will look like this:
* <button is="x-button" id="2" classname="custom_styles" />
*/
class Foo extends React.Component {
render() {
return <button is="x-button" id="2" className="custom_styles" />
}
}Once React starts sending those as properties instead of attributes, then it seems like the |
|
Answering my own question above: React@16.0.0-alpha does not have support for this yet. I have created #8755 to add it to react@16, though |
|
FYI, |
|
@gaearon I see. Is there somewhere I can read about 16? Has it been decided when it might be released? Is there a roadmap or tentative list of what might be in it? |
|
The related issues milestone is filled with cases, but I'm not personally sure if this is fully representative of the final plans for 16. |
|
There's no definitive list because we're working on a complete rewrite of the reconciler ("Fiber"—see the talk, some info, progress, some more info, more detailed progress), and it is not yet clear if we will ship it in 16 or wait until 17. The work on Fiber is currently prioritized before other issues. You can read our weekly meeting notes to keep track of our progress and planning. I expect that we will talk about beginning to plan for 16 and establishing its scope soon, but we have not yet done that. |
|
@joeldenning I took a quick look at #8755 and it seemed like it didn't provide any way to set attributes on custom elements. There really needs to be a way to set both, as some thing like aria attribute can't simply be set via properties, and plenty of styling scenarios might require attributes that the element doesn't support as reflected properties. Also, some attribute/property pairs are very different to set. Attribute |
|
This is related to #7249 : I really think the best way here is explicit control over whether a prop is set as an attribute or property or as an event handler via In #7249 there's a suggestion to set a property if an element has a property of that name, and an attribute otherwise. This is problematic for custom element upgrades. An element may be not-upgraded, have an attribute set that should have been a property, and then be upgraded and not be able to read the correct value from the attribute. |
|
@justinfagnani those are good points. I have a question about the upgrading scenario that you brought up, though: In general, don't elements (both native and custom) look at attributes when they are constructed/connected? And then they look at properties after that? In other words, isn't the general convention for both native and custom elements that properties are the source of truth, and that attributes are just for initial configuration? If a custom element follows that convention (of looking at attributes in I've been thinking that the goal is to make it easy for React to interoperate with custom elements that follow a convention like the one I described above. It will of course be possible to interoperate with custom elements that break the convention (via refs), but it will be easy to interoperate with the ones that do. Do you agree with that? Or do you lean more towards not establishing such a convention? |
|
Elements can certainly look at attributes when they boot up, but only for values that are string serializable. |
|
Ah that's a good point. So if an element isn't upgraded yet, you may still need to set properties on it because setting it as an attribute won't work if it's not a string. So if (propName in obj) {
obj[propName] = value;
} else {
obj.setAttribute(propName, value);
}is probably not the right thing to do. Should React consider doing a |
|
@joeldenning Giving the user full control over if a property, attribute or event is applied to the element means that there's less checks and heuristics that React needs to maintain. It also means the API consumer gets expected behaviour and complete DOM integration. I say DOM because this is really a DOM integration problem, not just custom elements. Integration with the DOM means custom elements inherently work. |
|
update: after a couple of months of research, and some prototyping, it seems to us that React will have to do nothing new to support web-components interoperability in both ways:
@sebmarkbage we can chat next week at TC39, and eventually share the examples, and the docs if it is sufficient in your opinion. Slotting remains an open question though! |
Well, that's not anything new. As most frameworks, nothing needs to be done to support web components. This issue started out as an improvement suggestion on how to avoid |
|
As a reminder, could we reconsider
Would be better to have more solid arguments for or against that. |
|
I agree with @staltz -- we've always been able to interoperate with custom elements inside of React. But it would be really nice if (at least for the majority of custom elements) you could do it without using refs + addEventListener + manual setting of dom element properties, inside of componentWillReceiveProps/componentDidMount |
|
Wanted to give an update to a proof of concept that helps to solve this problem. I linked to it in #7249 (comment), but here's the gist for convenience. |
To use a Web Component in React, you must directly attach an event listener to the React ref for that WC. We could change the implementation so that when React detects a custom element (tag names with dashes, like
my-component), it will bypass the synthetic event system (and the whitelist) and just attach the event listener on the element itself.Why bypass the synthetic event system? Because anyway we already need to bypass it manually when using a Web Component. I'm not so familiar with the React codebase, but this naive approach seems to work. Whoever uses Web Components in React can be responsible for whatever downsides that would cause, maybe in performance, I don't know. They are already having those (supposed) downsides, this issue is just about the convenience of WC usage inside React.
I was about to send a PR for this, but thought of opening an issue. I looked through the issues and didn't see any existing one related to the handling of WC events.
What is the current behavior?
A WC custom event (e.g.
flipend) must be handled by attaching the event listener directly to the element in componentDidMount using a ref.http://jsbin.com/yutocopasu/1/edit?js,output
React v15.1.0
What is the expected behavior?
A WC custom event can be handled with
onMyEvent={ev => this.handleMyEvent(ev)}on the ReactElement corresponding to the WC.PS: this snippet above still has the
ref, but for unrelated reasons. Ideally we wouldn't need refs for handling events of WCs.