Replace custom useApi/useAgents hooks with @tanstack/react-query. Add LiveUpdatesProvider for WebSocket-driven cache invalidation. Add queryKeys module for centralized cache key management. Rework all pages and dialogs to use React Query mutations and queries. Improve CompanyContext with query-based data fetching. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
195 lines
6.9 KiB
TypeScript
195 lines
6.9 KiB
TypeScript
import { useState, useEffect } from "react";
|
|
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
|
import { useCompany } from "../context/CompanyContext";
|
|
import { useBreadcrumbs } from "../context/BreadcrumbContext";
|
|
import { companiesApi } from "../api/companies";
|
|
import { queryKeys } from "../lib/queryKeys";
|
|
import { formatCents } from "../lib/utils";
|
|
import { Card, CardContent } from "@/components/ui/card";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Pencil, Check, X } from "lucide-react";
|
|
|
|
export function Companies() {
|
|
const {
|
|
companies,
|
|
selectedCompanyId,
|
|
setSelectedCompanyId,
|
|
createCompany,
|
|
loading,
|
|
error,
|
|
} = useCompany();
|
|
const { setBreadcrumbs } = useBreadcrumbs();
|
|
const queryClient = useQueryClient();
|
|
const [name, setName] = useState("");
|
|
const [description, setDescription] = useState("");
|
|
const [budget, setBudget] = useState("0");
|
|
const [submitting, setSubmitting] = useState(false);
|
|
const [submitError, setSubmitError] = useState<string | null>(null);
|
|
|
|
// Inline edit state
|
|
const [editingId, setEditingId] = useState<string | null>(null);
|
|
const [editName, setEditName] = useState("");
|
|
|
|
const editMutation = useMutation({
|
|
mutationFn: ({ id, newName }: { id: string; newName: string }) =>
|
|
companiesApi.update(id, { name: newName }),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: queryKeys.companies.all });
|
|
setEditingId(null);
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
setBreadcrumbs([{ label: "Companies" }]);
|
|
}, [setBreadcrumbs]);
|
|
|
|
async function onSubmit(e: React.FormEvent) {
|
|
e.preventDefault();
|
|
if (!name.trim()) return;
|
|
|
|
setSubmitting(true);
|
|
setSubmitError(null);
|
|
try {
|
|
await createCompany({
|
|
name: name.trim(),
|
|
description: description.trim() || null,
|
|
budgetMonthlyCents: Number(budget) || 0,
|
|
});
|
|
setName("");
|
|
setDescription("");
|
|
setBudget("0");
|
|
} catch (err) {
|
|
setSubmitError(err instanceof Error ? err.message : "Failed to create company");
|
|
} finally {
|
|
setSubmitting(false);
|
|
}
|
|
}
|
|
|
|
function startEdit(companyId: string, currentName: string) {
|
|
setEditingId(companyId);
|
|
setEditName(currentName);
|
|
}
|
|
|
|
function saveEdit() {
|
|
if (!editingId || !editName.trim()) return;
|
|
editMutation.mutate({ id: editingId, newName: editName.trim() });
|
|
}
|
|
|
|
function cancelEdit() {
|
|
setEditingId(null);
|
|
setEditName("");
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h2 className="text-lg font-semibold">Companies</h2>
|
|
<p className="text-sm text-muted-foreground">Create and manage your companies.</p>
|
|
</div>
|
|
|
|
<Card>
|
|
<CardContent className="p-4 space-y-3">
|
|
<h3 className="text-sm font-semibold">Create Company</h3>
|
|
<form onSubmit={onSubmit} className="space-y-3">
|
|
<div className="grid md:grid-cols-3 gap-3">
|
|
<Input
|
|
placeholder="Company name"
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
/>
|
|
<Input
|
|
placeholder="Description"
|
|
value={description}
|
|
onChange={(e) => setDescription(e.target.value)}
|
|
/>
|
|
<Input
|
|
placeholder="Monthly budget (cents)"
|
|
value={budget}
|
|
onChange={(e) => setBudget(e.target.value.replace(/[^0-9]/g, ""))}
|
|
/>
|
|
</div>
|
|
{submitError && <p className="text-sm text-destructive">{submitError}</p>}
|
|
<Button type="submit" size="sm" disabled={submitting}>
|
|
{submitting ? "Creating..." : "Create Company"}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<div className="h-6">
|
|
{loading && <p className="text-sm text-muted-foreground">Loading companies...</p>}
|
|
{error && <p className="text-sm text-destructive">{error.message}</p>}
|
|
</div>
|
|
|
|
<div className="grid gap-3">
|
|
{companies.map((company) => {
|
|
const selected = company.id === selectedCompanyId;
|
|
const isEditing = editingId === company.id;
|
|
|
|
return (
|
|
<button
|
|
key={company.id}
|
|
onClick={() => setSelectedCompanyId(company.id)}
|
|
className={`group text-left bg-card border rounded-lg p-4 transition-colors ${
|
|
selected ? "border-primary ring-1 ring-primary" : "border-border hover:border-muted-foreground/30"
|
|
}`}
|
|
>
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex-1 min-w-0">
|
|
{isEditing ? (
|
|
<div className="flex items-center gap-2" onClick={(e) => e.stopPropagation()}>
|
|
<Input
|
|
value={editName}
|
|
onChange={(e) => setEditName(e.target.value)}
|
|
className="h-7 text-sm"
|
|
autoFocus
|
|
onKeyDown={(e) => {
|
|
if (e.key === "Enter") saveEdit();
|
|
if (e.key === "Escape") cancelEdit();
|
|
}}
|
|
/>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-xs"
|
|
onClick={saveEdit}
|
|
disabled={editMutation.isPending}
|
|
>
|
|
<Check className="h-3.5 w-3.5 text-green-500" />
|
|
</Button>
|
|
<Button variant="ghost" size="icon-xs" onClick={cancelEdit}>
|
|
<X className="h-3.5 w-3.5 text-muted-foreground" />
|
|
</Button>
|
|
</div>
|
|
) : (
|
|
<div className="flex items-center gap-2">
|
|
<h3 className="font-semibold">{company.name}</h3>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-xs"
|
|
className="text-muted-foreground opacity-0 group-hover:opacity-100"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
startEdit(company.id, company.name);
|
|
}}
|
|
>
|
|
<Pencil className="h-3 w-3" />
|
|
</Button>
|
|
</div>
|
|
)}
|
|
{company.description && !isEditing && (
|
|
<p className="text-sm text-muted-foreground mt-1">{company.description}</p>
|
|
)}
|
|
</div>
|
|
<div className="text-sm text-muted-foreground">
|
|
{formatCents(company.spentMonthlyCents)} / {formatCents(company.budgetMonthlyCents)}
|
|
</div>
|
|
</div>
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|