mirror of
https://github.com/multica-ai/multica.git
synced 2026-08-02 10:05:41 +02:00
* MUL-3903 refactor project issue surface state Co-authored-by: multica-agent <github@multica.ai> * Refactor project issue surface ownership Co-authored-by: multica-agent <github@multica.ai> * Extract shared issue surface entrypoints Co-authored-by: multica-agent <github@multica.ai> * Fix issue surface create defaults and selection reset Co-authored-by: multica-agent <github@multica.ai> * test(editor): add missing AbortSignal to suggestion items() calls The suggestion items() contract gained a required signal param; the mention/slash test call sites were never updated, breaking pnpm typecheck for @multica/views. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(issues): server-side assignee_types filter on ListIssues ListGroupedIssues has taken assignee_types since squads shipped, but ListIssues never did — so the workspace Members/Agents tabs had to fetch the unfiltered workspace list and post-filter loaded pages client-side, which made column totals and load-more pagination reflect the unfiltered counts. Add the same parse + WHERE clause to ListIssues (count query shares the WHERE, so totals agree), thread the param through the TS client, and widen MyIssuesFilter so scoped list caches can carry it. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * refactor(issues): route issue cache writes through a membership-aware coordinator useUpdateIssue, useBatchUpdateIssues, and the WS issue:updated handler each maintained their own similar-but-diverging patch/invalidate rules. Consolidate them into cache-coordinator.ts (applyIssueChange / rollbackIssueChange / invalidateIssueDerivatives) so local writes and remote echoes follow one rules table by construction. The coordinator is membership-aware via surface/membership.ts (true | false | unknown against each list cache's own filter contract): - a change that moves an issue off a filtered surface removes the card surgically (bucket total decremented) — fixes assignee changes leaving stale cards on My Assigned with no local safety net (previously only the WS echo recovered it), and replaces the blanket invalidate-myAll net for project moves (MUL-3669) with per-key precision - possible entry into a loaded list marks that key stale — never hard-insert; page/slot is server knowledge - stale keys flush on settle for mutations (a mid-flight refetch would stomp the optimistic state) and immediately for WS - batch updates now patch detail + inbox like single updates; the off-screen bucket-count recovery previously exclusive to the WS path now covers local mutations too Preserved invariants: synchronous optimistic patches (dnd-kit), MUL-3375 control-field stripping, and no refetch of surgically reconciled lists (the drag-flicker fix). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * refactor(issues): resolve surfaces via core query plan/repository with window-keyed remount Read-path convergence and the loading/empty semantics that fall out of it: - scope -> API params moves from scope.ts helpers into surface/query-plan.ts; workspace members/agents become server-filtered scoped plans (assignee_types) and the client postFilter machinery is deleted — tab counts and load-more are now exact - query selection moves behind surface/repository.ts; the views data hook no longer branches on workspace-vs-scoped plumbing - IssueSurfaceContent remounts on data-window change (wsId + scope): keepPreviousData placeholders keep sort/filter changes flicker-free within one window but must never let project A's (or workspace A's) cards impersonate B's with no loading state — cold window shows the skeleton, warm window hits cache instantly - isEmpty is only asserted from full-window data; the gantt scheduled-only projection can't prove the window is empty, so GanttView's own "no scheduled issues" empty state renders instead of the generic create-issue one - per-card project lookups hoist into a surface-level projectMap (drops a per-card useQuery), create-defaults typing tightens to IssueCreateDefaults Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * perf(issues): count-only arithmetic for off-window status/membership changes An issue beyond a list's loaded page window used to force a full first-page refetch just to fix two column counts. When the change is CERTAIN (base entity known, membership definitive) the coordinator now does the arithmetic locally: - stayed a member + status changed: move one unit of total between the two buckets (loaded arrays untouched; hasMore stays consistent) - left the list (reassigned / re-projected): old status bucket total -1 - member-to-member reassignment: counts unaffected, not even a stale key Entering a list and any uncertainty (no base, unknown membership) still refetch — the right page/slot is server knowledge. Branches on membership OUTCOMES, not on which field changed, so future dimensions (team) join automatically. Biggest win is the WS path: agents flipping off-screen statuses no longer trigger refetch storms. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(issues): deferred view-refresh indicator during placeholder revalidation Sort/date changes (and any grouped-board filter change) revalidate behind the previous snapshot — correct, but on a slow network the click felt dead: content stays put and isLoading never fires. Surface the state as isRefreshing (isPlaceholderData of the active query) and render a shared ViewRefreshIndicator in every issues header: a fixed-width slot (zero layout shift) whose spinner fades in after 300ms, so sub-second responses show nothing (NN/g) while slow ones get a working signal. Bound to the revalidation STATE, not to any particular control — any current or future server-side view change lights it automatically. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: multica-agent <github@multica.ai> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
954 lines
29 KiB
TypeScript
954 lines
29 KiB
TypeScript
/**
|
|
* @vitest-environment jsdom
|
|
*/
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { act, renderHook, waitFor } from "@testing-library/react";
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
import type { ReactNode } from "react";
|
|
|
|
import { setApiInstance } from "../api";
|
|
import type { ApiClient } from "../api/client";
|
|
import {
|
|
useBatchUpdateIssues,
|
|
useLoadMoreByAssigneeGroup,
|
|
useLoadMoreByStatus,
|
|
useResolveComment,
|
|
useUpdateIssue,
|
|
} from "./mutations";
|
|
import {
|
|
issueKeys,
|
|
type IssueSortParam,
|
|
} from "./queries";
|
|
import { inboxKeys } from "../inbox/queries";
|
|
import type {
|
|
GroupedIssuesResponse,
|
|
InboxItem,
|
|
Issue,
|
|
ListIssuesCache,
|
|
ListIssuesParams,
|
|
ListGroupedIssuesParams,
|
|
ListIssuesResponse,
|
|
TimelineEntry,
|
|
} from "../types";
|
|
|
|
vi.mock("../hooks", () => ({
|
|
useWorkspaceId: () => "ws-1",
|
|
}));
|
|
|
|
const WS_ID = "ws-1";
|
|
|
|
function makeIssue(idx: number, overrides: Partial<Issue> = {}): Issue {
|
|
return {
|
|
id: `issue-${idx}`,
|
|
workspace_id: WS_ID,
|
|
number: idx,
|
|
identifier: `MUL-${idx}`,
|
|
title: `Issue ${idx}`,
|
|
description: null,
|
|
status: "todo",
|
|
priority: "none",
|
|
assignee_type: null,
|
|
assignee_id: null,
|
|
creator_type: "member",
|
|
creator_id: "user-1",
|
|
parent_issue_id: null,
|
|
project_id: null,
|
|
position: idx,
|
|
stage: null,
|
|
start_date: null,
|
|
due_date: null,
|
|
labels: [],
|
|
metadata: {},
|
|
created_at: "2025-01-01T00:00:00Z",
|
|
updated_at: "2025-01-01T00:00:00Z",
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
function makeInboxItem(
|
|
id: string,
|
|
issueId: string,
|
|
overrides: Partial<InboxItem> = {},
|
|
): InboxItem {
|
|
return {
|
|
id,
|
|
workspace_id: WS_ID,
|
|
recipient_type: "member",
|
|
recipient_id: "user-1",
|
|
actor_type: "member",
|
|
actor_id: "user-2",
|
|
type: "status_changed",
|
|
severity: "info",
|
|
issue_id: issueId,
|
|
title: `Inbox ${id}`,
|
|
body: null,
|
|
issue_status: "todo",
|
|
read: false,
|
|
archived: false,
|
|
created_at: "2025-01-01T00:00:00Z",
|
|
details: null,
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
function createWrapper(qc: QueryClient) {
|
|
return function Wrapper({ children }: { children: ReactNode }) {
|
|
return <QueryClientProvider client={qc}>{children}</QueryClientProvider>;
|
|
};
|
|
}
|
|
|
|
describe("useLoadMoreByStatus", () => {
|
|
let qc: QueryClient;
|
|
let listIssues: ReturnType<typeof vi.fn<(p?: ListIssuesParams) => Promise<ListIssuesResponse>>>;
|
|
|
|
beforeEach(() => {
|
|
qc = new QueryClient({ defaultOptions: { queries: { retry: false } } });
|
|
listIssues = vi.fn();
|
|
setApiInstance({ listIssues } as unknown as ApiClient);
|
|
});
|
|
|
|
afterEach(() => {
|
|
qc.clear();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("targets the sorted cache key and forwards sort to the API", async () => {
|
|
const sort: IssueSortParam = { sort_by: "priority", sort_direction: "desc" };
|
|
const activeKey = issueKeys.listSorted(WS_ID, sort);
|
|
const seed: ListIssuesCache = {
|
|
byStatus: {
|
|
todo: { issues: [makeIssue(1)], total: 3 },
|
|
},
|
|
};
|
|
qc.setQueryData<ListIssuesCache>(activeKey, seed);
|
|
|
|
listIssues.mockResolvedValue({
|
|
issues: [makeIssue(2), makeIssue(3)],
|
|
total: 3,
|
|
});
|
|
|
|
const { result } = renderHook(
|
|
() => useLoadMoreByStatus("todo", undefined, sort),
|
|
{ wrapper: createWrapper(qc) },
|
|
);
|
|
|
|
expect(result.current.hasMore).toBe(true);
|
|
expect(result.current.total).toBe(3);
|
|
|
|
await act(async () => {
|
|
await result.current.loadMore();
|
|
});
|
|
|
|
expect(listIssues).toHaveBeenCalledWith({
|
|
status: "todo",
|
|
limit: 50,
|
|
offset: 1,
|
|
sort_by: "priority",
|
|
sort_direction: "desc",
|
|
});
|
|
|
|
const updated = qc.getQueryData<ListIssuesCache>(activeKey);
|
|
expect(updated?.byStatus.todo?.issues).toHaveLength(3);
|
|
expect(updated?.byStatus.todo?.issues.map((i) => i.id)).toEqual([
|
|
"issue-1",
|
|
"issue-2",
|
|
"issue-3",
|
|
]);
|
|
});
|
|
|
|
it("ignores a stale cache entry under a different sort", async () => {
|
|
// Stale entry from a previous sort lingers (kept by gcTime / keepPreviousData).
|
|
const staleSort: IssueSortParam = { sort_by: "priority", sort_direction: "desc" };
|
|
qc.setQueryData<ListIssuesCache>(issueKeys.listSorted(WS_ID, staleSort), {
|
|
byStatus: { todo: { issues: [makeIssue(99)], total: 99 } },
|
|
});
|
|
|
|
// The active sort cache has its own bucket — load-more must target THIS one.
|
|
const activeSort: IssueSortParam = { sort_by: "position", sort_direction: undefined };
|
|
const activeKey = issueKeys.listSorted(WS_ID, activeSort);
|
|
qc.setQueryData<ListIssuesCache>(activeKey, {
|
|
byStatus: { todo: { issues: [makeIssue(1)], total: 2 } },
|
|
});
|
|
|
|
listIssues.mockResolvedValue({
|
|
issues: [makeIssue(2)],
|
|
total: 2,
|
|
});
|
|
|
|
const { result } = renderHook(
|
|
() => useLoadMoreByStatus("todo", undefined, activeSort),
|
|
{ wrapper: createWrapper(qc) },
|
|
);
|
|
|
|
// total derives from the active key, not the stale one.
|
|
expect(result.current.total).toBe(2);
|
|
|
|
await act(async () => {
|
|
await result.current.loadMore();
|
|
});
|
|
|
|
expect(listIssues).toHaveBeenCalledWith(
|
|
expect.objectContaining({ offset: 1, sort_by: "position" }),
|
|
);
|
|
|
|
const active = qc.getQueryData<ListIssuesCache>(activeKey);
|
|
expect(active?.byStatus.todo?.issues.map((i) => i.id)).toEqual([
|
|
"issue-1",
|
|
"issue-2",
|
|
]);
|
|
|
|
// Stale cache is untouched.
|
|
const stale = qc.getQueryData<ListIssuesCache>(issueKeys.listSorted(WS_ID, staleSort));
|
|
expect(stale?.byStatus.todo?.issues.map((i) => i.id)).toEqual(["issue-99"]);
|
|
});
|
|
|
|
it("targets the myList scoped cache when myIssues is provided", async () => {
|
|
const sort: IssueSortParam = { sort_by: "title", sort_direction: "asc" };
|
|
const myIssues = { scope: "assigned", filter: { assignee_id: "user-1" } };
|
|
const activeKey = issueKeys.myListSorted(WS_ID, myIssues.scope, myIssues.filter, sort);
|
|
qc.setQueryData<ListIssuesCache>(activeKey, {
|
|
byStatus: { in_progress: { issues: [makeIssue(1, { status: "in_progress" })], total: 2 } },
|
|
});
|
|
|
|
listIssues.mockResolvedValue({
|
|
issues: [makeIssue(2, { status: "in_progress" })],
|
|
total: 2,
|
|
});
|
|
|
|
const { result } = renderHook(
|
|
() => useLoadMoreByStatus("in_progress", myIssues, sort),
|
|
{ wrapper: createWrapper(qc) },
|
|
);
|
|
|
|
await act(async () => {
|
|
await result.current.loadMore();
|
|
});
|
|
|
|
expect(listIssues).toHaveBeenCalledWith({
|
|
status: "in_progress",
|
|
limit: 50,
|
|
offset: 1,
|
|
sort_by: "title",
|
|
sort_direction: "asc",
|
|
assignee_id: "user-1",
|
|
});
|
|
|
|
const updated = qc.getQueryData<ListIssuesCache>(activeKey);
|
|
expect(updated?.byStatus.in_progress?.issues).toHaveLength(2);
|
|
});
|
|
|
|
it("targets the project surface cache when myIssues uses a project scope key", async () => {
|
|
const sort: IssueSortParam = { sort_by: "position", sort_direction: undefined };
|
|
const myIssues = { scope: "project:p1", filter: { project_id: "p1" } };
|
|
const activeKey = issueKeys.myListSorted(WS_ID, myIssues.scope, myIssues.filter, sort);
|
|
qc.setQueryData<ListIssuesCache>(activeKey, {
|
|
byStatus: { todo: { issues: [makeIssue(1, { project_id: "p1" })], total: 2 } },
|
|
});
|
|
|
|
listIssues.mockResolvedValue({
|
|
issues: [makeIssue(2, { project_id: "p1" })],
|
|
total: 2,
|
|
});
|
|
|
|
const { result } = renderHook(
|
|
() => useLoadMoreByStatus("todo", myIssues, sort),
|
|
{ wrapper: createWrapper(qc) },
|
|
);
|
|
|
|
await act(async () => {
|
|
await result.current.loadMore();
|
|
});
|
|
|
|
expect(listIssues).toHaveBeenCalledWith({
|
|
status: "todo",
|
|
limit: 50,
|
|
offset: 1,
|
|
sort_by: "position",
|
|
sort_direction: undefined,
|
|
project_id: "p1",
|
|
});
|
|
|
|
const updated = qc.getQueryData<ListIssuesCache>(activeKey);
|
|
expect(updated?.byStatus.todo?.issues.map((i) => i.id)).toEqual([
|
|
"issue-1",
|
|
"issue-2",
|
|
]);
|
|
});
|
|
|
|
it("works with no sort (matches the {} key used by sort-less callers)", async () => {
|
|
const myIssues = { scope: "actor", filter: { assignee_id: "user-2" } };
|
|
const activeKey = issueKeys.myListSorted(WS_ID, myIssues.scope, myIssues.filter, undefined);
|
|
qc.setQueryData<ListIssuesCache>(activeKey, {
|
|
byStatus: { todo: { issues: [makeIssue(1)], total: 2 } },
|
|
});
|
|
|
|
listIssues.mockResolvedValue({ issues: [makeIssue(2)], total: 2 });
|
|
|
|
const { result } = renderHook(
|
|
() => useLoadMoreByStatus("todo", myIssues),
|
|
{ wrapper: createWrapper(qc) },
|
|
);
|
|
|
|
expect(result.current.total).toBe(2);
|
|
expect(result.current.hasMore).toBe(true);
|
|
|
|
await act(async () => {
|
|
await result.current.loadMore();
|
|
});
|
|
|
|
const updated = qc.getQueryData<ListIssuesCache>(activeKey);
|
|
expect(updated?.byStatus.todo?.issues).toHaveLength(2);
|
|
});
|
|
});
|
|
|
|
describe("useLoadMoreByAssigneeGroup", () => {
|
|
let qc: QueryClient;
|
|
let listGroupedIssues: ReturnType<
|
|
typeof vi.fn<(p: ListGroupedIssuesParams) => Promise<GroupedIssuesResponse>>
|
|
>;
|
|
|
|
beforeEach(() => {
|
|
qc = new QueryClient({ defaultOptions: { queries: { retry: false } } });
|
|
listGroupedIssues = vi.fn();
|
|
setApiInstance({ listGroupedIssues } as unknown as ApiClient);
|
|
});
|
|
|
|
afterEach(() => {
|
|
qc.clear();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("forwards sort to the grouped API and appends into the right group", async () => {
|
|
const sort: IssueSortParam = { sort_by: "priority", sort_direction: "desc" };
|
|
const queryKey = ["custom", "assignee-groups", "ws-1"] as const;
|
|
const seed: GroupedIssuesResponse = {
|
|
groups: [
|
|
{
|
|
id: "assignee:member:user-1",
|
|
assignee_type: "member",
|
|
assignee_id: "user-1",
|
|
issues: [makeIssue(1, { assignee_type: "member", assignee_id: "user-1" })],
|
|
total: 2,
|
|
},
|
|
],
|
|
};
|
|
qc.setQueryData<GroupedIssuesResponse>(queryKey, seed);
|
|
|
|
listGroupedIssues.mockResolvedValue({
|
|
groups: [
|
|
{
|
|
id: "assignee:member:user-1",
|
|
assignee_type: "member",
|
|
assignee_id: "user-1",
|
|
issues: [makeIssue(2, { assignee_type: "member", assignee_id: "user-1" })],
|
|
total: 2,
|
|
},
|
|
],
|
|
});
|
|
|
|
const { result } = renderHook(
|
|
() =>
|
|
useLoadMoreByAssigneeGroup(
|
|
{
|
|
id: "assignee:member:user-1",
|
|
assignee_type: "member",
|
|
assignee_id: "user-1",
|
|
},
|
|
queryKey,
|
|
{ statuses: ["todo"] },
|
|
sort,
|
|
),
|
|
{ wrapper: createWrapper(qc) },
|
|
);
|
|
|
|
expect(result.current.hasMore).toBe(true);
|
|
expect(result.current.total).toBe(2);
|
|
|
|
await act(async () => {
|
|
await result.current.loadMore();
|
|
});
|
|
|
|
expect(listGroupedIssues).toHaveBeenCalledWith({
|
|
group_by: "assignee",
|
|
limit: 50,
|
|
offset: 1,
|
|
sort_by: "priority",
|
|
sort_direction: "desc",
|
|
statuses: ["todo"],
|
|
group_assignee_type: "member",
|
|
group_assignee_id: "user-1",
|
|
});
|
|
|
|
const updated = qc.getQueryData<GroupedIssuesResponse>(queryKey);
|
|
expect(updated?.groups[0]?.issues.map((i) => i.id)).toEqual([
|
|
"issue-1",
|
|
"issue-2",
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe("useUpdateIssue — optimistic move keeps every bucketed board in sync", () => {
|
|
const sort: IssueSortParam = { sort_by: "position", sort_direction: undefined };
|
|
const myScope = "assigned";
|
|
const myFilter = { assignee_id: "user-1" };
|
|
const projectScope = "project:p1";
|
|
const projectFilter = { project_id: "p1" };
|
|
const wsKey = issueKeys.listSorted(WS_ID, sort);
|
|
const inboxKey = inboxKeys.list(WS_ID);
|
|
// My-Issues AND the Project board both ride this myList cache; a move that
|
|
// only patched the workspace cache snaps back on those boards.
|
|
const myKey = issueKeys.myListSorted(WS_ID, myScope, myFilter, sort);
|
|
const projectKey = issueKeys.myListSorted(WS_ID, projectScope, projectFilter, sort);
|
|
|
|
let qc: QueryClient;
|
|
let updateIssue: ReturnType<typeof vi.fn<(id: string, data: unknown) => Promise<Issue>>>;
|
|
|
|
function makeBucketed(): ListIssuesCache {
|
|
return {
|
|
byStatus: {
|
|
todo: { issues: [makeIssue(1)], total: 1 },
|
|
in_progress: { issues: [], total: 0 },
|
|
},
|
|
};
|
|
}
|
|
|
|
function bucketIds(
|
|
key: readonly unknown[],
|
|
status: "todo" | "in_progress",
|
|
): string[] {
|
|
const c = qc.getQueryData<ListIssuesCache>(key);
|
|
return (c?.byStatus[status]?.issues ?? []).map((i) => i.id);
|
|
}
|
|
|
|
function inboxStatus(issueId: string) {
|
|
return qc
|
|
.getQueryData<InboxItem[]>(inboxKey)
|
|
?.find((item) => item.issue_id === issueId)?.issue_status;
|
|
}
|
|
|
|
beforeEach(() => {
|
|
qc = new QueryClient({ defaultOptions: { queries: { retry: false } } });
|
|
updateIssue = vi.fn();
|
|
setApiInstance({ updateIssue } as unknown as ApiClient);
|
|
qc.setQueryData<ListIssuesCache>(wsKey, makeBucketed());
|
|
qc.setQueryData<ListIssuesCache>(myKey, makeBucketed());
|
|
qc.setQueryData<ListIssuesCache>(projectKey, makeBucketed());
|
|
qc.setQueryData<InboxItem[]>(inboxKey, [
|
|
makeInboxItem("inbox-1", "issue-1"),
|
|
makeInboxItem("inbox-2", "issue-2"),
|
|
]);
|
|
});
|
|
|
|
afterEach(() => {
|
|
qc.clear();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("optimistically moves the card in both the workspace and myList caches", async () => {
|
|
let resolve!: (issue: Issue) => void;
|
|
updateIssue.mockReturnValue(
|
|
new Promise<Issue>((r) => {
|
|
resolve = r;
|
|
}),
|
|
);
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
act(() => {
|
|
result.current.mutate({ id: "issue-1", status: "in_progress", position: 5 });
|
|
});
|
|
|
|
// Optimistic state — the regression: myList must move too, not just ws.
|
|
for (const key of [wsKey, myKey, projectKey]) {
|
|
expect(bucketIds(key, "todo")).toEqual([]);
|
|
expect(bucketIds(key, "in_progress")).toEqual(["issue-1"]);
|
|
}
|
|
|
|
await act(async () => {
|
|
resolve(makeIssue(1, { status: "in_progress", position: 5 }));
|
|
});
|
|
|
|
// Authoritative settle keeps the card in place in both caches.
|
|
for (const key of [wsKey, myKey, projectKey]) {
|
|
expect(bucketIds(key, "in_progress")).toEqual(["issue-1"]);
|
|
}
|
|
});
|
|
|
|
it("optimistically patches the linked inbox row status and reconciles with the server response", async () => {
|
|
let resolve!: (issue: Issue) => void;
|
|
updateIssue.mockReturnValue(
|
|
new Promise<Issue>((r) => {
|
|
resolve = r;
|
|
}),
|
|
);
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
act(() => {
|
|
result.current.mutate({ id: "issue-1", status: "in_progress" });
|
|
});
|
|
|
|
expect(inboxStatus("issue-1")).toBe("in_progress");
|
|
expect(inboxStatus("issue-2")).toBe("todo");
|
|
|
|
await act(async () => {
|
|
resolve(makeIssue(1, { status: "done" }));
|
|
});
|
|
|
|
expect(inboxStatus("issue-1")).toBe("done");
|
|
expect(inboxStatus("issue-2")).toBe("todo");
|
|
});
|
|
|
|
it("rolls both caches back when the request fails", async () => {
|
|
updateIssue.mockRejectedValue(new Error("boom"));
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current
|
|
.mutateAsync({ id: "issue-1", status: "in_progress", position: 5 })
|
|
.catch(() => {});
|
|
});
|
|
|
|
for (const key of [wsKey, myKey, projectKey]) {
|
|
expect(bucketIds(key, "todo")).toEqual(["issue-1"]);
|
|
expect(bucketIds(key, "in_progress")).toEqual([]);
|
|
}
|
|
});
|
|
|
|
it("rolls the linked inbox row status back when the request fails", async () => {
|
|
updateIssue.mockRejectedValue(new Error("boom"));
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current
|
|
.mutateAsync({ id: "issue-1", status: "in_progress" })
|
|
.catch(() => {});
|
|
});
|
|
|
|
expect(inboxStatus("issue-1")).toBe("todo");
|
|
expect(inboxStatus("issue-2")).toBe("todo");
|
|
});
|
|
|
|
it("does not invalidate the board list on settle (no refetch flicker)", async () => {
|
|
updateIssue.mockResolvedValue(makeIssue(1, { status: "in_progress", position: 5 }));
|
|
const invalidateSpy = vi.spyOn(qc, "invalidateQueries");
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current.mutateAsync({ id: "issue-1", status: "in_progress", position: 5 });
|
|
});
|
|
|
|
const invalidatedKeys = invalidateSpy.mock.calls.map((c) => c[0]?.queryKey);
|
|
// The board list + myList are reconciled surgically, never refetched.
|
|
expect(invalidatedKeys).not.toContainEqual(issueKeys.list(WS_ID));
|
|
expect(invalidatedKeys).not.toContainEqual(issueKeys.myAll(WS_ID));
|
|
});
|
|
|
|
it("surgically removes the issue from the old project's list on a project move (no blanket myAll refetch)", async () => {
|
|
// A project move makes the issue leave the old project's filtered list.
|
|
// The membership-aware coordinator removes the card from that loaded list
|
|
// in onMutate — deterministic, no WS echo or refetch needed — replacing
|
|
// the old blanket "invalidate myAll on settle" safety net (MUL-3669 /
|
|
// #4548). Lists whose filter the move cannot affect stay untouched.
|
|
let resolve!: (issue: Issue) => void;
|
|
updateIssue.mockReturnValue(
|
|
new Promise<Issue>((r) => {
|
|
resolve = r;
|
|
}),
|
|
);
|
|
const invalidateSpy = vi.spyOn(qc, "invalidateQueries");
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
act(() => {
|
|
result.current.mutate({ id: "issue-1", project_id: "project-9" });
|
|
});
|
|
|
|
// Optimistic: gone from the old project's list immediately; the
|
|
// workspace board and the assignee-filtered list keep the card.
|
|
expect(bucketIds(projectKey, "todo")).toEqual([]);
|
|
expect(bucketIds(wsKey, "todo")).toEqual(["issue-1"]);
|
|
expect(bucketIds(myKey, "todo")).toEqual(["issue-1"]);
|
|
|
|
await act(async () => {
|
|
resolve(makeIssue(1, { project_id: "project-9" }));
|
|
});
|
|
|
|
expect(bucketIds(projectKey, "todo")).toEqual([]);
|
|
const invalidatedKeys = invalidateSpy.mock.calls.map((c) => c[0]?.queryKey);
|
|
expect(invalidatedKeys).not.toContainEqual(issueKeys.myAll(WS_ID));
|
|
});
|
|
|
|
it("rolls the membership removal back when a project move fails", async () => {
|
|
updateIssue.mockRejectedValue(new Error("boom"));
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current
|
|
.mutateAsync({ id: "issue-1", project_id: "project-9" })
|
|
.catch(() => {});
|
|
});
|
|
|
|
expect(bucketIds(projectKey, "todo")).toEqual(["issue-1"]);
|
|
});
|
|
});
|
|
|
|
describe("useUpdateIssue — detaching a sub-issue prunes the old parent's children cache", () => {
|
|
const PARENT_ID = "parent-1";
|
|
const childKey = issueKeys.children(WS_ID, PARENT_ID);
|
|
|
|
let qc: QueryClient;
|
|
let updateIssue: ReturnType<typeof vi.fn<(id: string, data: unknown) => Promise<Issue>>>;
|
|
|
|
function childIds(): string[] {
|
|
return (qc.getQueryData<Issue[]>(childKey) ?? []).map((c) => c.id);
|
|
}
|
|
|
|
beforeEach(() => {
|
|
qc = new QueryClient({ defaultOptions: { queries: { retry: false } } });
|
|
updateIssue = vi.fn();
|
|
setApiInstance({ updateIssue } as unknown as ApiClient);
|
|
// Seed the detail cache so onMutate resolves the old parent from the
|
|
// freshest source, plus the parent's children list rendered by the
|
|
// sub-issues section.
|
|
const child = makeIssue(1, { parent_issue_id: PARENT_ID, stage: 2 });
|
|
qc.setQueryData<Issue>(issueKeys.detail(WS_ID, child.id), child);
|
|
qc.setQueryData<Issue[]>(childKey, [
|
|
child,
|
|
makeIssue(2, { parent_issue_id: PARENT_ID }),
|
|
]);
|
|
});
|
|
|
|
afterEach(() => {
|
|
qc.clear();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("optimistically removes the issue from the old parent's children array", async () => {
|
|
let resolve!: (issue: Issue) => void;
|
|
updateIssue.mockReturnValue(
|
|
new Promise<Issue>((r) => {
|
|
resolve = r;
|
|
}),
|
|
);
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
act(() => {
|
|
result.current.mutate({ id: "issue-1", parent_issue_id: null, stage: null });
|
|
});
|
|
|
|
// Pruned immediately so the parent's sub-issues list drops it now, not
|
|
// after the settle refetch; the sibling is untouched.
|
|
expect(childIds()).toEqual(["issue-2"]);
|
|
|
|
await act(async () => {
|
|
resolve(makeIssue(1, { parent_issue_id: null, stage: null }));
|
|
});
|
|
expect(childIds()).not.toContain("issue-1");
|
|
});
|
|
|
|
it("restores the old parent's children when the request fails", async () => {
|
|
updateIssue.mockRejectedValue(new Error("boom"));
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current
|
|
.mutateAsync({ id: "issue-1", parent_issue_id: null, stage: null })
|
|
.catch(() => {});
|
|
});
|
|
|
|
expect(childIds()).toEqual(["issue-1", "issue-2"]);
|
|
});
|
|
|
|
it("keeps the issue under its parent for a non-reparenting update", async () => {
|
|
updateIssue.mockResolvedValue(
|
|
makeIssue(1, { parent_issue_id: PARENT_ID, status: "done" }),
|
|
);
|
|
|
|
const { result } = renderHook(() => useUpdateIssue(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
act(() => {
|
|
result.current.mutate({ id: "issue-1", status: "done" });
|
|
});
|
|
|
|
// A status-only change patches in place — never prunes the relationship.
|
|
expect(childIds()).toEqual(["issue-1", "issue-2"]);
|
|
});
|
|
});
|
|
|
|
describe("useBatchUpdateIssues — optimistic patch covers filtered boards too", () => {
|
|
const sort: IssueSortParam = { sort_by: "position", sort_direction: undefined };
|
|
const myScope = "assigned";
|
|
const myFilter = { assignee_id: "user-1" };
|
|
const wsKey = issueKeys.listSorted(WS_ID, sort);
|
|
const myKey = issueKeys.myListSorted(WS_ID, myScope, myFilter, sort);
|
|
|
|
let qc: QueryClient;
|
|
let batchUpdateIssues: ReturnType<
|
|
typeof vi.fn<(ids: string[], updates: unknown) => Promise<{ updated: number }>>
|
|
>;
|
|
|
|
function makeBucketed(): ListIssuesCache {
|
|
return {
|
|
byStatus: {
|
|
todo: { issues: [makeIssue(1)], total: 1 },
|
|
in_progress: { issues: [], total: 0 },
|
|
},
|
|
};
|
|
}
|
|
|
|
function bucketIds(key: readonly unknown[], status: "todo" | "in_progress"): string[] {
|
|
const c = qc.getQueryData<ListIssuesCache>(key);
|
|
return (c?.byStatus[status]?.issues ?? []).map((i) => i.id);
|
|
}
|
|
|
|
beforeEach(() => {
|
|
qc = new QueryClient({ defaultOptions: { queries: { retry: false } } });
|
|
batchUpdateIssues = vi.fn();
|
|
setApiInstance({ batchUpdateIssues } as unknown as ApiClient);
|
|
qc.setQueryData<ListIssuesCache>(wsKey, makeBucketed());
|
|
qc.setQueryData<ListIssuesCache>(myKey, makeBucketed());
|
|
});
|
|
|
|
afterEach(() => {
|
|
qc.clear();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("optimistically patches BOTH the workspace and myList caches (not just ws)", async () => {
|
|
let resolve!: (r: { updated: number }) => void;
|
|
batchUpdateIssues.mockReturnValue(
|
|
new Promise<{ updated: number }>((r) => {
|
|
resolve = r;
|
|
}),
|
|
);
|
|
|
|
const { result } = renderHook(() => useBatchUpdateIssues(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
act(() => {
|
|
result.current.mutate({ ids: ["issue-1"], updates: { status: "in_progress" } });
|
|
});
|
|
|
|
// The regression Howard flagged: batch must move the card on the myList
|
|
// board too, not only the workspace board. onMutate awaits cancelQueries,
|
|
// so the optimistic patch lands a microtask later — wait for it.
|
|
await waitFor(() => {
|
|
for (const key of [wsKey, myKey]) {
|
|
expect(bucketIds(key, "todo")).toEqual([]);
|
|
expect(bucketIds(key, "in_progress")).toEqual(["issue-1"]);
|
|
}
|
|
});
|
|
|
|
await act(async () => {
|
|
resolve({ updated: 1 });
|
|
});
|
|
|
|
for (const key of [wsKey, myKey]) {
|
|
expect(bucketIds(key, "in_progress")).toEqual(["issue-1"]);
|
|
}
|
|
});
|
|
|
|
it("rolls both caches back when the request fails", async () => {
|
|
batchUpdateIssues.mockRejectedValue(new Error("boom"));
|
|
|
|
const { result } = renderHook(() => useBatchUpdateIssues(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current
|
|
.mutateAsync({ ids: ["issue-1"], updates: { status: "in_progress" } })
|
|
.catch(() => {});
|
|
});
|
|
|
|
for (const key of [wsKey, myKey]) {
|
|
expect(bucketIds(key, "todo")).toEqual(["issue-1"]);
|
|
expect(bucketIds(key, "in_progress")).toEqual([]);
|
|
}
|
|
});
|
|
|
|
it("does not invalidate the board list on settle (no refetch flicker)", async () => {
|
|
batchUpdateIssues.mockResolvedValue({ updated: 1 });
|
|
const invalidateSpy = vi.spyOn(qc, "invalidateQueries");
|
|
|
|
const { result } = renderHook(() => useBatchUpdateIssues(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current.mutateAsync({ ids: ["issue-1"], updates: { status: "in_progress" } });
|
|
});
|
|
|
|
const invalidatedKeys = invalidateSpy.mock.calls.map((c) => c[0]?.queryKey);
|
|
expect(invalidatedKeys).not.toContainEqual(issueKeys.list(WS_ID));
|
|
});
|
|
|
|
it("surgically removes moved issues from the old project's list (no blanket myAll refetch)", async () => {
|
|
// Mirrors useUpdateIssue: a batch project move drops the cards from the
|
|
// old project's loaded list via the membership-aware coordinator instead
|
|
// of refetching every filtered list (MUL-3669 / #4548).
|
|
const projectScope = "project:p1";
|
|
const projectFilter = { project_id: "p1" };
|
|
const projectKey = issueKeys.myListSorted(WS_ID, projectScope, projectFilter, sort);
|
|
qc.setQueryData<ListIssuesCache>(projectKey, makeBucketed());
|
|
batchUpdateIssues.mockResolvedValue({ updated: 1 });
|
|
const invalidateSpy = vi.spyOn(qc, "invalidateQueries");
|
|
|
|
const { result } = renderHook(() => useBatchUpdateIssues(), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current.mutateAsync({
|
|
ids: ["issue-1"],
|
|
updates: { project_id: "project-9" },
|
|
});
|
|
});
|
|
|
|
expect(bucketIds(projectKey, "todo")).toEqual([]);
|
|
// The assignee-filtered list is untouched by a project move.
|
|
expect(bucketIds(myKey, "todo")).toEqual(["issue-1"]);
|
|
const invalidatedKeys = invalidateSpy.mock.calls.map((c) => c[0]?.queryKey);
|
|
expect(invalidatedKeys).not.toContainEqual(issueKeys.myAll(WS_ID));
|
|
});
|
|
});
|
|
|
|
describe("useResolveComment", () => {
|
|
const ISSUE_ID = "issue-1";
|
|
|
|
function makeComment(
|
|
id: string,
|
|
parentId: string | null,
|
|
resolvedAt: string | null,
|
|
): TimelineEntry {
|
|
return {
|
|
type: "comment",
|
|
id,
|
|
actor_type: "member",
|
|
actor_id: "user-1",
|
|
content: id,
|
|
parent_id: parentId,
|
|
comment_type: "comment",
|
|
reactions: [],
|
|
attachments: [],
|
|
created_at: "2026-01-01T00:00:00Z",
|
|
updated_at: "2026-01-01T00:00:00Z",
|
|
resolved_at: resolvedAt,
|
|
resolved_by_type: resolvedAt ? "member" : null,
|
|
resolved_by_id: resolvedAt ? "user-1" : null,
|
|
};
|
|
}
|
|
|
|
// Two independent threads on one issue:
|
|
// root1 ─ a1 (resolved), b1
|
|
// root2 ─ a2 (resolved)
|
|
function seedTimeline(qc: QueryClient) {
|
|
const entries: TimelineEntry[] = [
|
|
makeComment("root1", null, null),
|
|
makeComment("a1", "root1", "2026-01-01T00:01:00Z"),
|
|
makeComment("b1", "root1", null),
|
|
makeComment("root2", null, null),
|
|
makeComment("a2", "root2", "2026-01-01T00:05:00Z"),
|
|
];
|
|
qc.setQueryData<TimelineEntry[]>(issueKeys.timeline(ISSUE_ID), entries);
|
|
}
|
|
|
|
function resolvedIds(qc: QueryClient): string[] {
|
|
const cache = qc.getQueryData<TimelineEntry[]>(issueKeys.timeline(ISSUE_ID)) ?? [];
|
|
return cache.filter((e) => e.resolved_at).map((e) => e.id).sort();
|
|
}
|
|
|
|
let qc: QueryClient;
|
|
|
|
beforeEach(() => {
|
|
qc = new QueryClient({ defaultOptions: { queries: { retry: false } } });
|
|
setApiInstance({
|
|
resolveComment: vi.fn().mockResolvedValue({ id: "b1" }),
|
|
unresolveComment: vi.fn().mockResolvedValue({ id: "b1" }),
|
|
} as unknown as ApiClient);
|
|
});
|
|
|
|
afterEach(() => {
|
|
qc.clear();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("clears the prior resolution in the same thread when resolving another comment", async () => {
|
|
seedTimeline(qc);
|
|
|
|
const { result } = renderHook(() => useResolveComment(ISSUE_ID), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current.mutateAsync({ commentId: "b1", resolved: true });
|
|
});
|
|
|
|
// b1 replaces a1 inside thread 1; a2 (thread 2) is untouched.
|
|
expect(resolvedIds(qc)).toEqual(["a2", "b1"]);
|
|
});
|
|
|
|
it("does not clear resolutions in other threads", async () => {
|
|
seedTimeline(qc);
|
|
|
|
const { result } = renderHook(() => useResolveComment(ISSUE_ID), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
// Resolving root1 (thread 1) must leave a2 (thread 2) resolved.
|
|
await act(async () => {
|
|
await result.current.mutateAsync({ commentId: "root1", resolved: true });
|
|
});
|
|
|
|
expect(resolvedIds(qc)).toEqual(["a2", "root1"]);
|
|
});
|
|
|
|
it("unresolve only clears its own row, never siblings", async () => {
|
|
// Legacy state: two resolved comments coexist in one thread.
|
|
qc.setQueryData<TimelineEntry[]>(issueKeys.timeline(ISSUE_ID), [
|
|
makeComment("root1", null, null),
|
|
makeComment("a1", "root1", "2026-01-01T00:01:00Z"),
|
|
makeComment("b1", "root1", "2026-01-01T00:02:00Z"),
|
|
]);
|
|
|
|
const { result } = renderHook(() => useResolveComment(ISSUE_ID), {
|
|
wrapper: createWrapper(qc),
|
|
});
|
|
|
|
await act(async () => {
|
|
await result.current.mutateAsync({ commentId: "b1", resolved: false });
|
|
});
|
|
|
|
// Only b1 is cleared; a1 stays resolved (unresolve never mirrors the clear).
|
|
expect(resolvedIds(qc)).toEqual(["a1"]);
|
|
});
|
|
});
|