123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- use crate::{use_context_provider, use_future, UseFuture};
- use dioxus_core::prelude::{consume_context, use_hook};
- use dioxus_core::Task;
- use dioxus_signals::*;
- pub use futures_channel::mpsc::{UnboundedReceiver, UnboundedSender};
- use std::future::Future;
- /// Maintain a handle over a future that can be paused, resumed, and canceled.
- ///
- /// This is an upgraded form of [`crate::use_future()`] with an integrated channel system.
- /// Specifically, the coroutine generated here comes with an [`futures_channel::mpsc::UnboundedSender`]
- /// built into it - saving you the hassle of building your own.
- ///
- /// Additionally, coroutines are automatically injected as shared contexts, so
- /// downstream components can tap into a coroutine's channel and send messages
- /// into a singular async event loop.
- ///
- /// This makes it effective for apps that need to interact with an event loop or
- /// some asynchronous code without thinking too hard about state.
- ///
- /// ## Global State
- ///
- /// Typically, writing apps that handle concurrency properly can be difficult,
- /// so the intention of this hook is to make it easy to join and poll async tasks
- /// concurrently in a centralized place. You'll find that you can have much better
- /// control over your app's state if you centralize your async actions, even under
- /// the same concurrent context. This makes it easier to prevent undeseriable
- /// states in your UI while various async tasks are already running.
- ///
- /// This hook is especially powerful when combined with Fermi. We can store important
- /// global data in a coroutine, and then access display-level values from the rest
- /// of our app through atoms.
- ///
- /// ## UseCallback instead
- ///
- /// However, you must plan out your own concurrency and synchronization. If you
- /// don't care about actions in your app being synchronized, you can use [`crate::use_callback()`]
- /// hook to spawn multiple tasks and run them concurrently.
- ///
- /// ### Notice
- /// In order to use ``rx.next().await``, you will need to extend the ``Stream`` trait (used by ``UnboundedReceiver``)
- /// by adding the ``futures-util`` crate as a dependency and adding ``StreamExt`` into scope via ``use futures_util::stream::StreamExt;``
- ///
- /// ## Example
- ///
- /// ```rust, no_run
- /// # use dioxus::prelude::*;
- /// use futures_util::StreamExt;
- /// enum Action {
- /// Start,
- /// Stop,
- /// }
- ///
- /// let chat_client = use_coroutine(|mut rx: UnboundedReceiver<Action>| async move {
- /// while let Some(action) = rx.next().await {
- /// match action {
- /// Action::Start => {}
- /// Action::Stop => {},
- /// }
- /// }
- /// });
- ///
- ///
- /// rsx! {
- /// button {
- /// onclick: move |_| chat_client.send(Action::Start),
- /// "Start Chat Service"
- /// }
- /// };
- /// ```
- #[doc = include_str!("../docs/rules_of_hooks.md")]
- pub fn use_coroutine<M, G, F>(mut init: G) -> Coroutine<M>
- where
- M: 'static,
- G: FnMut(UnboundedReceiver<M>) -> F + 'static,
- F: Future<Output = ()> + 'static,
- {
- let mut tx_copy_value = use_hook(|| CopyValue::new(None));
- let future = use_future(move || {
- let (tx, rx) = futures_channel::mpsc::unbounded();
- tx_copy_value.set(Some(tx));
- init(rx)
- });
- use_context_provider(|| Coroutine {
- tx: tx_copy_value,
- future,
- })
- }
- /// Get a handle to a coroutine higher in the tree
- /// Analogous to use_context_provider and use_context,
- /// but used for coroutines specifically
- /// See the docs for [`use_coroutine`] for more details.
- #[doc = include_str!("../docs/rules_of_hooks.md")]
- #[must_use]
- pub fn use_coroutine_handle<M: 'static>() -> Coroutine<M> {
- use_hook(consume_context::<Coroutine<M>>)
- }
- pub struct Coroutine<T: 'static> {
- tx: CopyValue<Option<UnboundedSender<T>>>,
- future: UseFuture,
- }
- impl<T> Coroutine<T> {
- /// Get the underlying task handle
- pub fn task(&self) -> Task {
- self.future.task()
- }
- /// Send a message to the coroutine
- pub fn send(&self, msg: T) {
- let _ = self.tx.read().as_ref().unwrap().unbounded_send(msg);
- }
- pub fn tx(&self) -> UnboundedSender<T> {
- self.tx.read().as_ref().unwrap().clone()
- }
- /// Restart this coroutine
- pub fn restart(&mut self) {
- self.future.restart();
- }
- }
- // manual impl since deriving doesn't work with generics
- impl<T> Copy for Coroutine<T> {}
- impl<T> Clone for Coroutine<T> {
- fn clone(&self) -> Self {
- *self
- }
- }
- impl<T> PartialEq for Coroutine<T> {
- fn eq(&self, other: &Self) -> bool {
- self.tx == other.tx && self.future == other.future
- }
- }
|