Devon Govett

Results 468 comments of Devon Govett

Would be curious to see how much runtime perf changes. Wonder how this changes with modern bundlers that perform scope hoisting. Wouldn't versioning be solved using a pinned version from...

Well, ideally it probably wouldn't be a custom reconciler but something else (like you mentioned for implementing custom "host" components), but custom reconcilers exist today so I was trying to...

Mainly just that the items don't all need to be in the DOM for it to work. So virtualized scrolling can work, and still support keyboard navigation to items out...

I'm not sure if it's possible to get the correct order for registered items without the DOM. You can register items with a context, but if React renders the items...

@nihgwu my reply was directed at @sebmarkbage, sorry for the confusion. 😄 But yes, I suppose you could force re-render every item whenever a new one is added/removed. Just seems...

Found an interesting alternative to a custom reconciler: a fake DOM. By implementing the very basics of the Element and Document APIs (e.g. createElement, appendChild, removeChild, setAttribute, etc.), and rendering...

Hmm, looks like maybe an extra variation selector at the end of that string? e.g. `'\ud83d\udc68\ud83c\udffb\u200d\u2695'` works but `'\ud83d\udc68\ud83c\udffb\u200d\u2695\ufe0f'` doesn't.

Wow, crazy. https://github.com/pugjs/pug/issues/2184 for context.

Maybe publish both language-jade and language-pug based on this package somehow so that they both work? @LinusU what do you think?