Kaede Hoshikawa

Results 118 comments of Kaede Hoshikawa

Instead of implementing `Serialize` and `Deserialize` for all `JsValue`-like types, which requires to be implemented on the type itself (on `wasm_bindgen`, `js_sys` and `web_sys` side), maybe a type `JsTyped where...

> Problem is, you can't implement Serialize/Deserialize using those methods because they're generic over any serializers/deserializers, not just serde-wasm-bindgen The intuitive answer seems to be no, but actually there is...

+1. This is extremely useful when using peewee-async serverless applications.

You should be able to do this with AnyMap. ```rust let mut workers = anymap::AnyMap::new(); let worker = CalculatorWorker::spawner().spawn("/calculator.js"); workers.insert(worker); workers.get::().expect("failed to get worker"); ```

> I have seen in the markdown example that the handler_id is sent back in the output message. This is internal message for the worker itself. The output type is...

> When the worker finishes his work, he must respond. > That would be very convenient if I could respond HandlerId as an Output, so I would know which bridge...

I think there are 3 areas that this new testing API needs to improve if we want to endorse it for component testing of user authored crates: #### Tests are...

This is somewhat expected until we find a good way to solve #1853 . The matcher of MainRoute only knows that `MainRoute::Settings` has been matched and does not know that...

Currently, `inner_html` is set with `Html::VRef`. We cannot support this in SSR as we cannot instantiate `web_sys::Node` in non-browser environments. However, this may change if https://github.com/yewstack/yew/issues/182 is implemented. If you...

I feel `/settings` and `/settings/` should be treated as the same path. Like: `https://github.com/settings` and `https://github.com/settings/` are interpreted as the same path. `yew-router` uses `route_recognizer` as the underlying routing implementation...