WorldSEnder

Results 113 comments of WorldSEnder

The git version of yew should, imo, point to the /next version of yew.rs/docs. What's happening though is that the markdown in [`concepts/function-components/introduction.mdx`](https://github.com/yewstack/yew/blob/master/website/docs/concepts/function-components/introduction.mdx) has a `slug: /concepts/function-components`. I suppose something...

> Can you try adding the new crate as a dependency in Yew? I don't think it can be used for Yew tests because of circular dependency Adding it as...

Note that this works on yew master, i.e. with ``` // Cargo.toml yew = { git = "https://github.com/yewstack/yew", branch = "master", features = ["csr"] } ``` and using the new...

Thanks for bringing it up. I had a closer look, and I think deriving `Clone` is unnecessary! So instead of adding it to the first occurance, it's rather better to...

I think trailing slashes should be differentiated and not just dropped, it matters for relative paths. And the reason this happens is *not* route-recognizer, rather I think yew is stripping...

> If we enforce strongly typed routes, then only absolute paths can be allowed. That's not what I meant, sorry I should clarify, take the example: ```rust #[derive(Clone, Routable, PartialEq)]...

`trunk` has solved the building problem insofar that it offers solid reloading and multiple modules with web workers. It still does not support a bundling mode, e.g. as you'd expect...

How common is it for you to perform some async action and `state.set(result_of_async)` where `let state = use_state(...);`? Similar to how struct components can use [`Scope::send_future`](https://yew-rs-api.web.app/next/yew/html/struct.Scope.html#method.send_future), it might make sense...

Purely from a documentation standpoint, a "Working with async" makes sense, addressing how js promises are converted like you said, but also give an overview of the `platform` API and...

There is a reason for swapping the order, I think this was discussed somewhere on discord, too. Consider that you want to use the same value to compute a dependency...