- 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
203 lines
5.9 KiB
TypeScript
203 lines
5.9 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import {
|
|
Sheet,
|
|
SheetContent,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
} from '@/components/ui/sheet';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from '@/components/ui/select';
|
|
|
|
interface Task {
|
|
id: string;
|
|
title: string;
|
|
description?: string;
|
|
status: 'todo' | 'in_progress' | 'done';
|
|
priority: 'low' | 'medium' | 'high' | 'urgent';
|
|
domain: string;
|
|
due_date?: string;
|
|
project_id?: string;
|
|
tags: string[];
|
|
}
|
|
|
|
interface TaskDetailPanelProps {
|
|
task: Task;
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
onUpdate: () => void;
|
|
}
|
|
|
|
export function TaskDetailPanel({
|
|
task,
|
|
open,
|
|
onOpenChange,
|
|
onUpdate,
|
|
}: TaskDetailPanelProps) {
|
|
const [title, setTitle] = useState(task.title);
|
|
const [description, setDescription] = useState(task.description || '');
|
|
const [status, setStatus] = useState(task.status);
|
|
const [priority, setPriority] = useState(task.priority);
|
|
const [domain, setDomain] = useState(task.domain);
|
|
const [dueDate, setDueDate] = useState(task.due_date || '');
|
|
const [saving, setSaving] = useState(false);
|
|
|
|
async function handleSave() {
|
|
setSaving(true);
|
|
try {
|
|
await fetch(`/api/tasks/${task.id}`, {
|
|
method: 'PATCH',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({
|
|
title,
|
|
description,
|
|
status,
|
|
priority,
|
|
domain,
|
|
due_date: dueDate || null,
|
|
}),
|
|
});
|
|
onUpdate();
|
|
onOpenChange(false);
|
|
} catch (error) {
|
|
console.error('Failed to update task:', error);
|
|
} finally {
|
|
setSaving(false);
|
|
}
|
|
}
|
|
|
|
async function handleDelete() {
|
|
if (!confirm('Are you sure you want to delete this task?')) return;
|
|
|
|
try {
|
|
await fetch(`/api/tasks/${task.id}`, { method: 'DELETE' });
|
|
onUpdate();
|
|
onOpenChange(false);
|
|
} catch (error) {
|
|
console.error('Failed to delete task:', error);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Sheet open={open} onOpenChange={onOpenChange}>
|
|
<SheetContent className="w-[500px] sm:w-[600px] overflow-y-auto">
|
|
<SheetHeader>
|
|
<SheetTitle>Task Details</SheetTitle>
|
|
</SheetHeader>
|
|
|
|
<div className="mt-6 space-y-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="title">Title</Label>
|
|
<Input
|
|
id="title"
|
|
value={title}
|
|
onChange={(e) => setTitle(e.target.value)}
|
|
placeholder="Task title"
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="description">Description</Label>
|
|
<Textarea
|
|
id="description"
|
|
value={description}
|
|
onChange={(e) => setDescription(e.target.value)}
|
|
placeholder="Add a description..."
|
|
rows={4}
|
|
/>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="task-status">Status</Label>
|
|
<Select
|
|
value={status}
|
|
onValueChange={(v) => setStatus(v as Task['status'])}
|
|
>
|
|
<SelectTrigger id="task-status">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="todo">To Do</SelectItem>
|
|
<SelectItem value="in_progress">In Progress</SelectItem>
|
|
<SelectItem value="done">Done</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="task-priority">Priority</Label>
|
|
<Select
|
|
value={priority}
|
|
onValueChange={(v) => setPriority(v as Task['priority'])}
|
|
>
|
|
<SelectTrigger id="task-priority">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="low">Low</SelectItem>
|
|
<SelectItem value="medium">Medium</SelectItem>
|
|
<SelectItem value="high">High</SelectItem>
|
|
<SelectItem value="urgent">Urgent</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="task-domain">Domain</Label>
|
|
<Select value={domain} onValueChange={setDomain}>
|
|
<SelectTrigger id="task-domain">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="personal">Personal</SelectItem>
|
|
<SelectItem value="work">Work</SelectItem>
|
|
<SelectItem value="ots">OTS</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="task-due-date">Due Date</Label>
|
|
<Input
|
|
id="task-due-date"
|
|
type="date"
|
|
value={dueDate}
|
|
onChange={(e) => setDueDate(e.target.value)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex gap-2 pt-4">
|
|
<Button onClick={handleSave} disabled={saving}>
|
|
{saving ? 'Saving...' : 'Save Changes'}
|
|
</Button>
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
variant="destructive"
|
|
onClick={handleDelete}
|
|
className="ml-auto"
|
|
>
|
|
Delete
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</SheetContent>
|
|
</Sheet>
|
|
);
|
|
}
|