Back to Dioxus

Dioxus Hooks

packages/hooks/README.md

0.7.75.7 KB
Original Source

Dioxus Hooks

Website | Guides | API Docs | Chat

Overview

dioxus-hooks includes some basic useful hooks for Dioxus such as:

  • use_signal
  • use_effect
  • use_resource
  • use_memo
  • use_coroutine

Unlike React, none of these hooks are foundational since they all build off the primitive use_hook. You can extend these hooks with custom hooks in your own code. If you think they would be useful for the broader community, you can open a PR to add your hook to the Dioxus Awesome list.

State Cheat Sheet

If you aren't sure what hook to use, you can use this cheat sheet to help you decide:

State Location

Depending on where you need to access the state, you can put your state in one of three places:

LocationWhere can you access the state?Recommended for Libraries?Examples
HooksAny components you pass it touse_signal(|| 0), use_memo(|| state() * 2)
ContextAny child componentsuse_context_provider(|| Signal::new(0)), use_context::<Signal<i32>>()
GlobalAnything in your appSignal::global(|| 0)

Derived State

If you don't have an initial value for your state, you can derive your state from other states with a closure or asynchronous function:

HookReactive (reruns when dependencies change)AsyncMemorizes OutputExample
use_memouse_memo(move || count() * 2)
use_resourceuse_resource(move || reqwest::get(format!("/users/{user_id}")))
use_futureuse_future(move || println!("{:?}", reqwest::get(format!("/users/{user_id}"))))

Persistent State

The core hooks library doesn't provide hooks for persistent state, but you can extend the core hooks with hooks from dioxus-sdk and the dioxus-router to provide persistent state management.

StateSharableExample
use_persistentuse_persistent("unique_key", move || initial_state)
Router<Route> {}#[derive(Routable, Clone, PartialEq)] enum Route { #[route("/user/:id")] Homepage { id: u32 } }

Contributing

  • Report issues on our issue tracker.
  • Join the discord and ask questions!

License

This project is licensed under the MIT license.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional terms or conditions.