mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 21:33:41 +02:00
Upgrade /my-issues from a simple accordion to a full-featured view matching /issues — kanban board, list view, status/priority filtering, sorting, and display settings, scoped to the user's own issues. Key changes: - Extract view store factory (createIssueViewStore) using zustand v5 vanilla createStore + React Context for shared component reuse - Create ViewStoreProvider + useViewStore/useViewStoreApi hooks - Decouple BoardView, BoardColumn, BoardCard, ListView from global useIssueViewStore — they now read from context - New independent persisted store for /my-issues (multica_my_issues_view) - Simplified MyIssuesHeader (no assignee/creator filters) - Pre-filter logic: assigned to me ∪ my agents ∪ created by me - Generalize workspace sync to clear filters on all registered stores - Fix existing debt: text-[10px] → text-xs, w-44 → w-auto, reduce unnecessary selector subscriptions in both headers Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
147 lines
5.8 KiB
TypeScript
147 lines
5.8 KiB
TypeScript
"use client";
|
|
|
|
import { useMemo } from "react";
|
|
import { ChevronRight, Plus } from "lucide-react";
|
|
import { Accordion } from "@base-ui/react/accordion";
|
|
import { Tooltip, TooltipTrigger, TooltipContent } from "@/components/ui/tooltip";
|
|
import { Button } from "@/components/ui/button";
|
|
import type { Issue, IssueStatus } from "@/shared/types";
|
|
import { STATUS_CONFIG } from "@/features/issues/config";
|
|
import { useModalStore } from "@/features/modals";
|
|
import { useViewStore } from "@/features/issues/stores/view-store-context";
|
|
import { useIssueSelectionStore } from "@/features/issues/stores/selection-store";
|
|
import { sortIssues } from "@/features/issues/utils/sort";
|
|
import { StatusIcon } from "./status-icon";
|
|
import { ListRow } from "./list-row";
|
|
|
|
export function ListView({
|
|
issues,
|
|
visibleStatuses,
|
|
}: {
|
|
issues: Issue[];
|
|
visibleStatuses: IssueStatus[];
|
|
}) {
|
|
const sortBy = useViewStore((s) => s.sortBy);
|
|
const sortDirection = useViewStore((s) => s.sortDirection);
|
|
const listCollapsedStatuses = useViewStore(
|
|
(s) => s.listCollapsedStatuses
|
|
);
|
|
const toggleListCollapsed = useViewStore(
|
|
(s) => s.toggleListCollapsed
|
|
);
|
|
const selectedIds = useIssueSelectionStore((s) => s.selectedIds);
|
|
const select = useIssueSelectionStore((s) => s.select);
|
|
const deselect = useIssueSelectionStore((s) => s.deselect);
|
|
|
|
const issuesByStatus = useMemo(() => {
|
|
const map = new Map<IssueStatus, Issue[]>();
|
|
for (const status of visibleStatuses) {
|
|
const filtered = issues.filter((i) => i.status === status);
|
|
map.set(status, sortIssues(filtered, sortBy, sortDirection));
|
|
}
|
|
return map;
|
|
}, [issues, visibleStatuses, sortBy, sortDirection]);
|
|
|
|
const expandedStatuses = useMemo(
|
|
() =>
|
|
visibleStatuses.filter(
|
|
(s) => !listCollapsedStatuses.includes(s)
|
|
),
|
|
[visibleStatuses, listCollapsedStatuses]
|
|
);
|
|
|
|
return (
|
|
<div className="flex-1 min-h-0 overflow-y-auto p-2">
|
|
<Accordion.Root
|
|
multiple
|
|
className="space-y-1"
|
|
value={expandedStatuses}
|
|
onValueChange={(value: string[]) => {
|
|
for (const status of visibleStatuses) {
|
|
const wasExpanded = expandedStatuses.includes(status);
|
|
const isExpanded = value.includes(status);
|
|
if (wasExpanded !== isExpanded) {
|
|
toggleListCollapsed(status as IssueStatus);
|
|
}
|
|
}
|
|
}}
|
|
>
|
|
{visibleStatuses.map((status) => {
|
|
const cfg = STATUS_CONFIG[status];
|
|
const statusIssues = issuesByStatus.get(status) ?? [];
|
|
const statusIssueIds = statusIssues.map((i) => i.id);
|
|
const selectedCount = statusIssueIds.filter((id) => selectedIds.has(id)).length;
|
|
const allSelected = statusIssues.length > 0 && selectedCount === statusIssues.length;
|
|
const someSelected = selectedCount > 0;
|
|
|
|
return (
|
|
<Accordion.Item key={status} value={status}>
|
|
<Accordion.Header className="group/header flex h-10 items-center rounded-lg bg-muted/40 transition-colors hover:bg-accent/30">
|
|
<div className="pl-3 flex items-center">
|
|
<input
|
|
type="checkbox"
|
|
checked={allSelected}
|
|
ref={(el) => {
|
|
if (el) el.indeterminate = someSelected && !allSelected;
|
|
}}
|
|
onChange={() => {
|
|
if (allSelected) {
|
|
deselect(statusIssueIds);
|
|
} else {
|
|
select(statusIssueIds);
|
|
}
|
|
}}
|
|
className="cursor-pointer accent-primary"
|
|
/>
|
|
</div>
|
|
<Accordion.Trigger className="group/trigger flex flex-1 items-center gap-2 px-2 h-full text-left outline-none">
|
|
<ChevronRight className="size-3.5 shrink-0 text-muted-foreground transition-transform group-aria-expanded/trigger:rotate-90" />
|
|
<span className={`inline-flex items-center gap-1.5 rounded px-2 py-0.5 text-xs font-semibold ${cfg.badgeBg} ${cfg.badgeText}`}>
|
|
<StatusIcon status={status} className="h-3 w-3" inheritColor />
|
|
{cfg.label}
|
|
</span>
|
|
<span className="text-xs text-muted-foreground">
|
|
{statusIssues.length}
|
|
</span>
|
|
</Accordion.Trigger>
|
|
<div className="pr-2">
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-sm"
|
|
className="rounded-full text-muted-foreground opacity-0 group-hover/header:opacity-100 transition-opacity"
|
|
onClick={() =>
|
|
useModalStore
|
|
.getState()
|
|
.open("create-issue", { status })
|
|
}
|
|
/>
|
|
}
|
|
>
|
|
<Plus className="size-3.5" />
|
|
</TooltipTrigger>
|
|
<TooltipContent>Add issue</TooltipContent>
|
|
</Tooltip>
|
|
</div>
|
|
</Accordion.Header>
|
|
<Accordion.Panel className="pt-1">
|
|
{statusIssues.length > 0 ? (
|
|
statusIssues.map((issue) => (
|
|
<ListRow key={issue.id} issue={issue} />
|
|
))
|
|
) : (
|
|
<p className="py-6 text-center text-xs text-muted-foreground">
|
|
No issues
|
|
</p>
|
|
)}
|
|
</Accordion.Panel>
|
|
</Accordion.Item>
|
|
);
|
|
})}
|
|
</Accordion.Root>
|
|
</div>
|
|
);
|
|
}
|