Fully-typed, async, reusable state management and synchronization for Dioxus 🧬. Inspired by TanStack Query
.
See the Docs or join the Discord.
⚠️ Work in progress ⚠️
Install the latest release:
bash
cargo add dioxus-query
bash
cargo run --example simple
```rust
enum QueryKeys { User(usize), }
enum QueryError { UserNotFound(usize), Unknown }
enum QueryValue { UserName(String), }
async fn fetchuser(keys: Vec
fn User(cx: Scope, id: usize) -> Element { let value = usequery(cx, || vec![QueryKeys::User(*id)], fetchuser);
render!( p { "{value.result().value():?}" } )
}
fn app(cx: Scope) -> Element {
let client = usequeryclient::
let refresh = move |_| {
to_owned![client];
cx.spawn(async move {
client.invalidate_query(QueryKeys::User(0)).await;
});
};
render!(
User { id: 0 }
button { onclick: refresh, label { "Refresh" } }
)
} ```
MIT License