-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow MutationObserver
to observe (certain) element property changes
#1340
Comments
That seems like a bug that needs to be fixed. No reason to expect a new API is going to make this better. Also, there's no way to "just" make this work for arbitrary properties. That'd require patching every object. Making sure events fire consistently seems like a much better fix. Also: https://esdiscuss.org/topic/an-update-on-object-observe. |
My main point of focus in this sentence is that it’s cumbersome to implement. If there are inconsistencies (which I still need to check) across browsers but also across platforms then those indeed need to be fixed. Cumbersome workarounds include:
In my proposal I suggest at limiting this to only a handful of properties, namely those that reflect the primary state of the component – e.g. a checkbox being
Problem is that these events fire too late. To work properly, the code that I want to execute in response to a change needs to fire before rendering … which led me to
Is there a specific post you want me to read from that thread? If it’s the one about using a |
(Just noticed this issue should have been posted in whatwg/dom instead of whatwg/html. @annevk: can you move this issue?) |
I've moved this to whatwg/dom |
What problem are you trying to solve?
Some elements have an internal state that can change. Think of a checkbox whose
checked
property gets updated as you check/uncheck this.This type of change is not observable by
MutationObserver
because this mutation is not reflected in the DOM tree: it’s only the property that gets updated, not the attribute.I would love to be able to respond to this type of change with a
MutationObserver
because of the timing of theMutationObserver
callback: it’s a microtask. This allows me to respond to a change before any of the rendering steps are executed.In my use-case specifically, I’d use this to automatically trigger View Transitions. Other use-cases could be to do something like form field validation.
What solutions exist today?
Workarounds include listening for specific events on those elements. For
input
for example this is theclick
event (and notchange
because that fires too late), which you can hijack to be able to respond to it. This is cumbersome to implement as not all browsers/platforms respond in the same way, and not all elements/properties can use the same event.Some other hacks/workarounds such as responding to a selector match changing exist (see here) but these rely on going round the event loop once. Because of that, the code to respond to a DOM property mutation fires after a frame already got rendered, which is too late for this use-case.
Other workarounds suggest to override the getter and setter which is not something that I would not recommend + it also doesn’t work with the property being changed not by code (as in: you actually clicking it).
How would you solve it?
A new boolean in the
MutationObserverInit
dictionary to enable/disable monitoring DOM properties.Maybe, for performance reasons, instead of a boolean this could be an array of strings resembling the properties that the author wants to monitor – like
attributeFilter
.Additionally, the list of observable properties could be limited to a predefined list that only reflect the element’s state. For all inputs that would be
value
, for checkboxes/radio buttons that would bechecked
, for select elementsselectedIndex
, etc. This would make the feature less of a performance footgun when used.Anything else?
An alternative approach could be to reflect changes to a state (such as a checkbox getting checked) in the markup, by actually updating the attribute synchronously as well so that an (unmodified)
MutationObserver
can respond to the change.For text inputs specifically this synchronization could be enforced trough the proposed
beforechange
event (see whatwg/html#10639). Ideally, it would have a more generic solution that can cater for many more properties and types of elements.The text was updated successfully, but these errors were encountered: