use crate::prelude::SuspenseContext; use crate::runtime::RuntimeError; use crate::{innerlude::SuspendedFuture, runtime::Runtime, CapturedError, Element, ScopeId, Task}; use std::future::Future; use std::sync::Arc; /// Get the current scope id pub fn current_scope_id() -> Result { Runtime::with(|rt| rt.current_scope_id().ok()) .ok() .flatten() .ok_or(RuntimeError::new()) } #[doc(hidden)] /// Check if the virtual dom is currently inside of the body of a component pub fn vdom_is_rendering() -> bool { Runtime::with(|rt| rt.rendering.get()).unwrap_or_default() } /// Throw a [`CapturedError`] into the current scope. The error will bubble up to the nearest [`crate::prelude::ErrorBoundary()`] or the root of the app. /// /// # Examples /// ```rust, no_run /// # use dioxus::prelude::*; /// fn Component() -> Element { /// let request = spawn(async move { /// match reqwest::get("https://api.example.com").await { /// Ok(_) => unimplemented!(), /// // You can explicitly throw an error into a scope with throw_error /// Err(err) => ScopeId::APP.throw_error(err) /// } /// }); /// /// unimplemented!() /// } /// ``` pub fn throw_error(error: impl Into + 'static) { current_scope_id() .unwrap_or_else(|e| panic!("{}", e)) .throw_error(error) } /// Get the suspense context the current scope is in pub fn suspense_context() -> Option { current_scope_id() .unwrap_or_else(|e| panic!("{}", e)) .suspense_context() } /// Consume context from the current scope pub fn try_consume_context() -> Option { Runtime::with_current_scope(|cx| cx.consume_context::()) .ok() .flatten() } /// Consume context from the current scope pub fn consume_context() -> T { Runtime::with_current_scope(|cx| cx.consume_context::()) .ok() .flatten() .unwrap_or_else(|| panic!("Could not find context {}", std::any::type_name::())) } /// Consume context from the current scope pub fn consume_context_from_scope(scope_id: ScopeId) -> Option { Runtime::with(|rt| { rt.get_state(scope_id) .and_then(|cx| cx.consume_context::()) }) .ok() .flatten() } /// Check if the current scope has a context pub fn has_context() -> Option { Runtime::with_current_scope(|cx| cx.has_context::()) .ok() .flatten() } /// Provide context to the current scope pub fn provide_context(value: T) -> T { Runtime::with_current_scope(|cx| cx.provide_context(value)).unwrap() } /// Provide a context to the root scope pub fn provide_root_context(value: T) -> T { Runtime::with_current_scope(|cx| cx.provide_root_context(value)).unwrap() } /// Suspended the current component on a specific task and then return None pub fn suspend(task: Task) -> Element { Err(crate::innerlude::RenderError::Suspended( SuspendedFuture::new(task), )) } /// Start a new future on the same thread as the rest of the VirtualDom. /// /// **You should generally use `spawn` instead of this method unless you specifically need to run a task during suspense** /// /// This future will not contribute to suspense resolving but it will run during suspense. /// /// Because this future runs during suspense, you need to be careful to work with hydration. It is not recommended to do any async IO work in this future, as it can easily cause hydration issues. However, you can use isomorphic tasks to do work that can be consistently replicated on the server and client like logging or responding to state changes. /// /// ```rust, no_run /// # use dioxus::prelude::*; /// // ❌ Do not do requests in isomorphic tasks. It may resolve at a different time on the server and client, causing hydration issues. /// let mut state = use_signal(|| None); /// spawn_isomorphic(async move { /// state.set(Some(reqwest::get("https://api.example.com").await)); /// }); /// /// // ✅ You may wait for a signal to change and then log it /// let mut state = use_signal(|| 0); /// spawn_isomorphic(async move { /// loop { /// tokio::time::sleep(std::time::Duration::from_secs(1)).await; /// println!("State is {state}"); /// } /// }); /// ``` /// #[doc = include_str!("../docs/common_spawn_errors.md")] pub fn spawn_isomorphic(fut: impl Future + 'static) -> Task { Runtime::with_current_scope(|cx| cx.spawn_isomorphic(fut)).unwrap() } /// Spawns the future and returns the [`Task`]. This task will automatically be canceled when the component is dropped. /// /// # Example /// ```rust /// use dioxus::prelude::*; /// /// fn App() -> Element { /// rsx! { /// button { /// onclick: move |_| { /// spawn(async move { /// tokio::time::sleep(std::time::Duration::from_secs(1)).await; /// println!("Hello World"); /// }); /// }, /// "Print hello in one second" /// } /// } /// } /// ``` /// #[doc = include_str!("../docs/common_spawn_errors.md")] pub fn spawn(fut: impl Future + 'static) -> Task { Runtime::with_current_scope(|cx| cx.spawn(fut)).unwrap() } /// Queue an effect to run after the next render. You generally shouldn't need to interact with this function directly. [use_effect](https://docs.rs/dioxus-hooks/latest/dioxus_hooks/fn.use_effect.html) will call this function for you. pub fn queue_effect(f: impl FnOnce() + 'static) { Runtime::with_current_scope(|cx| cx.queue_effect(f)).unwrap() } /// Spawn a future that Dioxus won't clean up when this component is unmounted /// /// This is good for tasks that need to be run after the component has been dropped. /// /// **This will run the task in the root scope. Any calls to global methods inside the future (including `context`) will be run in the root scope.** /// /// # Example /// /// ```rust /// use dioxus::prelude::*; /// /// // The parent component can create and destroy children dynamically /// fn App() -> Element { /// let mut count = use_signal(|| 0); /// /// rsx! { /// button { /// onclick: move |_| count += 1, /// "Increment" /// } /// button { /// onclick: move |_| count -= 1, /// "Decrement" /// } /// /// for id in 0..10 { /// Child { id } /// } /// } /// } /// /// #[component] /// fn Child(id: i32) -> Element { /// rsx! { /// button { /// onclick: move |_| { /// // This will spawn a task in the root scope that will run forever /// // It will keep running even if you drop the child component by decreasing the count /// spawn_forever(async move { /// loop { /// tokio::time::sleep(std::time::Duration::from_secs(1)).await; /// println!("Running task spawned in child component {id}"); /// } /// }); /// }, /// "Spawn background task" /// } /// } /// } /// ``` /// #[doc = include_str!("../docs/common_spawn_errors.md")] pub fn spawn_forever(fut: impl Future + 'static) -> Option { Runtime::with_scope(ScopeId::ROOT, |cx| cx.spawn(fut)).ok() } /// Informs the scheduler that this task is no longer needed and should be removed. /// /// This drops the task immediately. pub fn remove_future(id: Task) { Runtime::with(|rt| rt.remove_task(id)).expect("Runtime to exist"); } /// Store a value between renders. The foundational hook for all other hooks. /// /// Accepts an `initializer` closure, which is run on the first use of the hook (typically the initial render). /// `use_hook` will return a clone of the value on every render. /// /// In order to clean up resources you would need to implement the [`Drop`] trait for an inner value stored in a RC or similar (Signals for instance), /// as these only drop their inner value once all references have been dropped, which only happens when the component is dropped. /// ///
/// /// `use_hook` is not reactive. It just returns the value on every render. If you need state that will track changes, use [`use_signal`](dioxus::prelude::use_signal) instead. /// /// ❌ Don't use `use_hook` with `Rc>` for state. It will not update the UI and other hooks when the state changes. /// ```rust /// use dioxus::prelude::*; /// use std::rc::Rc; /// use std::cell::RefCell; /// /// pub fn Comp() -> Element { /// let count = use_hook(|| Rc::new(RefCell::new(0))); /// /// rsx! { /// button { /// onclick: move |_| *count.borrow_mut() += 1, /// "{count.borrow()}" /// } /// } /// } /// ``` /// /// ✅ Use `use_signal` instead. /// ```rust /// use dioxus::prelude::*; /// /// pub fn Comp() -> Element { /// let mut count = use_signal(|| 0); /// /// rsx! { /// button { /// onclick: move |_| count += 1, /// "{count}" /// } /// } /// } /// ``` /// ///
/// /// # Example /// /// ```rust, no_run /// use dioxus::prelude::*; /// /// // prints a greeting on the initial render /// pub fn use_hello_world() { /// use_hook(|| println!("Hello, world!")); /// } /// ``` /// /// # Custom Hook Example /// /// ```rust, no_run /// use dioxus::prelude::*; /// /// pub struct InnerCustomState(usize); /// /// impl Drop for InnerCustomState { /// fn drop(&mut self){ /// println!("Component has been dropped."); /// } /// } /// /// #[derive(Clone, Copy)] /// pub struct CustomState { /// inner: Signal /// } /// /// pub fn use_custom_state() -> CustomState { /// use_hook(|| CustomState { /// inner: Signal::new(InnerCustomState(0)) /// }) /// } /// ``` #[track_caller] pub fn use_hook(initializer: impl FnOnce() -> State) -> State { Runtime::with_current_scope(|cx| cx.use_hook(initializer)).unwrap() } /// Get the current render since the inception of this component /// /// This can be used as a helpful diagnostic when debugging hooks/renders, etc pub fn generation() -> usize { Runtime::with_current_scope(|cx| cx.generation()).unwrap() } /// Get the parent of the current scope if it exists pub fn parent_scope() -> Option { Runtime::with_current_scope(|cx| cx.parent_id()) .ok() .flatten() } /// Mark the current scope as dirty, causing it to re-render pub fn needs_update() { let _ = Runtime::with_current_scope(|cx| cx.needs_update()); } /// Mark the current scope as dirty, causing it to re-render pub fn needs_update_any(id: ScopeId) { let _ = Runtime::with_current_scope(|cx| cx.needs_update_any(id)); } /// Schedule an update for the current component /// /// Note: Unlike [`needs_update`], the function returned by this method will work outside of the dioxus runtime. /// /// You should prefer [`schedule_update_any`] if you need to update multiple components. #[track_caller] pub fn schedule_update() -> Arc { Runtime::with_current_scope(|cx| cx.schedule_update()).unwrap_or_else(|e| panic!("{}", e)) } /// Schedule an update for any component given its [`ScopeId`]. /// /// A component's [`ScopeId`] can be obtained from the [`current_scope_id`] method. /// /// Note: Unlike [`needs_update`], the function returned by this method will work outside of the dioxus runtime. #[track_caller] pub fn schedule_update_any() -> Arc { Runtime::with_current_scope(|cx| cx.schedule_update_any()).unwrap_or_else(|e| panic!("{}", e)) } /// Creates a callback that will be run before the component is removed. /// This can be used to clean up side effects from the component /// (created with [`use_effect`](dioxus::prelude::use_effect)). /// /// Note: /// Effects do not run on the server, but use_drop **DOES**. It runs any time the component is dropped including during SSR rendering on the server. If your clean up logic targets web, the logic has to be gated by a feature, see the below example for details. /// /// Example: /// ```rust /// use dioxus::prelude::*; /// /// fn app() -> Element { /// let mut state = use_signal(|| true); /// rsx! { /// for _ in 0..100 { /// h1 { /// "spacer" /// } /// } /// if state() { /// child_component {} /// } /// button { /// onclick: move |_| { /// state.toggle() /// }, /// "Unmount element" /// } /// } /// } /// /// fn child_component() -> Element { /// let mut original_scroll_position = use_signal(|| 0.0); /// /// use_effect(move || { /// let window = web_sys::window().unwrap(); /// let document = window.document().unwrap(); /// let element = document.get_element_by_id("my_element").unwrap(); /// element.scroll_into_view(); /// original_scroll_position.set(window.scroll_y().unwrap()); /// }); /// /// use_drop(move || { /// // This only make sense to web and hence the `web!` macro /// web! { /// /// restore scroll to the top of the page /// let window = web_sys::window().unwrap(); /// window.scroll_with_x_and_y(original_scroll_position(), 0.0); /// } /// }); /// /// rsx! { /// div { /// id: "my_element", /// "hello" /// } /// } /// } /// ``` #[doc(alias = "use_on_unmount")] pub fn use_drop(destroy: D) { struct LifeCycle { /// Wrap the closure in an option so that we can take it out on drop. ondestroy: Option, } /// On drop, we want to run the closure. impl Drop for LifeCycle { fn drop(&mut self) { if let Some(f) = self.ondestroy.take() { f(); } } } // We need to impl clone for the lifecycle, but we don't want the drop handler for the closure to be called twice. impl Clone for LifeCycle { fn clone(&self) -> Self { Self { ondestroy: None } } } use_hook(|| LifeCycle { ondestroy: Some(destroy), }); } /// A hook that allows you to insert a "before render" function. /// /// This function will always be called before dioxus tries to render your component. This should be used for safely handling /// early returns pub fn use_before_render(f: impl FnMut() + 'static) { use_hook(|| before_render(f)); } /// Push this function to be run after the next render /// /// This function will always be called before dioxus tries to render your component. This should be used for safely handling /// early returns pub fn use_after_render(f: impl FnMut() + 'static) { use_hook(|| after_render(f)); } /// Push a function to be run before the next render /// This is a hook and will always run, so you can't unschedule it /// Will run for every progression of suspense, though this might change in the future pub fn before_render(f: impl FnMut() + 'static) { let _ = Runtime::with_current_scope(|cx| cx.push_before_render(f)); } /// Push a function to be run after the render is complete, even if it didn't complete successfully pub fn after_render(f: impl FnMut() + 'static) { let _ = Runtime::with_current_scope(|cx| cx.push_after_render(f)); } /// Use a hook with a cleanup function pub fn use_hook_with_cleanup( hook: impl FnOnce() -> T, cleanup: impl FnOnce(T) + 'static, ) -> T { let value = use_hook(hook); let _value = value.clone(); use_drop(move || cleanup(_value)); value } /// Force every component to be dirty and require a re-render. Used by hot-reloading. /// /// This might need to change to a different flag in the event hooks order changes within components. /// What we really need is a way to mark components as needing a complete rebuild if they were hit by changes. pub fn force_all_dirty() { Runtime::with(|rt| { rt.scope_states.borrow_mut().iter().for_each(|state| { if let Some(scope) = state.as_ref() { scope.needs_update(); } }); }) .expect("Runtime to exist"); }