Evan Almloff
Evan Almloff
This PR improves context based suspense by bubbling suspense to the nearest suspense boundary. This allows you to handle suspense at a single boundary which makes it easier to show...
This PR introduces effects as a new task time in the virtual dom. Effects have the longest priority when running the virtual dom Closes https://github.com/DioxusLabs/dioxus/issues/2347, https://github.com/DioxusLabs/dioxus/issues/2307
## Specific Demand Manganis should support generating SHAs for assets to support [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) and prevent XSS attacks ## Implement Suggestion - Initially, we should expose an option to generate...
## Specific Demand - Reducing the number of `unwrap`s When optimizing assets, manganis currently `unwraps` in a few places that may fail (eg. opening a file [here](https://github.com/DioxusLabs/collect-assets/blob/master/cli-support/src/file.rs#L133)). We should return...
This PR changes use_server_future to accept FnMut which makes it possible to use `use_server_future` with `use_reactive`
This PR adds a bunch more anti patterns to the reference along with examples for some existing anti patterns
As mentioned in https://github.com/DioxusLabs/dioxus/issues/2291, we currently don't have great documentation about setting up a project that targets multiple platforms. A multi platform setup can have one feature per platform: ```toml...
We briefly mention hydration in the choosing a web renderer chapter, but we don't explain it in the fullstack guide. We should explain both hydration and how to recognize and...
We should use App in all of the getting started platform guides to be more consistent with the hackernews guide. Some of the guides already use App, but some like...
We should document how to handle secrets that you want on the server but not on the client. Like API keys. It doesn't have to be a large section, but...