elias098

Results 7 issues of elias098

I am not completely sure if this is correct or not. Before https://github.com/pmotschmann/Evolve/commit/4ea8757c13226246694bdfe7d369594c5f8a417c calling cleanAddTrait and cleanRemoveTrait on slow/hyper reloaded the page, but that got changed to restarting the web...

The blocking methods on channels got restricted to non wasm and while its a bad idea to use it on the main thread, it can be quite useful when you...

**Problem** not completely sure if its intended or not something to care about. Currently when you do ```js dioxus.recv() .then((a) => { console.log("fulfilled"); }) .catch((a) => { console.error("rejected"); }); dioxus.recv()...

bug

**Problem** Currently when you do `eval("await dioxus.recv();")` on desktop and dont send a message it blocks all js from running, including devtool console and events. **Steps To Reproduce** Heres the...

bug

**Problem** Currently `use_effect` uses `wait_for_next_render().await;` which means that it only runs on renders. This is a problem if a signal gets updates without triggering a render. One such instance is...

**Problem** Currently new subscribers created when updating subscribers get overwritten, thus are ignored. the code looks like this ```rust // We cannot hold the subscribers lock while calling mark_dirty, because...

signals

**Problem** https://discord.com/channels/899851952891002890/943190605067079712/1229957121496580197 With the below code it recreates the `ListTest` component when `ListTest2` goes back to its initial state. As in if it started with `a % 3 == 0`...

core