add mode show and fix some things #20

Merged
cscherrNT merged 21 commits from devel into master 2024-07-26 10:43:20 +02:00
2 changed files with 13 additions and 2 deletions
Showing only changes of commit 3a4c3d7c00 - Show all commits

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 {