summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-11 02:34:10 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-11 02:34:10 +0100
commit9f21eae1528fa414adbfb987ce4c851fa58326fe (patch)
tree4eff76cd5effe1b3fa51e4fe17c9a53aa9823841 /runtime
parent06ece6a8c30541b7b2b6bcbb370fdffc9f1fcb79 (diff)
downloadiced-9f21eae1528fa414adbfb987ce4c851fa58326fe.tar.gz
iced-9f21eae1528fa414adbfb987ce4c851fa58326fe.tar.bz2
iced-9f21eae1528fa414adbfb987ce4c851fa58326fe.zip
Introduce `Task::map_with`
Diffstat (limited to 'runtime')
-rw-r--r--runtime/src/task.rs44
1 files changed, 44 insertions, 0 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs
index bfc36d75..1a1ef699 100644
--- a/runtime/src/task.rs
+++ b/runtime/src/task.rs
@@ -98,6 +98,50 @@ impl<T> Task<T> {
self.then(move |output| Task::done(f(output)))
}
+ /// Combines a prefix value with the result of the [`Task`] using
+ /// the provided closure.
+ ///
+ /// Sometimes you will want to identify the source or target
+ /// of some [`Task`] in your UI. This can be achieved through
+ /// normal means by using [`map`]:
+ ///
+ /// ```rust
+ /// # use iced_runtime::Task;
+ /// # let task = Task::none();
+ /// # enum Message { TaskCompleted(u32, ()) }
+ /// let id = 123;
+ ///
+ /// # let _ = {
+ /// task.map(move |result| Message::TaskCompleted(id, result))
+ /// # };
+ /// ```
+ ///
+ /// Quite a mouthful. [`map_with`] lets you write:
+ ///
+ /// ```rust
+ /// # use iced_runtime::Task;
+ /// # let task = Task::none();
+ /// # enum Message { TaskCompleted(u32, ()) }
+ /// # let id = 123;
+ /// # let _ = {
+ /// task.map_with(id, Message::TaskCompleted)
+ /// # };
+ /// ```
+ ///
+ /// Much nicer!
+ pub fn map_with<P, O>(
+ self,
+ prefix: P,
+ mut f: impl FnMut(P, T) -> O + MaybeSend + 'static,
+ ) -> Task<O>
+ where
+ T: MaybeSend + 'static,
+ P: MaybeSend + Clone + 'static,
+ O: MaybeSend + 'static,
+ {
+ self.map(move |result| f(prefix.clone(), result))
+ }
+
/// Performs a new [`Task`] for every output of the current [`Task`] using the
/// given closure.
///