Spaces:
Sleeping
Sleeping
File size: 1,027 Bytes
7952f32 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | """In-memory task storage."""
from __future__ import annotations
from typing import Optional
from graphforge.sample_repos.task_manager.models import Task
class TaskStore:
"""Simple in-memory list-backed store for Task objects."""
def __init__(self) -> None:
self._tasks: list[Task] = []
def add(self, task: Task) -> None:
"""Append task to the store."""
self._tasks.append(task)
def all(self) -> list[Task]:
"""Return all tasks."""
return list(self._tasks)
def find_by_title(self, title: str) -> Optional[Task]:
"""Return the first task whose title matches, or None."""
for t in self._tasks:
if t.title == title:
return t
return None
def find_done(self) -> list[Task]:
"""Return all completed tasks."""
return [t for t in self._tasks if t.done]
def find_pending(self) -> list[Task]:
"""Return all incomplete tasks."""
return [t for t in self._tasks if not t.done]
|