feat: improve times_tracked history display utility
This commit is contained in:
parent
660d7b1815
commit
ae4a678d77
27
src/main.rs
27
src/main.rs
|
@ -631,32 +631,17 @@ async fn main() -> Result<()> {
|
||||||
Err(e) => warn!("Ignoring extra {:?}: {}\nSyntax: ((INT", remaining, e),
|
Err(e) => warn!("Ignoring extra {:?}: {}\nSyntax: ((INT", remaining, e),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let (label, times) = tasks.times_tracked();
|
println!("{}", tasks.times_tracked(max));
|
||||||
let vec = times.rev().take(max).collect_vec();
|
|
||||||
println!("{}\n{}",
|
|
||||||
if vec.is_empty() {
|
|
||||||
label
|
|
||||||
} else {
|
|
||||||
format!("{} {}",
|
|
||||||
if max == usize::MAX { "All".to_string() } else { format!("Latest {max} entries of") },
|
|
||||||
label)
|
|
||||||
}.italic(),
|
|
||||||
vec.iter().rev().join("\n"));
|
|
||||||
} else if let Some((key, _)) = tasks.find_user(arg) {
|
} else if let Some((key, _)) = tasks.find_user(arg) {
|
||||||
let (label, mut times) = tasks.times_tracked_for(&key);
|
let (label, mut times) = tasks.times_tracked_for(&key);
|
||||||
println!("{}\n{}", label.italic(),
|
println!("{}\n{}", label.italic(), times.join("\n"));
|
||||||
times.join("\n"));
|
|
||||||
} else {
|
} else {
|
||||||
if tasks.track_from(arg) {
|
if tasks.track_from(arg) {
|
||||||
let (label, times) = tasks.times_tracked();
|
println!("{}", tasks.times_tracked(15));
|
||||||
println!("{}\n{}", label.italic(),
|
|
||||||
times.rev().take(15).collect_vec().iter().rev().join("\n"));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let (label, times) = tasks.times_tracked();
|
println!("{}", tasks.times_tracked(60));
|
||||||
println!("{}\n{}", label.italic(),
|
|
||||||
times.rev().take(80).collect_vec().iter().rev().join("\n"));
|
|
||||||
}
|
}
|
||||||
continue 'repl;
|
continue 'repl;
|
||||||
}
|
}
|
||||||
|
@ -666,9 +651,7 @@ async fn main() -> Result<()> {
|
||||||
None => tasks.move_to(None),
|
None => tasks.move_to(None),
|
||||||
Some(arg) => {
|
Some(arg) => {
|
||||||
if parse_tracking_stamp(arg).and_then(|stamp| tasks.track_at(stamp, None)).is_some() {
|
if parse_tracking_stamp(arg).and_then(|stamp| tasks.track_at(stamp, None)).is_some() {
|
||||||
let (label, times) = tasks.times_tracked();
|
println!("{}", tasks.times_tracked(15));
|
||||||
println!("{}\n{}", label.italic(),
|
|
||||||
times.rev().take(15).collect_vec().iter().rev().join("\n"));
|
|
||||||
}
|
}
|
||||||
// So the error message is not covered up
|
// So the error message is not covered up
|
||||||
continue 'repl;
|
continue 'repl;
|
||||||
|
|
23
src/tasks.rs
23
src/tasks.rs
|
@ -269,8 +269,20 @@ impl TasksRelay {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Dynamic time tracking overview for current task or current user.
|
/// Dynamic time tracking overview for current task or current user.
|
||||||
pub(crate) fn times_tracked(&self) -> (String, Box<dyn DoubleEndedIterator<Item=String> + '_>) {
|
pub(crate) fn times_tracked(&self, limit: usize) -> String {
|
||||||
self.times_tracked_with(&self.sender.pubkey())
|
let (label, times) = self.times_tracked_with(&self.sender.pubkey());
|
||||||
|
let times = times.collect_vec();
|
||||||
|
format!("{}\n{}",
|
||||||
|
if times.is_empty() {
|
||||||
|
label
|
||||||
|
} else {
|
||||||
|
format!("{}{}",
|
||||||
|
if limit > times.len() || limit == usize::MAX { "All ".to_string() }
|
||||||
|
else if limit < 20 { "Recent ".to_string() }
|
||||||
|
else { format!("Latest {limit} Entries of ") },
|
||||||
|
label)
|
||||||
|
}.italic(),
|
||||||
|
×[times.len().saturating_sub(limit)..].join("\n"))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn history_for(
|
pub(crate) fn history_for(
|
||||||
|
@ -318,6 +330,8 @@ impl TasksRelay {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Time tracked for current position or key
|
||||||
|
/// Note: reversing the iterator skips most recent timetracking stops
|
||||||
pub(crate) fn times_tracked_with(
|
pub(crate) fn times_tracked_with(
|
||||||
&self,
|
&self,
|
||||||
key: &PublicKey,
|
key: &PublicKey,
|
||||||
|
@ -1454,10 +1468,7 @@ impl Display for TasksRelay {
|
||||||
if self.tasks.children_for(self.get_position()).next().is_some() {
|
if self.tasks.children_for(self.get_position()).next().is_some() {
|
||||||
writeln!(lock, "No tasks here matching{}", self.get_prompt_suffix())?;
|
writeln!(lock, "No tasks here matching{}", self.get_prompt_suffix())?;
|
||||||
}
|
}
|
||||||
let (label, times) = self.times_tracked();
|
writeln!(lock, "{}", self.times_tracked(6))?;
|
||||||
let mut times_recent = times.rev().take(6).collect_vec();
|
|
||||||
times_recent.reverse();
|
|
||||||
writeln!(lock, "{}\n{}", format!("Recent {}", label).italic(), times_recent.join("\n"))?;
|
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -281,6 +281,20 @@ fn test_filter_or_create() {
|
||||||
assert_eq!(tasks.len(), 3);
|
assert_eq!(tasks.len(), 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_history() {
|
||||||
|
let mut tasks = stub_tasks();
|
||||||
|
let zero = EventId::all_zeros();
|
||||||
|
|
||||||
|
tasks.track_at(Timestamp::now() - 3, Some(zero));
|
||||||
|
tasks.move_to(None);
|
||||||
|
assert_eq!(tasks.times_tracked(1).len(), 121);
|
||||||
|
let all = tasks.times_tracked(10);
|
||||||
|
assert_eq!(all.len(), 202, "{}", all);
|
||||||
|
assert!(all.contains(" 0000000000000000000000000000000000000000000000000000000000000000"), "{}", all);
|
||||||
|
assert!(all.ends_with(" ---"), "{}", all);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_tracking() {
|
fn test_tracking() {
|
||||||
let mut tasks = stub_tasks();
|
let mut tasks = stub_tasks();
|
||||||
|
|
Loading…
Reference in New Issue