Rename all workspace packages from @paperclip/* to @paperclipai/* and the CLI binary from `paperclip` to `paperclipai` in preparation for npm publishing. Bump CLI version to 0.1.0 and add package metadata (description, keywords, license, repository, files). Update all imports, documentation, user-facing messages, and tests accordingly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
197 lines
6.4 KiB
TypeScript
197 lines
6.4 KiB
TypeScript
import { useEffect } from "react";
|
|
import { useParams } from "@/lib/router";
|
|
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query";
|
|
import { goalsApi } from "../api/goals";
|
|
import { projectsApi } from "../api/projects";
|
|
import { assetsApi } from "../api/assets";
|
|
import { usePanel } from "../context/PanelContext";
|
|
import { useCompany } from "../context/CompanyContext";
|
|
import { useDialog } from "../context/DialogContext";
|
|
import { useBreadcrumbs } from "../context/BreadcrumbContext";
|
|
import { queryKeys } from "../lib/queryKeys";
|
|
import { GoalProperties } from "../components/GoalProperties";
|
|
import { GoalTree } from "../components/GoalTree";
|
|
import { StatusBadge } from "../components/StatusBadge";
|
|
import { InlineEditor } from "../components/InlineEditor";
|
|
import { EntityRow } from "../components/EntityRow";
|
|
import { PageSkeleton } from "../components/PageSkeleton";
|
|
import { projectUrl } from "../lib/utils";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
|
|
import { Plus } from "lucide-react";
|
|
import type { Goal, Project } from "@paperclipai/shared";
|
|
|
|
export function GoalDetail() {
|
|
const { goalId } = useParams<{ goalId: string }>();
|
|
const { selectedCompanyId, setSelectedCompanyId } = useCompany();
|
|
const { openNewGoal } = useDialog();
|
|
const { openPanel, closePanel } = usePanel();
|
|
const { setBreadcrumbs } = useBreadcrumbs();
|
|
const queryClient = useQueryClient();
|
|
|
|
const {
|
|
data: goal,
|
|
isLoading,
|
|
error
|
|
} = useQuery({
|
|
queryKey: queryKeys.goals.detail(goalId!),
|
|
queryFn: () => goalsApi.get(goalId!),
|
|
enabled: !!goalId
|
|
});
|
|
const resolvedCompanyId = goal?.companyId ?? selectedCompanyId;
|
|
|
|
const { data: allGoals } = useQuery({
|
|
queryKey: queryKeys.goals.list(resolvedCompanyId!),
|
|
queryFn: () => goalsApi.list(resolvedCompanyId!),
|
|
enabled: !!resolvedCompanyId
|
|
});
|
|
|
|
const { data: allProjects } = useQuery({
|
|
queryKey: queryKeys.projects.list(resolvedCompanyId!),
|
|
queryFn: () => projectsApi.list(resolvedCompanyId!),
|
|
enabled: !!resolvedCompanyId
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (!goal?.companyId || goal.companyId === selectedCompanyId) return;
|
|
setSelectedCompanyId(goal.companyId, { source: "route_sync" });
|
|
}, [goal?.companyId, selectedCompanyId, setSelectedCompanyId]);
|
|
|
|
const updateGoal = useMutation({
|
|
mutationFn: (data: Record<string, unknown>) =>
|
|
goalsApi.update(goalId!, data),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({
|
|
queryKey: queryKeys.goals.detail(goalId!)
|
|
});
|
|
if (resolvedCompanyId) {
|
|
queryClient.invalidateQueries({
|
|
queryKey: queryKeys.goals.list(resolvedCompanyId)
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
const uploadImage = useMutation({
|
|
mutationFn: async (file: File) => {
|
|
if (!resolvedCompanyId) throw new Error("No company selected");
|
|
return assetsApi.uploadImage(
|
|
resolvedCompanyId,
|
|
file,
|
|
`goals/${goalId ?? "draft"}`
|
|
);
|
|
}
|
|
});
|
|
|
|
const childGoals = (allGoals ?? []).filter((g) => g.parentId === goalId);
|
|
const linkedProjects = (allProjects ?? []).filter((p) => {
|
|
if (!goalId) return false;
|
|
if (p.goalIds.includes(goalId)) return true;
|
|
if (p.goals.some((goalRef) => goalRef.id === goalId)) return true;
|
|
return p.goalId === goalId;
|
|
});
|
|
|
|
useEffect(() => {
|
|
setBreadcrumbs([
|
|
{ label: "Goals", href: "/goals" },
|
|
{ label: goal?.title ?? goalId ?? "Goal" }
|
|
]);
|
|
}, [setBreadcrumbs, goal, goalId]);
|
|
|
|
useEffect(() => {
|
|
if (goal) {
|
|
openPanel(
|
|
<GoalProperties
|
|
goal={goal}
|
|
onUpdate={(data) => updateGoal.mutate(data)}
|
|
/>
|
|
);
|
|
}
|
|
return () => closePanel();
|
|
}, [goal]); // eslint-disable-line react-hooks/exhaustive-deps
|
|
|
|
if (isLoading) return <PageSkeleton variant="detail" />;
|
|
if (error) return <p className="text-sm text-destructive">{error.message}</p>;
|
|
if (!goal) return null;
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="space-y-3">
|
|
<div className="flex items-center gap-2">
|
|
<span className="text-xs uppercase text-muted-foreground">
|
|
{goal.level}
|
|
</span>
|
|
<StatusBadge status={goal.status} />
|
|
</div>
|
|
|
|
<InlineEditor
|
|
value={goal.title}
|
|
onSave={(title) => updateGoal.mutate({ title })}
|
|
as="h2"
|
|
className="text-xl font-bold"
|
|
/>
|
|
|
|
<InlineEditor
|
|
value={goal.description ?? ""}
|
|
onSave={(description) => updateGoal.mutate({ description })}
|
|
as="p"
|
|
className="text-sm text-muted-foreground"
|
|
placeholder="Add a description..."
|
|
multiline
|
|
imageUploadHandler={async (file) => {
|
|
const asset = await uploadImage.mutateAsync(file);
|
|
return asset.contentPath;
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<Tabs defaultValue="children">
|
|
<TabsList>
|
|
<TabsTrigger value="children">
|
|
Sub-Goals ({childGoals.length})
|
|
</TabsTrigger>
|
|
<TabsTrigger value="projects">
|
|
Projects ({linkedProjects.length})
|
|
</TabsTrigger>
|
|
</TabsList>
|
|
|
|
<TabsContent value="children" className="mt-4 space-y-3">
|
|
<div className="flex items-center justify-start">
|
|
<Button
|
|
size="sm"
|
|
variant="outline"
|
|
onClick={() => openNewGoal({ parentId: goalId })}
|
|
>
|
|
<Plus className="h-3.5 w-3.5 mr-1.5" />
|
|
Sub Goal
|
|
</Button>
|
|
</div>
|
|
{childGoals.length === 0 ? (
|
|
<p className="text-sm text-muted-foreground">No sub-goals.</p>
|
|
) : (
|
|
<GoalTree goals={childGoals} goalLink={(g) => `/goals/${g.id}`} />
|
|
)}
|
|
</TabsContent>
|
|
|
|
<TabsContent value="projects" className="mt-4">
|
|
{linkedProjects.length === 0 ? (
|
|
<p className="text-sm text-muted-foreground">No linked projects.</p>
|
|
) : (
|
|
<div className="border border-border">
|
|
{linkedProjects.map((project) => (
|
|
<EntityRow
|
|
key={project.id}
|
|
title={project.name}
|
|
subtitle={project.description ?? undefined}
|
|
to={projectUrl(project)}
|
|
trailing={<StatusBadge status={project.status} />}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
</TabsContent>
|
|
</Tabs>
|
|
</div>
|
|
);
|
|
}
|