Skip to content
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

Merged
merged 4 commits into from
Jan 3, 2019

Conversation

annevk
Copy link
Member

@annevk annevk commented Dec 13, 2018

@annevk
Copy link
Member Author

annevk commented Dec 13, 2018

cc @tomalec @rniwa

@annevk annevk added the topic: custom elements Relates to custom elements (as defined in DOM and HTML) label Dec 13, 2018
@annevk annevk changed the title Add an nonintuitive disconnectedCallback example Add a nonintuitive disconnectedCallback example Dec 13, 2018
@annevk annevk force-pushed the annevk/disconnectedCallback branch from e92f3c8 to 7158112 Compare December 13, 2018 08:52
source Outdated
}
customElements.define("c-child", CChild);

const container = document.createElement("div");
Copy link

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>
Copy link

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.

Copy link
Member

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.

@annevk
Copy link
Member Author

annevk commented Dec 14, 2018

Addressed all I think.

Copy link
Member

@domenic domenic left a 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);
Copy link
Member

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.

@annevk annevk merged commit cc6c51d into master Jan 3, 2019
@annevk annevk deleted the annevk/disconnectedCallback branch January 3, 2019 10:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: custom elements Relates to custom elements (as defined in DOM and HTML)
Development

Successfully merging this pull request may close these issues.

Presence of disconnectedCallback can expedite an invocation of connectedCallback
3 participants