1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-20 06:28:09 +00:00

feat(core/rust): use loaders in coinjoin screens

[no changelog]
This commit is contained in:
grdddj 2023-06-15 17:39:30 +02:00 committed by Jiří Musil
parent a318706145
commit b5226b55c8

View File

@ -1,3 +1,5 @@
use core::mem;
use crate::{ use crate::{
strutil::StringType, strutil::StringType,
ui::{ ui::{
@ -6,8 +8,9 @@ use crate::{
text::util::{text_multiline, text_multiline_bottom}, text::util::{text_multiline, text_multiline_bottom},
Component, Event, EventCtx, Component, Event, EventCtx,
}, },
display::Font, display::{self, Font},
geometry::{Alignment, Insets, Rect}, geometry::{Alignment, Insets, Rect},
util::animation_disabled,
}, },
}; };
@ -16,8 +19,12 @@ use super::theme;
const HEADER: &str = "COINJOIN IN PROGRESS"; const HEADER: &str = "COINJOIN IN PROGRESS";
const FOOTER: &str = "Do not disconnect your Trezor!"; const FOOTER: &str = "Do not disconnect your Trezor!";
const FOOTER_TEXT_MARGIN: i16 = 8; const FOOTER_TEXT_MARGIN: i16 = 8;
const LOADER_OFFSET: i16 = -15;
const LOADER_SPEED: u16 = 10;
pub struct CoinJoinProgress<T> { pub struct CoinJoinProgress<T> {
value: u16,
loader_y_offset: i16,
text: T, text: T,
area: Rect, area: Rect,
indeterminate: bool, indeterminate: bool,
@ -29,6 +36,8 @@ where
{ {
pub fn new(text: T, indeterminate: bool) -> Self { pub fn new(text: T, indeterminate: bool) -> Self {
Self { Self {
value: 0,
loader_y_offset: LOADER_OFFSET,
text, text,
area: Rect::zero(), area: Rect::zero(),
indeterminate, indeterminate,
@ -47,7 +56,31 @@ where
bounds bounds
} }
fn event(&mut self, _ctx: &mut EventCtx, _event: Event) -> Option<Self::Msg> { fn event(&mut self, ctx: &mut EventCtx, event: Event) -> Option<Self::Msg> {
if animation_disabled() {
return None;
}
// Indeterminate needs to request frames to animate.
// Determinate ones are receiving Event::Progress events.
if self.indeterminate {
match event {
Event::Attach => {
ctx.request_anim_frame();
}
Event::Timer(EventCtx::ANIM_FRAME_TIMER) => {
self.value = (self.value + LOADER_SPEED) % 1000;
ctx.request_anim_frame();
ctx.request_paint();
}
_ => {}
}
} else if let Event::Progress(new_value, _new_description) = event {
if mem::replace(&mut self.value, new_value) != new_value {
ctx.request_paint();
}
}
None None
} }
@ -62,10 +95,22 @@ where
theme::BG, theme::BG,
Alignment::Center, Alignment::Center,
); );
display::loader::loader_small_indeterminate(
self.value,
self.loader_y_offset,
theme::FG,
theme::BG,
);
} else {
display::loader(
self.value,
self.loader_y_offset,
theme::FG,
theme::BG,
Some((theme::ICON_TICK_FAT, theme::FG)),
);
} }
// CENTER
// BOTTOM // BOTTOM
let top_rest = text_multiline_bottom( let top_rest = text_multiline_bottom(
self.area, self.area,