mastodon.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The original server operated by the Mastodon gGmbH non-profit

Administered by:

Server stats:

341K
active users

Hello #webcomponents people. Lets say you need to do a <custom-parent><custom-child> typ of thing, how do you actually do that? I am asking because I noticed that the connectedCallback is firing twice, once you move things around in there and I don't know how to fix it.

I am not using shadow dom.

#webdev#html#css

@nachtfunke do you have a minimal repro to better understand what you’re running into?

@nachtfunke In general, if you have work that belongs in `connectedCallback()` then you either need to clean it up in `disconnectedCallback()` (which means it can happen again with no issues), move to the future and use `moveBefore()` caniuse.com/mdn-api_element_mo (no disconnection), leverage `<slot>`s and shadow DOM (no disconnection), or _know_ that you are going to be wrapping the element in the same tree and gate the `connectedCallback()` work on that knowledge (managed disconnection).

caniuse.comElement API: moveBefore | Can I use... Support tables for HTML5, CSS3, etc"Can I use" provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers.

@westbrook @nachtfunke holy shit please make this a blog post — so much great info packed into a tiny toot

westbrook

@zachleat @nachtfunke I'm not saying this is because I didn't get you anything for your birthday, but I'm also not saying it isn't because of that...

blog.westbrookjohnson.com/patt

blog.westbrookjohnson.comI'm feeling so disconnected

@westbrook Thanks for posting this!

Is this layout intentional?

@westbrook @zachleat thank you so much - I think I know what my wrongdoing was. I did all my DOM creation in an init() function that called in the connectedCalkback() because I interpreted it as somewhat equivalent to $(document).ready() - as in, waiting to make sure everything is there. I understand that this is not necessary for creating DOM that won’t ever be transformed once it was created.

@nachtfunke @zachleat Nice! Glad to hear you've found a path forward on this. 🙌

One time operations, like non-stateful DOM writing, do go well in `constructor()` (if you're likely to need that DOM whether the element is on the document already or not), or behind a `this.hasWritten` style gate in the `connectedCallback()` (if you want to be lazy and wait to write DOM until the last possible moment).

I hope you'll be able to share, maybe even blog about, what you're up to when it's ready! 🤞