Greg Johnston

Results 477 comments of Greg Johnston

> I stumbled upon some limitations as well, the main being using generated server api from non-Rust code > fail just a little short to meet my requirement for clearly...

A few observations: 1. Agreed that using the expanded form rather than the method-chaining form for all methods used in the macro would be the "hygienic" way to do this....

I opened the issues to leave a note to self about this, and here it was already :-D Thanks to @OvermindDL1 for pointing out that the [`axum_extra::Host`](https://docs.rs/axum-extra/latest/axum_extra/extract/struct.Host.html) extractor should be...

Thanks for this work! While I have not had time to manually test it, and have not reviewed every line, this looks like it is the right approach, and it...

Thanks so much for your work! I am going to start merging things into a `leptos_0.8` branch, so this can be found there for now.

I assume the debug vs release discrepancy is because you are using `cargo-leptos` (I assume) which turns on "component erasure" by default in debug mode (i.e., adds `.into_any()` onto every...

I've investigated a bit more. This is basically a result of the hack we had to build with `AddAnyViewWithAttrs` to prevent the Rust compiler from dying in some kind of...

Good idea. I've added it in https://github.com/leptos-rs/leptos/pull/4519

Two notes: 1) There's a typo for `submit` in the repro step 2 (where it's spelled `sumbit` instead of `submit`), which is why the event handler is completely ignored. If...

Just to clarify, to make sure we are on the same page: "bubble" and "capture" are DOM/browser terms, and the default when adding an event listener is for it to...