-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Add a nonintuitive disconnectedCallback example #4237
Conversation
Supersedes and closes #4127. Closes WICG/webcomponents#760.
e92f3c8
to
7158112
Compare
source
Outdated
} | ||
customElements.define("c-child", CChild); | ||
|
||
const container = document.createElement("div"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A perhaps a more straight forward way to construct this tree would be:
const parent = new CParent;
const child = new CChild;
CParent.append(child)
source
Outdated
<div class="example"> | ||
<p>An element's <code data-x="">connectedCallback</code> can be queued before the element is | ||
disconnected, but as the callback queue is still processed, it results in a <code | ||
data-x="">connectedCallback</code> for an element that is no longer connected:</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we want to add some note saying that mutating DOM tree inside custom elements reactions is bad for this reason.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1. We could even consider adding it to https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element-conformance and renaming that section to be about more than just constructors.
Addressed all I think. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with nit. (And, gotta fix the failing build, of course.)
const parent = new CParent(), | ||
child = new CChild(); | ||
parent.append(child); | ||
document.body.appendChild(parent); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Slightly weird to use .append()
then .appendChild()
together.
Supersedes and closes #4127. Closes WICG/webcomponents#760.
/acknowledgements.html ( diff )
/custom-elements.html ( diff )
/index.html ( diff )