Files
multica/packages/views/issues/components/board-view.tsx
Naiyuan Qing ade6b34e5f MUL-3903: Extract shared issue surfaces (#4774)
* 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>
2026-07-02 14:11:10 +08:00

646 lines
20 KiB
TypeScript

"use client";
import { useState, useCallback, useMemo, useEffect, useRef, memo } from "react";
import {
DndContext,
DragOverlay,
PointerSensor,
useSensor,
useSensors,
type DragStartEvent,
type DragEndEvent,
type DragOverEvent,
} from "@dnd-kit/core";
import type { QueryKey } from "@tanstack/react-query";
import { arrayMove } from "@dnd-kit/sortable";
import type {
Issue,
IssueAssigneeGroup,
IssueStatus,
Project,
} from "@multica/core/types";
import { useLoadMoreByAssigneeGroup, useLoadMoreByStatus } from "@multica/core/issues/mutations";
import type { AssigneeGroupedIssuesFilter, IssueSortParam, MyIssuesFilter } from "@multica/core/issues/queries";
import { useViewStore } from "@multica/core/issues/stores/view-store-context";
import type { IssueGrouping } from "@multica/core/issues/stores/view-store";
import { useActorName } from "@multica/core/workspace/hooks";
import { BoardColumn, BOARD_CARD_WIDTH, type BoardColumnGroup } from "./board-column";
import { BoardCardContent } from "./board-card";
import { HiddenColumnsPanel, HiddenColumnRow } from "./hidden-columns-panel";
import { InfiniteScrollSentinel } from "./infinite-scroll-sentinel";
import type { ChildProgress } from "./list-row";
import type { IssueCreateDefaults } from "../surface/types";
import { useDragSettle } from "./use-drag-settle";
import { useT } from "../../i18n";
import {
type DragMoveUpdates,
makeKanbanCollision,
statusGroupId,
assigneeGroupId,
buildColumns,
computePosition,
findColumn,
insertIdByPosition,
issueMatchesGroup,
getMoveUpdates,
} from "../utils/drag-utils";
function isStatusGroup(
group: BoardColumnGroup,
): group is BoardColumnGroup & { status: IssueStatus } {
return group.status !== undefined;
}
function buildGroups(
issues: Issue[],
visibleStatuses: IssueStatus[],
grouping: IssueGrouping,
getActorName: (type: string, id: string) => string,
noAssigneeLabel: string,
): BoardColumnGroup[] {
if (grouping === "status") {
return visibleStatuses.map((status) => ({
id: statusGroupId(status),
title: status,
status,
createData: { status },
}));
}
const groups = new Map<string, BoardColumnGroup>();
for (const issue of issues) {
const id = assigneeGroupId(issue.assignee_type, issue.assignee_id);
if (groups.has(id)) continue;
if (issue.assignee_type && issue.assignee_id) {
groups.set(id, {
id,
title: getActorName(issue.assignee_type, issue.assignee_id),
assigneeType: issue.assignee_type,
assigneeId: issue.assignee_id,
createData: {
assignee_type: issue.assignee_type,
assignee_id: issue.assignee_id,
},
});
continue;
}
groups.set(id, {
id,
title: noAssigneeLabel,
assigneeType: null,
assigneeId: null,
createData: {
assignee_type: null,
assignee_id: null,
},
});
}
const order: Record<string, number> = {
member: 0,
agent: 1,
squad: 2,
none: 3,
};
return Array.from(groups.values()).toSorted((a, b) => {
const aOrder = order[a.assigneeType ?? "none"] ?? 99;
const bOrder = order[b.assigneeType ?? "none"] ?? 99;
if (aOrder !== bOrder) return aOrder - bOrder;
return a.title.localeCompare(b.title);
});
}
const EMPTY_PROGRESS_MAP = new Map<string, ChildProgress>();
const EMPTY_IDS: string[] = [];
export function BoardView({
issues,
assigneeGroups,
assigneeGroupQueryKey,
assigneeGroupFilter,
visibleStatuses,
hiddenStatuses,
onMoveIssue,
childProgressMap = EMPTY_PROGRESS_MAP,
projectMap,
myIssuesScope,
myIssuesFilter,
sort,
projectId,
onCreateIssue,
}: {
issues: Issue[];
assigneeGroups?: IssueAssigneeGroup[];
assigneeGroupQueryKey?: QueryKey;
assigneeGroupFilter?: AssigneeGroupedIssuesFilter;
visibleStatuses: IssueStatus[];
hiddenStatuses: IssueStatus[];
onMoveIssue: (issueId: string, updates: DragMoveUpdates, onSettled?: () => void) => void;
childProgressMap?: Map<string, ChildProgress>;
projectMap?: Map<string, Project>;
/** When set, per-status load-more targets the scoped cache instead of the workspace one. */
myIssuesScope?: string;
myIssuesFilter?: MyIssuesFilter;
/** Must match the sort the page queried with — embedded in the cache key. */
sort?: IssueSortParam;
/** When set, the per-column "+" pre-fills the project on the create form. */
projectId?: string;
onCreateIssue?: (defaults: IssueCreateDefaults) => void;
}) {
const { t } = useT("issues");
const grouping = useViewStore((s) => s.grouping);
const sortBy = useViewStore((s) => s.sortBy);
const sortFieldKey = sortBy === "created_at" ? "created" : sortBy;
const sortLabel = sortBy !== "position"
? t(($) => $.board.ordered_by, { field: t(($) => $.display[`sort_${sortFieldKey}` as keyof typeof $.display]) })
: null;
const { getActorName } = useActorName();
const myIssuesOpts = myIssuesScope
? { scope: myIssuesScope, filter: myIssuesFilter ?? {} }
: undefined;
const groupedIssues = useMemo(
() =>
grouping === "assignee" && assigneeGroups
? assigneeGroups.flatMap((group) => group.issues)
: issues,
[assigneeGroups, grouping, issues],
);
const hydratedAssigneeGroups = useMemo(() => {
if (grouping !== "assignee" || !assigneeGroups) return undefined;
const order: Record<string, number> = {
member: 0,
agent: 1,
squad: 2,
none: 3,
};
return assigneeGroups
.map((group) => ({
id: group.id,
title:
group.assignee_type && group.assignee_id
? getActorName(group.assignee_type, group.assignee_id)
: t(($) => $.filters.no_assignee),
assigneeType: group.assignee_type,
assigneeId: group.assignee_id,
totalCount: group.total,
createData: {
assignee_type: group.assignee_type,
assignee_id: group.assignee_id,
},
}))
.sort((a, b) => {
const aOrder = order[a.assigneeType ?? "none"] ?? 99;
const bOrder = order[b.assigneeType ?? "none"] ?? 99;
if (aOrder !== bOrder) return aOrder - bOrder;
return a.title.localeCompare(b.title);
});
}, [assigneeGroups, getActorName, grouping, t]);
const groups = useMemo(
() =>
hydratedAssigneeGroups ??
buildGroups(
issues,
visibleStatuses,
grouping,
getActorName,
t(($) => $.filters.no_assignee),
),
[hydratedAssigneeGroups, issues, visibleStatuses, grouping, getActorName, t],
);
const groupIds = useMemo(
() => new Set(groups.map((group) => group.id)),
[groups],
);
const groupMap = useMemo(
() => new Map(groups.map((group) => [group.id, group])),
[groups],
);
const collisionDetection = useMemo(
() => makeKanbanCollision(groupIds),
[groupIds],
);
// --- Drag state ---
const [activeIssue, setActiveIssue] = useState<Issue | null>(null);
// Shared drag/settle primitive: owns the local column mirror, the
// dragging/settling locks, the post-move animation-frame throttle, and the
// settle callback. Shared with list-view (and swimlane) so the surfaces
// can't drift apart. Local columns follow TQ between drags via the resync
// effect below; during a drag/settle they are frozen by the locks.
const {
columns,
setColumns,
columnsRef,
isDraggingRef,
isSettlingRef,
recentlyMovedRef,
settleVersion,
beginSettle,
} = useDragSettle(() => buildColumns(groupedIssues, groups, grouping));
useEffect(() => {
if (!isDraggingRef.current && !isSettlingRef.current) {
setColumns(buildColumns(groupedIssues, groups, grouping));
}
}, [groupedIssues, groups, grouping, settleVersion, setColumns, isDraggingRef, isSettlingRef]);
// --- Issue map ---
// Frozen during drag so BoardColumn/DraggableBoardCard props stay
// referentially stable even if a TQ refetch lands mid-drag.
const issueMap = useMemo(() => {
const map = new Map<string, Issue>();
for (const issue of groupedIssues) map.set(issue.id, issue);
return map;
}, [groupedIssues]);
const issueMapRef = useRef(issueMap);
if (!isDraggingRef.current && !isSettlingRef.current) {
issueMapRef.current = issueMap;
}
const sensors = useSensors(
useSensor(PointerSensor, {
activationConstraint: { distance: 5 },
})
);
const handleDragStart = useCallback(
(event: DragStartEvent) => {
isDraggingRef.current = true;
const issue = issueMapRef.current.get(event.active.id as string) ?? null;
setActiveIssue(issue);
},
[isDraggingRef],
);
const handleDragOver = useCallback(
(event: DragOverEvent) => {
const { active, over } = event;
if (!over || recentlyMovedRef.current) return;
const activeId = active.id as string;
const overId = over.id as string;
setColumns((prev) => {
const activeCol = findColumn(prev, activeId, groupIds);
const overCol = findColumn(prev, overId, groupIds);
if (!activeCol || !overCol || activeCol === overCol) return prev;
if (sortBy !== "position") return prev;
recentlyMovedRef.current = true;
const oldIds = prev[activeCol]!.filter((id) => id !== activeId);
const newIds = [...prev[overCol]!];
const overIndex = newIds.indexOf(overId);
const insertIndex = overIndex >= 0 ? overIndex : newIds.length;
newIds.splice(insertIndex, 0, activeId);
return { ...prev, [activeCol]: oldIds, [overCol]: newIds };
});
},
[groupIds, sortBy, recentlyMovedRef, setColumns],
);
const handleDragEnd = useCallback(
(event: DragEndEvent) => {
const { active, over } = event;
isDraggingRef.current = false;
setActiveIssue(null);
const resetColumns = () =>
setColumns(buildColumns(groupedIssues, groups, grouping));
if (!over) {
resetColumns();
return;
}
const activeId = active.id as string;
const overId = over.id as string;
const cols = columnsRef.current;
const activeCol = findColumn(cols, activeId, groupIds);
const overCol = findColumn(cols, overId, groupIds);
if (!activeCol || !overCol) {
resetColumns();
return;
}
// Same-column reorder (manual sort only)
let finalColumns = cols;
if (activeCol === overCol && sortBy === "position") {
const ids = cols[activeCol]!;
const oldIndex = ids.indexOf(activeId);
const newIndex = ids.indexOf(overId);
if (oldIndex !== -1 && newIndex !== -1 && oldIndex !== newIndex) {
const reordered = arrayMove(ids, oldIndex, newIndex);
finalColumns = { ...cols, [activeCol]: reordered };
setColumns(finalColumns);
}
}
const finalCol = sortBy === "position"
? findColumn(finalColumns, activeId, groupIds)
: overCol;
if (!finalCol) {
resetColumns();
return;
}
const finalGroup = groupMap.get(finalCol);
if (!finalGroup) {
resetColumns();
return;
}
const map = issueMapRef.current;
if (sortBy !== "position") {
// Cross-column: only update group (status/assignee), keep original position.
const currentIssue = map.get(activeId);
if (!currentIssue || issueMatchesGroup(currentIssue, finalGroup)) {
resetColumns();
return;
}
// Optimistically move the card into the target column *now*. Without
// this, the sortBy != "position" path never touches local columns on
// drop, so onDragOver having been a no-op leaves the card in its origin
// column for the whole request — it only jumps across when the mutation
// settles. That is the "snaps back to origin, then moves" glitch.
// Placement mirrors the cache (insertByPosition) so the settle rebuild
// from TanStack Query is a visual no-op.
setColumns((prev) => {
const fromIds = (prev[activeCol] ?? []).filter((cid) => cid !== activeId);
const toIds = insertIdByPosition(
prev[overCol] ?? [],
activeId,
currentIssue.position,
map,
);
return { ...prev, [activeCol]: fromIds, [overCol]: toIds };
});
onMoveIssue(activeId, getMoveUpdates(finalGroup, currentIssue.position), beginSettle());
return;
}
const finalIds = finalColumns[finalCol]!;
const newPosition = computePosition(finalIds, activeId, map);
const currentIssue = map.get(activeId);
if (
currentIssue &&
issueMatchesGroup(currentIssue, finalGroup) &&
currentIssue.position === newPosition
) {
return;
}
// beginSettle() holds the lock and returns the onSettled callback that
// releases it and resyncs local columns from the cache: a no-op on
// success (onSuccess already patched the moved card in place), the revert
// on error (onError restored the snapshot). Without it a failed move would
// strand the card at the drop target, since onSettled no longer refetches.
onMoveIssue(activeId, getMoveUpdates(finalGroup, newPosition), beginSettle());
},
[groupedIssues, groups, grouping, onMoveIssue, groupIds, groupMap, sortBy, beginSettle, columnsRef, isDraggingRef, setColumns],
);
return (
<DndContext
sensors={sensors}
collisionDetection={collisionDetection}
onDragStart={handleDragStart}
onDragOver={handleDragOver}
onDragEnd={handleDragEnd}
>
<div className="flex flex-1 min-h-0 gap-4 overflow-x-auto p-2">
{groups.length === 0 ? (
<div className="flex min-w-full flex-1 items-center justify-center text-sm text-muted-foreground">
{t(($) => $.board.empty_grouping)}
</div>
) : (
groups.map((group) =>
isStatusGroup(group) ? (
<PaginatedBoardColumn
key={group.id}
group={group}
issueIds={columns[group.id] ?? EMPTY_IDS}
issueMap={issueMapRef.current}
childProgressMap={childProgressMap}
projectMap={projectMap}
myIssuesOpts={myIssuesOpts}
sort={sort}
projectId={projectId}
onCreateIssue={onCreateIssue}
sortLabel={sortLabel}
/>
) : (
assigneeGroupQueryKey && assigneeGroupFilter ? (
<PaginatedAssigneeBoardColumn
key={group.id}
group={group}
issueIds={columns[group.id] ?? EMPTY_IDS}
issueMap={issueMapRef.current}
childProgressMap={childProgressMap}
projectMap={projectMap}
queryKey={assigneeGroupQueryKey}
filter={assigneeGroupFilter}
sort={sort}
projectId={projectId}
onCreateIssue={onCreateIssue}
sortLabel={sortLabel}
/>
) : (
<BoardColumn
key={group.id}
group={group}
issueIds={columns[group.id] ?? EMPTY_IDS}
issueMap={issueMapRef.current}
childProgressMap={childProgressMap}
projectMap={projectMap}
projectId={projectId}
onCreateIssue={onCreateIssue}
totalCount={group.totalCount}
sortLabel={sortLabel}
/>
)
),
)
)}
{grouping === "status" && hiddenStatuses.length > 0 && (
<BoardHiddenColumnsPanel
hiddenStatuses={hiddenStatuses}
myIssuesOpts={myIssuesOpts}
sort={sort}
/>
)}
</div>
<DragOverlay dropAnimation={null}>
{activeIssue ? (
<div style={{ width: BOARD_CARD_WIDTH }} className="rotate-1 cursor-grabbing opacity-90 shadow-lg shadow-black/10">
<BoardCardContent
issue={activeIssue}
childProgress={childProgressMap.get(activeIssue.id)}
project={
activeIssue.project_id
? projectMap?.get(activeIssue.project_id)
: undefined
}
/>
</div>
) : null}
</DragOverlay>
</DndContext>
);
}
const PaginatedAssigneeBoardColumn = memo(function PaginatedAssigneeBoardColumn({
group,
issueIds,
issueMap,
childProgressMap,
projectMap,
queryKey,
filter,
sort,
projectId,
onCreateIssue,
sortLabel,
}: {
group: BoardColumnGroup;
issueIds: string[];
issueMap: Map<string, Issue>;
childProgressMap?: Map<string, ChildProgress>;
projectMap?: Map<string, Project>;
queryKey: QueryKey;
filter: AssigneeGroupedIssuesFilter;
sort?: IssueSortParam;
projectId?: string;
onCreateIssue?: (defaults: IssueCreateDefaults) => void;
sortLabel?: string | null;
}) {
const { loadMore, hasMore, isLoading, total } = useLoadMoreByAssigneeGroup(
{
id: group.id,
assignee_type: group.assigneeType ?? null,
assignee_id: group.assigneeId ?? null,
},
queryKey,
filter,
sort,
);
return (
<BoardColumn
group={group}
issueIds={issueIds}
issueMap={issueMap}
childProgressMap={childProgressMap}
projectMap={projectMap}
totalCount={total}
projectId={projectId}
onCreateIssue={onCreateIssue}
sortLabel={sortLabel}
footer={
hasMore ? (
<InfiniteScrollSentinel onVisible={loadMore} loading={isLoading} />
) : undefined
}
/>
);
});
const PaginatedBoardColumn = memo(function PaginatedBoardColumn({
group,
issueIds,
issueMap,
childProgressMap,
projectMap,
myIssuesOpts,
sort,
projectId,
onCreateIssue,
sortLabel,
}: {
group: BoardColumnGroup & { status: IssueStatus };
issueIds: string[];
issueMap: Map<string, Issue>;
childProgressMap?: Map<string, ChildProgress>;
projectMap?: Map<string, Project>;
myIssuesOpts?: { scope: string; filter: MyIssuesFilter };
sort?: IssueSortParam;
projectId?: string;
onCreateIssue?: (defaults: IssueCreateDefaults) => void;
sortLabel?: string | null;
}) {
const { loadMore, hasMore, isLoading, total } = useLoadMoreByStatus(
group.status,
myIssuesOpts,
sort,
);
return (
<BoardColumn
group={group}
issueIds={issueIds}
issueMap={issueMap}
childProgressMap={childProgressMap}
projectMap={projectMap}
totalCount={total}
projectId={projectId}
onCreateIssue={onCreateIssue}
sortLabel={sortLabel}
footer={
hasMore ? (
<InfiniteScrollSentinel onVisible={loadMore} loading={isLoading} />
) : undefined
}
/>
);
});
/**
* Board-view-specific row that pulls the server-aggregated total from
* `useLoadMoreByStatus` and hands it to the shared {@link HiddenColumnRow}.
* Lives here (not in `hidden-columns-panel.tsx`) so the shared panel stays
* free of `useLoadMoreByStatus` / `myIssuesOpts` coupling — the swimlane
* uses an in-memory total instead.
*/
function BoardHiddenColumnRow({
status,
myIssuesOpts,
sort,
}: {
status: IssueStatus;
myIssuesOpts?: { scope: string; filter: MyIssuesFilter };
sort?: IssueSortParam;
}) {
const { total } = useLoadMoreByStatus(status, myIssuesOpts, sort);
return <HiddenColumnRow status={status} total={total} />;
}
function BoardHiddenColumnsPanel({
hiddenStatuses,
myIssuesOpts,
sort,
}: {
hiddenStatuses: IssueStatus[];
myIssuesOpts?: { scope: string; filter: MyIssuesFilter };
sort?: IssueSortParam;
}) {
return (
<HiddenColumnsPanel
hiddenStatuses={hiddenStatuses}
renderRow={(status) => (
<BoardHiddenColumnRow
key={status}
status={status}
myIssuesOpts={myIssuesOpts}
sort={sort}
/>
)}
/>
);
}