feat(timebar): add a timestamp that shows when the timer ends
cargo devel CI / cargo CI (push) Successful in 1m48s Details

This commit is contained in:
Christoph J. Scherr 2024-07-19 09:42:33 +02:00
parent 19cc0d5d1a
commit a5bd54a8e0
2 changed files with 13 additions and 2 deletions

View File

@ -24,6 +24,12 @@ impl TimeBarLength {
}
}
impl From<TimeBarLength> for chrono::Duration {
fn from(value: TimeBarLength) -> Self {
Self::new(value.as_secs(), 0).expect("seconds out of bounds, cannot create duration")
}
}
impl Default for TimeBarLength {
fn default() -> Self {
Self::Minute

View File

@ -1,4 +1,4 @@
use chrono::{DateTime, Local, SubsecRound};
use chrono::{DateTime, Local, SubsecRound, Timelike};
use libpt::log::{debug, error, trace};
use ratatui::layout::{Alignment, Rect};
use ratatui::style::{Style, Stylize};
@ -150,7 +150,12 @@ pub fn timebarw_label<'a>(
.unwrap(),
),
};
Paragraph::new(format!("{time_now} / {len}"))
let until = last_reset
.checked_add_signed(len.into())
.expect("could not calculate when the countdown finishes");
let timestamp_until: String =
format!("{}:{}:{}", until.hour(), until.minute(), until.second());
Paragraph::new(format!("{time_now} / {len} ({timestamp_until})"))
.alignment(Alignment::Center)
.block(
Block::default().padding(Padding::right(if inner_rect.width > 80 {