- Reorganize into apps/, packages/, docs/, e2e/, pocketbase/ directories - Add Dockerfiles for web, worker, and PocketBase services - Add docker-compose.yml for local orchestration - Add turbo.json for monorepo task management - Add Playwright e2e test infrastructure - Add PocketBase backend with migrations - Remove Vite/Next.js/ESLint/PostCSS config files - Update package.json with workspace dependencies - Add .env.example and .dockerignore
110 lines
3.3 KiB
TypeScript
110 lines
3.3 KiB
TypeScript
'use client';
|
|
|
|
import { useEffect, useState } from 'react';
|
|
import { CheckCircle2, Circle, ListTodo } from 'lucide-react';
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Badge } from '@/components/ui/badge';
|
|
|
|
interface Task {
|
|
id: string;
|
|
title: string;
|
|
status: string;
|
|
priority: string;
|
|
domain: string;
|
|
}
|
|
|
|
export function TodayTasksWidget() {
|
|
const [tasks, setTasks] = useState<Task[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
fetchTasks();
|
|
}, []);
|
|
|
|
async function fetchTasks() {
|
|
try {
|
|
const response = await fetch(
|
|
'/api/tasks?filter=status!%3D%22done%22&perPage=5&sort=-priority'
|
|
);
|
|
if (response.ok) {
|
|
const data = await response.json();
|
|
setTasks(data.items || []);
|
|
}
|
|
} catch (error) {
|
|
console.error('Failed to fetch tasks:', error);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}
|
|
|
|
async function toggleTask(id: string, currentStatus: string) {
|
|
const newStatus = currentStatus === 'done' ? 'todo' : 'done';
|
|
try {
|
|
await fetch(`/api/tasks/${id}`, {
|
|
method: 'PATCH',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ status: newStatus }),
|
|
});
|
|
fetchTasks();
|
|
} catch (error) {
|
|
console.error('Failed to toggle task:', error);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Card className="h-full border-0 shadow-none">
|
|
<CardHeader className="p-0 pb-3">
|
|
<div className="flex items-center justify-between">
|
|
<CardTitle className="flex items-center gap-2 text-base">
|
|
<ListTodo className="h-4 w-4" aria-hidden="true" />
|
|
Today's Tasks
|
|
</CardTitle>
|
|
<Button variant="ghost" size="sm" className="h-7 text-xs">
|
|
View all
|
|
</Button>
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent className="p-0">
|
|
{loading ? (
|
|
<p className="text-sm text-muted-foreground">Loading...</p>
|
|
) : tasks.length === 0 ? (
|
|
<p className="text-sm text-muted-foreground">No tasks for today</p>
|
|
) : (
|
|
<div className="space-y-2">
|
|
{tasks.map((task) => (
|
|
<div key={task.id} className="flex items-center gap-2">
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="h-11 w-11 shrink-0"
|
|
onClick={() => toggleTask(task.id, task.status)}
|
|
aria-label={`Mark "${task.title}" as ${task.status === 'done' ? 'incomplete' : 'complete'}`}
|
|
>
|
|
{task.status === 'done' ? (
|
|
<CheckCircle2 className="h-4 w-4 text-green-600" />
|
|
) : (
|
|
<Circle className="h-4 w-4" />
|
|
)}
|
|
</Button>
|
|
<span
|
|
className={`flex-1 text-sm ${
|
|
task.status === 'done'
|
|
? 'line-through text-muted-foreground'
|
|
: ''
|
|
}`}
|
|
>
|
|
{task.title}
|
|
</span>
|
|
<Badge variant="outline" className="text-xs">
|
|
{task.domain}
|
|
</Badge>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|