summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-19 07:21:09 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-19 07:23:50 +0100
commitffc412d6b7f8009c783715c021fc36780f26db36 (patch)
tree2d2f1df7b26f9102a1f275ec05a66ad0ea2829ad /examples
parent42f6018487e88eb3988e8650e51ba6e369327b64 (diff)
downloadiced-ffc412d6b7f8009c783715c021fc36780f26db36.tar.gz
iced-ffc412d6b7f8009c783715c021fc36780f26db36.tar.bz2
iced-ffc412d6b7f8009c783715c021fc36780f26db36.zip
Implement `delay` for `pop` widget :tada:
Diffstat (limited to 'examples')
-rw-r--r--examples/markdown/src/main.rs38
1 files changed, 10 insertions, 28 deletions
diff --git a/examples/markdown/src/main.rs b/examples/markdown/src/main.rs
index 512d4b44..c6360359 100644
--- a/examples/markdown/src/main.rs
+++ b/examples/markdown/src/main.rs
@@ -3,14 +3,15 @@ mod icon;
use iced::animation;
use iced::clipboard;
use iced::highlighter;
-use iced::task;
use iced::time::{self, milliseconds, Instant};
use iced::widget::{
self, button, center_x, container, horizontal_space, hover, image,
markdown, pop, right, row, scrollable, text_editor, toggler,
};
use iced::window;
-use iced::{Animation, Element, Fill, Font, Subscription, Task, Theme};
+use iced::{
+ Animation, Element, Fill, Font, Function, Subscription, Task, Theme,
+};
use std::collections::HashMap;
use std::io;
@@ -39,9 +40,7 @@ enum Mode {
}
enum Image {
- Loading {
- _download: task::Handle,
- },
+ Loading,
Ready {
handle: image::Handle,
fade_in: Animation<bool>,
@@ -89,9 +88,6 @@ impl Markdown {
if is_edit {
self.content = markdown::Content::parse(&self.raw.text());
self.mode = Mode::Preview;
-
- let images = self.content.images();
- self.images.retain(|url, _image| images.contains(url));
}
Task::none()
@@ -107,27 +103,12 @@ impl Markdown {
return Task::none();
}
- let (download_image, handle) = Task::future({
- let url = url.clone();
-
- async move {
- // Wait half a second for further editions before attempting download
- tokio::time::sleep(milliseconds(500)).await;
- download_image(url).await
- }
- })
- .abortable();
+ let _ = self.images.insert(url.clone(), Image::Loading);
- let _ = self.images.insert(
- url.clone(),
- Image::Loading {
- _download: handle.abort_on_drop(),
- },
- );
-
- download_image.map(move |result| {
- Message::ImageDownloaded(url.clone(), result)
- })
+ Task::perform(
+ download_image(url.clone()),
+ Message::ImageDownloaded.with(url),
+ )
}
Message::ImageDownloaded(url, result) => {
let _ = self.images.insert(
@@ -286,6 +267,7 @@ impl<'a> markdown::Viewer<'a, Message> for CustomViewer<'a> {
} else {
pop(horizontal_space())
.key(url.as_str())
+ .delay(milliseconds(500))
.on_show(|_size| Message::ImageShown(url.clone()))
.into()
}