Boscop
Boscop
I want to implement a higher-order Yew Component that triggers a given `Msg` when the user has scrolled to the bottom (or top) of a container, for loading more data...
Is there interest in supporting the [Web Midi API](https://webaudio.github.io/web-midi-api/)? :) https://www.smashingmagazine.com/2018/03/web-midi-api/ Or the [Web Audio API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API)?
Geolocation?
How can one use HTML Geolocation?
I'm getting: > basic.js:536 Panic error message: Argument 1 is not convertible to '' When `success_action` gets called: ```rust pub struct GeolocationService(Value); impl GeolocationService { pub fn new() -> Self...
How to get mouse position from a [`MouseDownEvent`](https://docs.rs/stdweb/*/stdweb/web/event/struct.MouseDownEvent.html) and similar mouse events (mousemove, etc)?
The readme says that it supports parsing into Vec by separating the values by commas. If I want to parse a variable as `Vec` where each path could contain commas,...
How can I parse a XML doc and ignore attributes/members that the xml has, that I don't need in Rust? E.g.: ```xml ``` I only care about the `` so...
```rust #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct Message, pub content: T, } #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ArtsCommonHeader
In postgres, it's possible to update multiple rows in 1 query, [like this](https://stackoverflow.com/questions/18797608/update-multiple-rows-in-same-query-using-postgresql/26715934#26715934) (to avoid hitting the db for every row that should be updated): ```rust let query = format!(...
(I'm using Yew 0.13. https://github.com/yewstack/yew/pull/975, https://github.com/yewstack/yew/issues/928) When the prop `allow_zoom` is missing from these props: ```rust #[derive(Clone, Properties)] pub struct Props { pub weak_link: WeakComponentLink, pub clicked_pos: Callback, pub allow_zoom:...