refactor: reformat

This commit is contained in:
xeruf 2024-07-19 21:06:03 +03:00
parent 1ea34898d1
commit 9a2f3f8794
4 changed files with 38 additions and 27 deletions

3
.gitignore vendored
View File

@ -1 +1,4 @@
/target /target
*.html
/src/bin

View File

@ -215,7 +215,8 @@ async fn repl() {
tasks.update_state("", |t| if t.pure_state() == State::Active { Some(State::Open) } else { None }); tasks.update_state("", |t| if t.pure_state() == State::Active { Some(State::Open) } else { None });
println!(); println!();
println!("Submitting created events"); println!("Submitting events");
// TODO send via message passing
let _ = CLIENT let _ = CLIENT
.batch_event( .batch_event(
tasks tasks

View File

@ -1,6 +1,6 @@
use std::fmt;
use nostr_sdk::{Event, EventId, Kind, Tag, Timestamp};
use crate::make_event; use crate::make_event;
use nostr_sdk::{Event, EventId, Kind, Tag, Timestamp};
use std::fmt;
pub(crate) struct Task { pub(crate) struct Task {
pub(crate) event: Event, pub(crate) event: Event,

View File

@ -1,8 +1,10 @@
use crate::{make_event, make_task};
use crate::task::{Task, State};
use nostr_sdk::{Event, EventId, Tag};
use std::collections::HashMap; use std::collections::HashMap;
use nostr_sdk::{Event, EventId, Tag};
use crate::make_task;
use crate::task::{State, Task};
type TaskMap = HashMap<EventId, Task>; type TaskMap = HashMap<EventId, Task>;
pub(crate) struct Tasks { pub(crate) struct Tasks {
/// The Tasks /// The Tasks
@ -38,7 +40,11 @@ impl Tasks {
/// Total time this task and its subtasks have been active /// Total time this task and its subtasks have been active
fn total_time_tracked(&self, task: &EventId) -> u64 { fn total_time_tracked(&self, task: &EventId) -> u64 {
self.tasks.get(task).map_or(0, |t| { self.tasks.get(task).map_or(0, |t| {
t.time_tracked() + t.children.iter().map(|e| self.total_time_tracked(e)).sum::<u64>() t.time_tracked()
+ t.children
.iter()
.map(|e| self.total_time_tracked(e))
.sum::<u64>()
}) })
} }
@ -54,10 +60,11 @@ impl Tasks {
self.position.map_or_else( self.position.map_or_else(
|| self.tasks.values().collect(), || self.tasks.values().collect(),
|p| { |p| {
self.tasks.get(&p).map_or(Vec::new(), |t| { self.tasks
self.collect_tasks(&t.children) .get(&p)
}) .map_or(Vec::new(), |t| self.collect_tasks(&t.children))
}) },
)
} }
pub(crate) fn print_current_tasks(&self) { pub(crate) fn print_current_tasks(&self) {