summaryrefslogtreecommitdiffstats
path: root/examples/download_progress
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-07-27 06:49:20 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-07-27 06:49:20 +0200
commitff2519b1d43d481987351a83b6dd7237524c21f0 (patch)
tree5731eeb7eb1247d4a8951de0d5bc5d8102640559 /examples/download_progress
parentc44267b85f7aaa2997e3caf1323b837d95818c22 (diff)
downloadiced-ff2519b1d43d481987351a83b6dd7237524c21f0.tar.gz
iced-ff2519b1d43d481987351a83b6dd7237524c21f0.tar.bz2
iced-ff2519b1d43d481987351a83b6dd7237524c21f0.zip
Replace stateful widgets with new `iced_pure` API
Diffstat (limited to 'examples/download_progress')
-rw-r--r--examples/download_progress/src/main.rs98
1 files changed, 40 insertions, 58 deletions
diff --git a/examples/download_progress/src/main.rs b/examples/download_progress/src/main.rs
index 2999bc7e..3ef9ef7a 100644
--- a/examples/download_progress/src/main.rs
+++ b/examples/download_progress/src/main.rs
@@ -1,8 +1,8 @@
-use iced::button;
use iced::executor;
+use iced::widget::{button, column, container, progress_bar, text, Column};
use iced::{
- Alignment, Application, Button, Column, Command, Container, Element,
- Length, ProgressBar, Settings, Subscription, Text, Theme,
+ Alignment, Application, Command, Element, Length, Settings, Subscription,
+ Theme,
};
mod download;
@@ -15,7 +15,6 @@ pub fn main() -> iced::Result {
struct Example {
downloads: Vec<Download>,
last_id: usize,
- add: button::State,
}
#[derive(Debug, Clone)]
@@ -36,7 +35,6 @@ impl Application for Example {
Example {
downloads: vec![Download::new(0)],
last_id: 0,
- add: button::State::new(),
},
Command::none(),
)
@@ -74,21 +72,19 @@ impl Application for Example {
Subscription::batch(self.downloads.iter().map(Download::subscription))
}
- fn view(&mut self) -> Element<Message> {
- let downloads = self
- .downloads
- .iter_mut()
- .fold(Column::new().spacing(20), |column, download| {
- column.push(download.view())
- })
- .push(
- Button::new(&mut self.add, Text::new("Add another download"))
- .on_press(Message::Add)
- .padding(10),
- )
- .align_items(Alignment::End);
-
- Container::new(downloads)
+ fn view(&self) -> Element<Message> {
+ let downloads = Column::with_children(
+ self.downloads.iter().map(Download::view).collect(),
+ )
+ .push(
+ button("Add another download")
+ .on_press(Message::Add)
+ .padding(10),
+ )
+ .spacing(20)
+ .align_items(Alignment::End);
+
+ container(downloads)
.width(Length::Fill)
.height(Length::Fill)
.center_x()
@@ -106,19 +102,17 @@ struct Download {
#[derive(Debug)]
enum State {
- Idle { button: button::State },
+ Idle,
Downloading { progress: f32 },
- Finished { button: button::State },
- Errored { button: button::State },
+ Finished,
+ Errored,
}
impl Download {
pub fn new(id: usize) -> Self {
Download {
id,
- state: State::Idle {
- button: button::State::new(),
- },
+ state: State::Idle,
}
}
@@ -143,14 +137,10 @@ impl Download {
*progress = percentage;
}
download::Progress::Finished => {
- self.state = State::Finished {
- button: button::State::new(),
- }
+ self.state = State::Finished;
}
download::Progress::Errored => {
- self.state = State::Errored {
- button: button::State::new(),
- };
+ self.state = State::Errored;
}
}
}
@@ -166,7 +156,7 @@ impl Download {
}
}
- pub fn view(&mut self) -> Element<Message> {
+ pub fn view(&self) -> Element<Message> {
let current_progress = match &self.state {
State::Idle { .. } => 0.0,
State::Downloading { progress } => *progress,
@@ -174,36 +164,28 @@ impl Download {
State::Errored { .. } => 0.0,
};
- let progress_bar = ProgressBar::new(0.0..=100.0, current_progress);
+ let progress_bar = progress_bar(0.0..=100.0, current_progress);
- let control: Element<_> = match &mut self.state {
- State::Idle { button } => {
- Button::new(button, Text::new("Start the download!"))
- .on_press(Message::Download(self.id))
+ let control: Element<_> = match &self.state {
+ State::Idle => button("Start the download!")
+ .on_press(Message::Download(self.id))
+ .into(),
+ State::Finished => {
+ column!["Download finished!", button("Start again")]
+ .spacing(10)
+ .align_items(Alignment::Center)
.into()
}
- State::Finished { button } => Column::new()
- .spacing(10)
- .align_items(Alignment::Center)
- .push(Text::new("Download finished!"))
- .push(
- Button::new(button, Text::new("Start again"))
- .on_press(Message::Download(self.id)),
- )
- .into(),
State::Downloading { .. } => {
- Text::new(format!("Downloading... {:.2}%", current_progress))
- .into()
+ text(format!("Downloading... {:.2}%", current_progress)).into()
}
- State::Errored { button } => Column::new()
- .spacing(10)
- .align_items(Alignment::Center)
- .push(Text::new("Something went wrong :("))
- .push(
- Button::new(button, Text::new("Try again"))
- .on_press(Message::Download(self.id)),
- )
- .into(),
+ State::Errored => column![
+ "Something went wrong :(",
+ button("Try again").on_press(Message::Download(self.id)),
+ ]
+ .spacing(10)
+ .align_items(Alignment::Center)
+ .into(),
};
Column::new()