mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 21:33:41 +02:00
The "Board ordered by" overlay used absolute positioning inside a scrollable container, causing it to drift with scroll content. Move the overlay outside the scroll area into a non-scrolling wrapper so it stays centered in the visible viewport. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com> Co-authored-by: multica-agent <github@multica.ai>
198 lines
6.7 KiB
TypeScript
198 lines
6.7 KiB
TypeScript
"use client";
|
|
|
|
import { memo, useMemo, type ReactNode } from "react";
|
|
import { EyeOff, MoreHorizontal, Plus, UserMinus } from "lucide-react";
|
|
import { Tooltip, TooltipTrigger, TooltipContent } from "@multica/ui/components/ui/tooltip";
|
|
import { useDroppable } from "@dnd-kit/core";
|
|
import { SortableContext, verticalListSortingStrategy } from "@dnd-kit/sortable";
|
|
import type { Issue, IssueAssigneeType, IssueStatus } from "@multica/core/types";
|
|
import { Button } from "@multica/ui/components/ui/button";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuTrigger,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
} from "@multica/ui/components/ui/dropdown-menu";
|
|
import { STATUS_CONFIG } from "@multica/core/issues/config";
|
|
import { useModalStore } from "@multica/core/modals";
|
|
import { useViewStoreApi } from "@multica/core/issues/stores/view-store-context";
|
|
import { StatusHeading } from "./status-heading";
|
|
import { DraggableBoardCard } from "./board-card";
|
|
import type { ChildProgress } from "./list-row";
|
|
import { useT } from "../../i18n";
|
|
import { ActorAvatar } from "../../common/actor-avatar";
|
|
|
|
// Insertion-position prediction intentionally omitted. The server's
|
|
// ORDER BY uses PostgreSQL's en_US.utf8 collation (glibc), which
|
|
// cannot be faithfully replicated in JavaScript (ICU/V8). Showing an
|
|
// inaccurate indicator is worse than showing none.
|
|
|
|
export const BOARD_COL_WIDTH = 280;
|
|
export const BOARD_CARD_WIDTH = BOARD_COL_WIDTH - 16 - 8; // col(280) - col p-2(16) - droppable p-1(8)
|
|
|
|
export interface BoardColumnGroup {
|
|
id: string;
|
|
title: string;
|
|
status?: IssueStatus;
|
|
assigneeType?: IssueAssigneeType | null;
|
|
assigneeId?: string | null;
|
|
totalCount?: number;
|
|
createData?: Record<string, unknown>;
|
|
}
|
|
|
|
export const BoardColumn = memo(function BoardColumn({
|
|
group,
|
|
issueIds,
|
|
issueMap,
|
|
childProgressMap,
|
|
totalCount,
|
|
footer,
|
|
projectId,
|
|
sortLabel,
|
|
}: {
|
|
group: BoardColumnGroup;
|
|
issueIds: string[];
|
|
issueMap: Map<string, Issue>;
|
|
childProgressMap?: Map<string, ChildProgress>;
|
|
totalCount?: number;
|
|
footer?: ReactNode;
|
|
/** When set, the per-column "+" pre-fills the project on the create form. */
|
|
projectId?: string;
|
|
sortLabel?: string | null;
|
|
}) {
|
|
const status = group.status;
|
|
const cfg = status ? STATUS_CONFIG[status] : null;
|
|
const { setNodeRef, isOver } = useDroppable({ id: group.id });
|
|
const viewStoreApi = useViewStoreApi();
|
|
const { t } = useT("issues");
|
|
|
|
// Resolve IDs to Issue objects, preserving parent-provided order
|
|
const resolvedIssues = useMemo(
|
|
() =>
|
|
issueIds.flatMap((id) => {
|
|
const issue = issueMap.get(id);
|
|
return issue ? [issue] : [];
|
|
}),
|
|
[issueIds, issueMap],
|
|
);
|
|
|
|
return (
|
|
<div style={{ width: BOARD_COL_WIDTH }} className={`flex shrink-0 flex-col rounded-xl ${cfg?.columnBg ?? "bg-muted/40"} p-2`}>
|
|
<div className="mb-2 flex items-center justify-between px-1.5">
|
|
<BoardGroupHeading group={group} count={totalCount ?? issueIds.length} />
|
|
|
|
{/* Right: add + menu */}
|
|
<div className="flex items-center gap-1">
|
|
{status && (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger
|
|
render={
|
|
<Button variant="ghost" size="icon-sm" className="rounded-full text-muted-foreground">
|
|
<MoreHorizontal className="size-3.5" />
|
|
</Button>
|
|
}
|
|
/>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem onClick={() => viewStoreApi.getState().hideStatus(status)}>
|
|
<EyeOff className="size-3.5" />
|
|
{t(($) => $.board.hide_column)}
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
)}
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-sm"
|
|
className="rounded-full text-muted-foreground"
|
|
onClick={() => {
|
|
const data = {
|
|
...(group.createData ?? {}),
|
|
...(projectId ? { project_id: projectId } : {}),
|
|
};
|
|
useModalStore.getState().open("create-issue", data);
|
|
}}
|
|
>
|
|
<Plus className="size-3.5" />
|
|
</Button>
|
|
}
|
|
/>
|
|
<TooltipContent>{t(($) => $.board.add_issue_tooltip)}</TooltipContent>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
<div className="relative min-h-[200px] flex-1 rounded-lg">
|
|
{isOver && sortLabel && (
|
|
<div className="pointer-events-none absolute inset-0 z-10 flex items-center justify-center rounded-lg bg-background/40">
|
|
<span className="rounded-md bg-popover px-2.5 py-1 text-xs font-medium text-popover-foreground shadow-sm border border-border">
|
|
{sortLabel}
|
|
</span>
|
|
</div>
|
|
)}
|
|
<div
|
|
ref={setNodeRef}
|
|
className={`absolute inset-0 space-y-2 overflow-y-auto rounded-lg p-1 transition-colors ${
|
|
isOver && sortLabel
|
|
? "ring-2 ring-brand/25 bg-accent/15"
|
|
: isOver
|
|
? "bg-accent/60"
|
|
: ""
|
|
}`}
|
|
>
|
|
<SortableContext items={issueIds} strategy={verticalListSortingStrategy}>
|
|
{resolvedIssues.map((issue) => (
|
|
<DraggableBoardCard key={issue.id} issue={issue} childProgress={childProgressMap?.get(issue.id)} disableSorting={!!sortLabel} />
|
|
))}
|
|
</SortableContext>
|
|
{issueIds.length === 0 && (
|
|
<p className="py-8 text-center text-xs text-muted-foreground">
|
|
{t(($) => $.board.empty_column)}
|
|
</p>
|
|
)}
|
|
{footer}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
function BoardGroupHeading({
|
|
group,
|
|
count,
|
|
}: {
|
|
group: BoardColumnGroup;
|
|
count: number;
|
|
}) {
|
|
if (group.status) {
|
|
return <StatusHeading status={group.status} count={count} />;
|
|
}
|
|
|
|
const actorIcon =
|
|
group.assigneeType && group.assigneeId ? (
|
|
<ActorAvatar
|
|
actorType={group.assigneeType}
|
|
actorId={group.assigneeId}
|
|
size={18}
|
|
showStatusDot={group.assigneeType === "agent"}
|
|
/>
|
|
) : (
|
|
<span className="flex size-[18px] shrink-0 items-center justify-center rounded-full bg-background text-muted-foreground">
|
|
<UserMinus className="size-3.5" />
|
|
</span>
|
|
);
|
|
|
|
return (
|
|
<div className="flex min-w-0 items-center gap-2">
|
|
{actorIcon}
|
|
<span className="truncate text-sm font-medium" title={group.title}>
|
|
{group.title}
|
|
</span>
|
|
<span className="shrink-0 rounded-full bg-background px-1.5 py-0.5 text-[11px] font-medium tabular-nums text-muted-foreground">
|
|
{count}
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|