- Removed outdated pricing entries for Claude models from pricing.json to streamline configuration. - Enhanced the getFileContent method in FileContentResolver to accept snippets for improved content diffing. - Updated IPC methods to support new parameters for file content retrieval, improving data handling in the review process. - Introduced accurate line addition and removal tracking in file diffs, enhancing the review experience. - Improved UI components to reflect changes in file content handling, ensuring better user interaction during reviews.
187 lines
6.9 KiB
TypeScript
187 lines
6.9 KiB
TypeScript
import { useMemo } from 'react';
|
|
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from '@renderer/components/ui/tooltip';
|
|
import { getTeamColorSet } from '@renderer/constants/teamColors';
|
|
import { useUnreadCommentCount } from '@renderer/hooks/useUnreadCommentCount';
|
|
import { useStore } from '@renderer/store';
|
|
import { buildMemberColorMap } from '@renderer/utils/memberHelpers';
|
|
import { nameColorSet } from '@renderer/utils/projectColor';
|
|
import { projectColor } from '@renderer/utils/projectColor';
|
|
import { projectLabelFromPath } from '@renderer/utils/taskGrouping';
|
|
import { format, isThisYear, isToday, isYesterday } from 'date-fns';
|
|
import { CheckCircle2, Circle, Eye, Loader2, ShieldCheck, Trash2 } from 'lucide-react';
|
|
|
|
import type { GlobalTask, TeamTaskStatus } from '@shared/types';
|
|
import type { LucideIcon } from 'lucide-react';
|
|
|
|
const statusConfig: Record<TeamTaskStatus, { icon: LucideIcon; color: string; label: string }> = {
|
|
pending: { icon: Circle, color: 'text-amber-400', label: 'pending' },
|
|
in_progress: { icon: Loader2, color: 'text-blue-400', label: 'in progress' },
|
|
completed: { icon: CheckCircle2, color: 'text-emerald-400', label: 'completed' },
|
|
deleted: { icon: Circle, color: 'text-zinc-500', label: 'deleted' },
|
|
};
|
|
|
|
function formatTaskDate(dateStr: string | undefined): string | null {
|
|
if (!dateStr) return null;
|
|
const d = new Date(dateStr);
|
|
if (isNaN(d.getTime())) return null;
|
|
if (isToday(d)) return format(d, 'HH:mm');
|
|
if (isYesterday(d)) return 'Yesterday';
|
|
if (isThisYear(d)) return format(d, 'MMM d');
|
|
return format(d, 'MMM d, yyyy');
|
|
}
|
|
|
|
function formatUpdatedLabel(task: GlobalTask): string | null {
|
|
const updatedStr = task.updatedAt;
|
|
if (!updatedStr) return null;
|
|
const updated = new Date(updatedStr);
|
|
if (isNaN(updated.getTime())) return null;
|
|
|
|
// Don't show "updated" if there's no createdAt to compare, or times are within 60s
|
|
const createdStr = task.createdAt;
|
|
if (createdStr) {
|
|
const created = new Date(createdStr);
|
|
if (!isNaN(created.getTime()) && Math.abs(updated.getTime() - created.getTime()) < 60_000) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
if (isToday(updated)) return `upd ${format(updated, 'HH:mm')}`;
|
|
if (isYesterday(updated)) return 'upd yesterday';
|
|
if (isThisYear(updated)) return `upd ${format(updated, 'MMM d')}`;
|
|
return `upd ${format(updated, 'MMM d, yyyy')}`;
|
|
}
|
|
|
|
interface SidebarTaskItemProps {
|
|
task: GlobalTask;
|
|
hideTeamName?: boolean;
|
|
showTeamName?: boolean;
|
|
}
|
|
|
|
export const SidebarTaskItem = ({
|
|
task,
|
|
hideTeamName,
|
|
showTeamName,
|
|
}: SidebarTaskItemProps): React.JSX.Element => {
|
|
const openGlobalTaskDetail = useStore((s) => s.openGlobalTaskDetail);
|
|
const teamMembers = useStore((s) => s.teams.find((t) => t.teamName === task.teamName)?.members);
|
|
const unreadCount = useUnreadCommentCount(task.teamName, task.id, task.comments);
|
|
const cfg =
|
|
task.kanbanColumn === 'approved'
|
|
? ({ icon: ShieldCheck, color: 'text-teal-400', label: 'approved' } as const)
|
|
: task.kanbanColumn === 'review'
|
|
? ({ icon: Eye, color: 'text-orange-400', label: 'in review' } as const)
|
|
: (statusConfig[task.status] ?? statusConfig.pending);
|
|
const StatusIcon = cfg.icon;
|
|
const updatedLabel = formatUpdatedLabel(task);
|
|
const dateLabel = updatedLabel ?? formatTaskDate(task.createdAt);
|
|
|
|
const ownerColorSet = useMemo(() => {
|
|
if (!teamMembers || !task.owner) return null;
|
|
const colorMap = buildMemberColorMap(teamMembers);
|
|
const colorName = colorMap.get(task.owner);
|
|
return colorName ? getTeamColorSet(colorName) : null;
|
|
}, [teamMembers, task.owner]);
|
|
|
|
const projectLabel = useMemo(() => {
|
|
if (!task.projectPath?.trim()) return null;
|
|
return projectLabelFromPath(task.projectPath);
|
|
}, [task.projectPath]);
|
|
|
|
const projectColorSet = useMemo(
|
|
() => (projectLabel ? projectColor(projectLabel) : null),
|
|
[projectLabel]
|
|
);
|
|
|
|
const teamColor = useMemo(
|
|
() => (showTeamName ? nameColorSet(task.teamDisplayName) : null),
|
|
[showTeamName, task.teamDisplayName]
|
|
);
|
|
|
|
const showTeamRow = showTeamName && !hideTeamName;
|
|
|
|
return (
|
|
<button
|
|
type="button"
|
|
className={`flex w-full cursor-pointer flex-col justify-center border-b px-3 py-1.5 text-left transition-colors hover:bg-surface-raised ${task.teamDeleted ? 'opacity-50' : ''}`}
|
|
style={{ borderColor: 'var(--color-border)' }}
|
|
onClick={() => openGlobalTaskDetail(task.teamName, task.id)}
|
|
>
|
|
{/* Row 1: status + subject */}
|
|
<div className="flex w-full items-start gap-1.5 overflow-hidden">
|
|
<StatusIcon className={`mt-0.5 size-3 shrink-0 ${cfg.color}`} />
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<span
|
|
className="line-clamp-2 text-[13px] font-medium leading-tight"
|
|
style={{ color: 'var(--color-text-muted)' }}
|
|
>
|
|
{task.subject}
|
|
</span>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="right" sideOffset={6}>
|
|
{task.subject}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
{unreadCount > 0 && (
|
|
<span
|
|
className="size-1.5 shrink-0 rounded-full bg-blue-400"
|
|
title={`${unreadCount} unread`}
|
|
/>
|
|
)}
|
|
</div>
|
|
|
|
{/* Row 2: project + owner (when no team row) + date */}
|
|
<div
|
|
className="mt-0.5 flex w-full items-center gap-1.5 text-[10px] leading-tight"
|
|
style={{ color: 'var(--color-text-muted)' }}
|
|
>
|
|
{task.teamDeleted && <Trash2 className="size-2.5 shrink-0 text-zinc-500" />}
|
|
{projectLabel && (
|
|
<span
|
|
className="shrink-0"
|
|
style={projectColorSet ? { color: projectColorSet.text } : undefined}
|
|
>
|
|
{projectLabel}
|
|
</span>
|
|
)}
|
|
{!showTeamRow && (
|
|
<>
|
|
{projectLabel && <span className="opacity-40">·</span>}
|
|
<span
|
|
className="shrink-0 opacity-60"
|
|
style={ownerColorSet ? { color: ownerColorSet.text } : undefined}
|
|
>
|
|
{task.owner ?? 'unassigned'}
|
|
</span>
|
|
</>
|
|
)}
|
|
{dateLabel && (
|
|
<span className={`ml-auto shrink-0 ${updatedLabel ? 'italic opacity-70' : ''}`}>
|
|
{dateLabel}
|
|
</span>
|
|
)}
|
|
</div>
|
|
|
|
{/* Row 3: Team: name · owner */}
|
|
{showTeamRow && (
|
|
<div
|
|
className="mt-0.5 flex w-full items-center gap-1.5 text-[10px] leading-tight"
|
|
style={{ color: 'var(--color-text-muted)' }}
|
|
>
|
|
<span className="shrink-0 opacity-50">Team:</span>
|
|
<span className="shrink-0" style={teamColor ? { color: teamColor.text } : undefined}>
|
|
{task.teamDisplayName}
|
|
</span>
|
|
<span className="opacity-40">·</span>
|
|
<span
|
|
className="shrink-0 opacity-60"
|
|
style={ownerColorSet ? { color: ownerColorSet.text } : undefined}
|
|
>
|
|
{task.owner ?? 'unassigned'}
|
|
</span>
|
|
</div>
|
|
)}
|
|
</button>
|
|
);
|
|
};
|