X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/gitweb.js?a=blobdiff_plain;f=plomtask%2Fhttp.py;h=316fd0805588a00b59dc28fbd8094fc8634dcd87;hb=f19823e9e77ae0017022dbfe63f66d2b065ba33a;hp=7e2b241aec468a8b6c29221b6f146a702b990883;hpb=23012cd370777b60a25839788d131173d2abee91;p=plomtask diff --git a/plomtask/http.py b/plomtask/http.py index 7e2b241..316fd08 100644 --- a/plomtask/http.py +++ b/plomtask/http.py @@ -127,10 +127,10 @@ class TaskHandler(BaseHTTPRequestHandler): date = self.params.get_str('date', todays_date()) top_todos = [t for t in Todo.by_date(self.conn, date) if not t.parents] - seen_todos: set[int] = set() - seen_conditions: set[int] = set() - todo_trees = [t.get_step_tree(seen_todos, seen_conditions) - for t in top_todos] + todo_trees = [t.get_undone_steps_tree() for t in top_todos] + done_trees = [] + for t in top_todos: + done_trees += t.get_done_steps_tree() condition_listings: list[ConditionListing] = [] for cond in Condition.all(self.conn): enablers = Todo.enablers_for_at(self.conn, cond, date) @@ -138,6 +138,7 @@ class TaskHandler(BaseHTTPRequestHandler): condition_listings += [ConditionListing(cond, enablers, disablers)] return {'day': Day.by_id(self.conn, date, create=True), 'todo_trees': todo_trees, + 'done_trees': done_trees, 'processes': Process.all(self.conn), 'condition_listings': condition_listings} @@ -207,11 +208,19 @@ class TaskHandler(BaseHTTPRequestHandler): todo.adopt_from(existing_todos) todo.make_missing_children(self.conn) todo.save(self.conn) + for todo_id in self.form_data.get_all_int('done'): + todo = Todo.by_id(self.conn, todo_id) + todo.is_done = True + todo.save(self.conn) return f'/day?date={date}' def do_POST_todo(self) -> str: """Update Todo and its children.""" id_ = self.params.get_int('id') + for _ in self.form_data.get_all_str('delete'): + todo = Todo .by_id(self.conn, id_) + todo.remove(self.conn) + return '/' todo = Todo.by_id(self.conn, id_) adopted_child_ids = self.form_data.get_all_int('adopt') for child in todo.children: