Christoph Bartschat

Results 19 comments of Christoph Bartschat

I believe this could be a symptom of the broader issue here: https://github.com/BuilderIO/qwik/issues/1398

Observing that this seems to be fixed (for my case at least) by adding `{eagerness: 'load'}`. Potentially, "invisible" components could have that behavior by default. Or maybe "load" effects should...

Looks like this is still a problem in 0.14.1. https://stackblitz.com/edit/qwik-wrong-resource?file=README.md

Yep, now that `loader$` is released in earnest, there's no more problems here!

Looks like this is still a problem in 0.14.1. https://stackblitz.com/edit/qwik-broken-pseudoselector?file=README.md

@mhevery I tried, they kicked the can down to esbuild or up to Qwik, where do we go from here?

Happy to! I just need a little bit of direction from a terminology standpoint. Is there a word the core team uses to describe the "rerender without rerender"? How would...

I added the following: ``` useClientEffect$((ctx) =>{ const interval = setInterval(() => { console.log(l, l.isPending) }, 1000) ctx.cleanup(() => clearInterval(interval)) }) ``` To the repro case above, and the logging...

If the compilation step is a simple `bind:value` => `value/onInput$` translation, does that only apply to a specific set of elements like `input/select`? If that translation applied to the custom...