Files
fusion/packages/dashboard/app/components/ActivityLogModal.tsx
gsxdsm b760fa0df9 FN-6769: localize remaining dashboard strings
Localize the remaining dashboard UI clusters and refresh the generated i18n resources.

- Replace hardcoded labels across agent, plugin, mission, workflow node, research, document, activity, and miscellaneous dashboard components with app namespace translations.
- Add and synchronize locale catalog entries for English, Spanish, French, Korean, Simplified Chinese, and Traditional Chinese.
- Update i18n lint configuration and generated resource types, with a patch changeset for the published CLI package.

Files changed:
 .changeset/fn-6769-i18n-cluster.md                 |   5 +
 i18next.config.ts                                  |  47 +--
 .../dashboard/app/components/ActiveAgentsPanel.tsx |   2 +-
 packages/dashboard/app/components/ActivityFeed.tsx |  12 +-
 .../dashboard/app/components/ActivityLogModal.tsx  |   4 +-
 packages/dashboard/app/components/AddNodeModal.tsx |   4 +-
 .../dashboard/app/components/AgentDetailView.tsx   |   6 +-
 .../app/components/AgentGenerationModal.tsx        |   2 +-
 .../dashboard/app/components/AgentImportModal.tsx  |   4 +-
 .../app/components/AgentOnboardingModal.tsx        |   4 +-
 .../app/components/AgentPromptsManager.tsx         |   2 +-
 .../dashboard/app/components/AgentRunHistory.tsx   |   2 +-
 .../dashboard/app/components/AgentsOverviewBar.tsx |   2 +-
 .../dashboard/app/components/BranchGroupCard.tsx   |   4 +-
 .../dashboard/app/components/CliBinaryPanel.tsx    |   8 +-
 .../app/components/CursorCliProviderCard.tsx       |   4 +-
 .../dashboard/app/components/DashboardLoader.tsx   |   4 +-
 .../dashboard/app/components/DevServerView.tsx     |   8 +-
 .../dashboard/app/components/DocumentsView.tsx     |   6 +-
 .../dashboard/app/components/ErrorBoundary.tsx     |   9 +-
 .../dashboard/app/components/ExecutorStatusBar.tsx |   5 +-
 .../dashboard/app/components/GitHubStarPrompt.tsx  |  14 +-
 .../dashboard/app/components/GitManagerModal.tsx   |   4 +-
 .../dashboard/app/components/GroupTaskModal.tsx    |   2 +-
 packages/dashboard/app/components/Header.tsx       |   4 +-
 .../dashboard/app/components/HermesRuntimeCard.tsx |   2 +-
 packages/dashboard/app/components/InsightsView.tsx |   2 +-
 .../dashboard/app/components/IssueMentionPopup.tsx |   5 +-
 packages/dashboard/app/components/MailboxView.tsx  |   6 +-
 .../components/MilestoneSliceInterviewModal.tsx    |   2 +-
 .../app/components/MissionInterviewModal.tsx       |   2 +-
 .../dashboard/app/components/MissionManager.tsx    |   8 +-
 .../app/components/ModelOnboardingModal.tsx        |   2 +-
 .../dashboard/app/components/NodeDetailModal.tsx   |   2 +-
 .../app/components/PiExtensionsManager.tsx         |  10 +-
 .../dashboard/app/components/ProjectSelector.tsx   |   6 +-
 packages/dashboard/app/components/QuickChatFAB.tsx |  44 +--
 packages/dashboard/app/components/ResearchView.tsx |   2 +-
 packages/dashboard/app/components/RoutineCard.tsx  |   6 +-
 .../dashboard/app/components/RoutineEditor.tsx     |   2 +-
 packages/dashboard/app/components/RoutingTab.tsx   |   2 +-
 packages/dashboard/app/components/ScheduleCard.tsx |   6 +-
 packages/dashboard/app/components/ScheduleForm.tsx |   2 +-
 packages/dashboard/app/components/ScriptsModal.tsx |   2 +-
 .../app/components/StashConflictModal.tsx          |   4 +-
 .../dashboard/app/components/TerminalModal.tsx     |   2 +-
 .../app/components/nodes/WorkflowNodeTypes.tsx     |  47 +--
 packages/i18n/locales/en/app.json                  | 274 +++++++--------
 packages/i18n/locales/es/app.json                  | 144 ++++++--
 packages/i18n/locales/fr/app.json                  | 144 ++++++--
 packages/i18n/locales/ko/app.json                  | 144 ++++++--
 packages/i18n/locales/zh-CN/app.json               | 144 ++++++--
 packages/i18n/locales/zh-TW/app.json               | 144 ++++++--
 packages/i18n/src/resources.d.ts                   | 375 +++++++++++++++++++--
 54 files changed, 1261 insertions(+), 442 deletions(-)

Fusion-Task-Id: FN-6769

Fusion-Task-Lineage: a8733dc9-3b48-47e6-88c4-020f83ab41de
2026-06-20 05:04:25 -07:00

469 lines
20 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// ActivityLogModal styles (.activity-log-*, .activity-icon, etc.) currently live
// in ScriptsModal.css. Until extracted, import that file so this eager modal is styled.
import "./ScriptsModal.css";
import { useState, useEffect } from "react";
import { useTranslation } from "react-i18next";
import type { TFunction } from "i18next";
import { X, History, Trash2, Filter, RefreshCw, CheckCircle, XCircle, ArrowRight, Plus, Settings, AlertCircle, Loader2, Folder } from "lucide-react";
import { clearActivityLog, type ActivityLogEntry, type ActivityEventType, type ActivityFeedEntry } from "../api";
import { useActivityLog } from "../hooks/useActivityLog";
import type { Task, ProjectInfo } from "@fusion/core";
import { linkifyFilePaths } from "../utils/filePathLinkify";
import { getRelativeTimeBucket } from "../utils/relativeTimeAgo";
interface ActivityLogModalProps {
isOpen: boolean;
onClose: () => void;
tasks: Task[];
onOpenTaskDetail?: (taskId: string) => void;
/** When provided, shows only activity for this project */
projectId?: string;
/** List of all projects for filter dropdown */
projects?: ProjectInfo[];
/** Called when project filter changes */
onProjectFilterChange?: (projectId: string | undefined) => void;
/** Current project context - when set, uses per-project activity log */
currentProject?: ProjectInfo | null;
}
function getEventTypeLabels(t: TFunction<"app">): Record<ActivityEventType, string> {
return {
"task:created": t("activityLog.eventType.taskCreated", "Task Created"),
"task:moved": t("activityLog.eventType.taskMoved", "Task Moved"),
"task:updated": t("activityLog.eventType.taskUpdated", "Task Updated"),
"task:deleted": t("activityLog.eventType.taskDeleted", "Task Deleted"),
"task:merged": t("activityLog.eventType.taskMerged", "Task Merged"),
"task:failed": t("activityLog.eventType.taskFailed", "Task Failed"),
"task:release-authorization-required": t("activityLog.eventType.releaseAuthorizationRequired", "Release Authorization Required"),
"task:duplicate-warning-overridden": t("activityLog.eventType.duplicateWarningOverridden", "Duplicate Warning Overridden"),
"task:auto-archived-ghost-bug": t("activityLog.eventType.autoArchivedGhostBug", "Task Auto-Archived (Ghost Bug)"),
"task:auto-archived-duplicate": t("activityLog.eventType.autoArchivedDuplicate", "Task Auto-Archived (Duplicate)"),
"task:merge-worktree-reacquired": t("activityLog.eventType.mergeWorktreeReacquired", "Merge Worktree Reacquired"),
"task:auto-archived-deterministic-duplicate": t("activityLog.eventType.autoArchivedDeterministicDuplicate", "Task Auto-Archived (Deterministic Duplicate)"),
"task:auto-archived-near-duplicate": t("activityLog.eventType.autoArchivedNearDuplicate", "Task Auto-Archived (Near-Duplicate)"),
"task:near-duplicate-flagged": t("activityLog.eventType.nearDuplicateFlagged", "Near-Duplicate Flagged"),
"settings:updated": t("activityLog.eventType.settingsUpdated", "Settings Updated"),
"project:isolation-transition": t("activityLog.eventType.projectIsolationTransition", "Project Isolation Transition"),
};
}
const EVENT_TYPE_ICONS: Record<ActivityEventType, React.ReactNode> = {
"task:created": <Plus size={14} className="activity-icon created" />,
"task:moved": <ArrowRight size={14} className="activity-icon moved" />,
"task:updated": <RefreshCw size={14} className="activity-icon updated" />,
"task:deleted": <X size={14} className="activity-icon deleted" />,
"task:merged": <CheckCircle size={14} className="activity-icon merged" />,
"task:failed": <XCircle size={14} className="activity-icon failed" />,
/*
FNXC:ReleaseAuthorizationGate 2026-06-15-04:00:
The release gate parks unauthorized publish-class tasks; activity logs must expose that blocked state with warning styling so a human can authorize or revise the task.
*/
"task:release-authorization-required": <AlertCircle size={14} className="activity-icon updated" />,
"task:duplicate-warning-overridden": <AlertCircle size={14} className="activity-icon updated" />,
"task:auto-archived-ghost-bug": <AlertCircle size={14} className="activity-icon failed" />,
"task:auto-archived-duplicate": <Trash2 size={14} className="activity-icon deleted" />,
"task:auto-archived-deterministic-duplicate": <Trash2 size={14} className="activity-icon deleted" />,
"task:auto-archived-near-duplicate": <Trash2 size={14} className="activity-icon deleted" />,
"task:near-duplicate-flagged": <AlertCircle size={14} className="activity-icon updated" />,
"task:merge-worktree-reacquired": <RefreshCw size={14} className="activity-icon updated" />,
"settings:updated": <Settings size={14} className="activity-icon settings" />,
"project:isolation-transition": <Folder size={14} className="activity-icon settings" />,
};
function formatTimestamp(timestamp: string, t: TFunction<"app">): string {
/*
* FNXC:RelativeTime 2026-06-17-20:48:
* FN-6618 centralizes ActivityLogModal bucket math without changing its activityLog.time.* keys, uppercase Just now default, future-as-just-now behavior, or Invalid Date fallback.
*/
const bucket = getRelativeTimeBucket(timestamp);
if (!bucket) {
const timestampMs = Date.parse(timestamp);
if (Number.isFinite(timestampMs) && Date.now() - timestampMs < 0) return t("activityLog.time.justNow", "Just now");
return new Date(timestamp).toLocaleDateString(undefined, { month: "short", day: "numeric" });
}
switch (bucket.bucket) {
case "just-now":
return t("activityLog.time.justNow", "Just now");
case "minutes":
return t("activityLog.time.minutesAgo", "{{count}}m ago", { count: bucket.count });
case "hours":
return t("activityLog.time.hoursAgo", "{{count}}h ago", { count: bucket.count });
case "days":
return t("activityLog.time.daysAgo", "{{count}}d ago", { count: bucket.count });
case "weeks":
case "older":
return bucket.date.toLocaleDateString(undefined, { month: "short", day: "numeric" });
}
}
/**
* ActivityLogModal - Activity log with project attribution and filtering
*
* Data source selection:
* - Project view (currentProject set): reads from the per-project activity
* log via /api/activity, which is always populated with task lifecycle events.
* - Overview mode (no currentProject): reads from the unified central
* feed via /api/activity-feed, which aggregates activity across all projects.
* The project filter dropdown allows narrowing results to a specific project.
*
* Features:
* - Project name badge for each activity entry
* - Project filter dropdown (when projects list provided)
* - Event type filter
* - Real-time updates via useActivityLog hook
*/
export function ActivityLogModal({
isOpen,
onClose,
tasks: _tasks,
onOpenTaskDetail,
projectId,
projects = [],
onProjectFilterChange,
currentProject,
}: ActivityLogModalProps) {
const { t } = useTranslation("app");
const EVENT_TYPE_LABELS = getEventTypeLabels(t);
const [filteredType, setFilteredType] = useState<ActivityEventType | "all">("all");
const [filteredProjectId, setFilteredProjectId] = useState<string | "all">(projectId || "all");
const [showConfirmClear, setShowConfirmClear] = useState(false);
// Sync with external projectId prop
useEffect(() => {
setFilteredProjectId(projectId || "all");
}, [projectId]);
// Convert filters to the format expected by useActivityLog
const activityType = filteredType === "all" ? undefined : filteredType;
const activeProjectId = filteredProjectId === "all" ? undefined : filteredProjectId;
// Determine data source:
// - In project view (currentProject set): use per-project activity log (/api/activity)
// which is always populated with task lifecycle events for the current project.
// - In overview mode (no currentProject): use unified central feed (/api/activity-feed)
// which aggregates activity across all registered projects.
// The project filter dropdown (projects prop) still appears to filter by project,
// but the default data source is the per-project log in project view.
const useCentralFeed = !currentProject && projects.length > 0;
// Use the hook for data fetching
const {
entries,
loading: isLoading,
error,
refresh,
hasMore
} = useActivityLog({
projectId: activeProjectId,
type: activityType,
limit: 100,
autoRefresh: isOpen,
useCentralFeed,
});
// Convert entries to ActivityLogEntry format for compatibility
const convertedEntries: ActivityLogEntry[] = entries.map((entry: ActivityFeedEntry) => ({
id: entry.id,
timestamp: entry.timestamp,
type: entry.type,
taskId: entry.taskId,
taskTitle: entry.taskTitle,
details: entry.details,
metadata: entry.metadata,
projectId: entry.projectId,
projectName: entry.projectName,
}));
const handleClearLog = async () => {
try {
await clearActivityLog();
refresh();
setShowConfirmClear(false);
} catch {
// Error handled by hook
setShowConfirmClear(false);
}
};
const handleTaskClick = (taskId: string) => {
if (onOpenTaskDetail) {
onOpenTaskDetail(taskId);
}
};
const handleProjectFilterChange = (value: string) => {
setFilteredProjectId(value);
onProjectFilterChange?.(value === "all" ? undefined : value);
};
// Handle escape key to close
useEffect(() => {
if (!isOpen) return;
const handleKey = (e: KeyboardEvent) => {
if (e.key === "Escape") {
if (showConfirmClear) {
setShowConfirmClear(false);
} else {
onClose();
}
}
};
document.addEventListener("keydown", handleKey);
return () => document.removeEventListener("keydown", handleKey);
}, [isOpen, onClose, showConfirmClear]);
// Determine if any filter is active
const isFilterActive = filteredType !== "all" || filteredProjectId !== "all";
if (!isOpen) return null;
return (
<div
className="modal-overlay open"
onClick={(e) => {
if (e.target === e.currentTarget) onClose();
}}
role="dialog"
aria-modal="true"
data-testid="activity-log-modal-overlay"
>
<div className="modal modal-lg activity-log-modal" data-testid="activity-log-modal">
{/* Header — uses shared modal-header pattern for consistent close control */}
<div className="modal-header activity-log-header">
<div className="activity-log-title">
<History size={18} />
<span>{t("activityLog.title", "Activity Log")}</span>
</div>
<div className="activity-log-actions">
{/* Project filter dropdown (when projects provided) */}
{projects.length > 0 && (
<div className="activity-log-filter activity-log-filter--project">
<Folder size={14} />
<select
value={filteredProjectId}
onChange={(e) => handleProjectFilterChange(e.target.value)}
className="activity-log-filter-select"
data-testid="activity-project-filter"
>
<option value="all">{t("activityLog.allProjects", "All Projects")}</option>
{projects.map((project) => (
<option key={project.id} value={project.id}>
{project.name}
</option>
))}
</select>
</div>
)}
{/* Event type filter dropdown */}
<div className="activity-log-filter">
<Filter size={14} />
<select
value={filteredType}
onChange={(e) => setFilteredType(e.target.value as ActivityEventType | "all")}
className="activity-log-filter-select"
data-testid="activity-filter"
>
<option value="all">{t("activityLog.allEvents", "All Events")}</option>
{Object.entries(EVENT_TYPE_LABELS).map(([type, label]) => (
<option key={type} value={type}>
{label}
</option>
))}
</select>
</div>
{/* Refresh button */}
<button
className="activity-log-refresh"
onClick={() => refresh()}
title={t("activityLog.refresh", "Refresh")}
data-testid="activity-refresh"
>
{isLoading ? <Loader2 size={14} className="spin" /> : <RefreshCw size={14} />}
</button>
{/* Clear button */}
{convertedEntries.length > 0 && (
<button
className="activity-log-clear"
onClick={() => setShowConfirmClear(true)}
title={t("activityLog.clearLog", "Clear Log")}
data-testid="activity-clear"
>
<Trash2 size={14} />
</button>
)}
</div>
{/* Close button — uses shared modal-close for consistent sizing and alignment */}
<button
className="modal-close"
onClick={onClose}
aria-label={t("actions.close", "Close")}
title={t("actions.close", "Close")}
data-testid="activity-close"
>
×
</button>
</div>
{/* Active filters display */}
{isFilterActive && (
<div className="activity-log-active-filters">
<span className="activity-log-filter-label">{t("activityLog.activeFilters", "Active filters:")}</span>
{filteredProjectId !== "all" && (
<span className="activity-log-filter-badge">
{t("activityLog.projectFilterBadge", "Project: {{project}}", { project: projects.find(p => p.id === filteredProjectId)?.name || filteredProjectId })}
</span>
)}
{filteredType !== "all" && (
<span className="activity-log-filter-badge">
{t("activityLog.typeFilterBadge", "Type: {{type}}", { type: EVENT_TYPE_LABELS[filteredType] })}
</span>
)}
<button
className="activity-log-clear-filters"
onClick={() => {
setFilteredType("all");
setFilteredProjectId("all");
onProjectFilterChange?.(undefined);
}}
>
{t("activityLog.clearFilters", "Clear all")}
</button>
</div>
)}
{/* Content */}
<div className="activity-log-content" data-testid="activity-log-content">
{error && (
<div className="activity-log-error" data-testid="activity-error">
<AlertCircle size={16} />
<span>{error}</span>
</div>
)}
{convertedEntries.length === 0 && !isLoading && !error && (
<div className="activity-log-empty" data-testid="activity-empty">
<History size={48} className="activity-log-empty-icon" />
<p>
{isFilterActive
? t("activityLog.noMatchingActivity", "No activity matches the current filters")
: t("activityLog.noActivityRecorded", "No activity recorded yet")}
</p>
{isFilterActive && (
<button
className="btn btn-secondary"
onClick={() => {
setFilteredType("all");
setFilteredProjectId("all");
onProjectFilterChange?.(undefined);
}}
>
{t("activityLog.clearFiltersBtnLabel", "Clear Filters")}
</button>
)}
</div>
)}
<div className="activity-log-list">
{convertedEntries.map((entry) => (
<div
key={entry.id}
className="activity-log-entry"
data-testid="activity-entry"
>
<div className="activity-log-entry-icon">
{EVENT_TYPE_ICONS[entry.type]}
</div>
<div className="activity-log-entry-content">
<div className="activity-log-entry-header">
<span className="activity-log-entry-type">
{EVENT_TYPE_LABELS[entry.type]}
</span>
<span className="activity-log-entry-time">
{formatTimestamp(entry.timestamp, t)}
</span>
</div>
<div className="activity-log-entry-details">
{entry.taskId && (
<button
className="activity-log-task-link"
onClick={() => handleTaskClick(entry.taskId!)}
data-testid="activity-task-link"
>
{entry.taskId}
</button>
)}
{entry.taskTitle && (
<span className="activity-log-task-title">{entry.taskTitle}</span>
)}
<span className="activity-log-entry-text">{linkifyFilePaths(entry.details ?? "")}</span>
</div>
{entry.metadata && Object.keys(entry.metadata).length > 0 && (
<div className="activity-log-entry-metadata">
{typeof entry.metadata.from === "string" && typeof entry.metadata.to === "string" && (
<span className="activity-log-metadata-item">
{entry.metadata.from} → {entry.metadata.to}
</span>
)}
{typeof entry.metadata.merged === "boolean" && (
<span className={`activity-log-metadata-item ${entry.metadata.merged ? "success" : "error"}`}>
{entry.metadata.merged
? t("activityLog.merged", "Merged")
: t("activityLog.notMerged", "Not merged")}
</span>
)}
</div>
)}
</div>
</div>
))}
</div>
{hasMore && !isLoading && (
<button
className="activity-log-load-more"
onClick={refresh}
data-testid="activity-load-more"
>
{t("activityLog.loadMore", "Load More")}
</button>
)}
{isLoading && convertedEntries.length > 0 && (
<div className="activity-log-loading">
<Loader2 size={20} className="spin" />
</div>
)}
</div>
{/* Confirmation dialog for clear */}
{showConfirmClear && (
<div className="activity-log-confirm-overlay">
<div className="activity-log-confirm-dialog">
<h3>{t("activityLog.confirmClear", "Clear Activity Log?")}</h3>
<p>{t("activityLog.confirmClearMessage", "This will permanently delete all activity log entries. This action cannot be undone.")}</p>
<div className="activity-log-confirm-actions">
<button
className="activity-log-confirm-cancel"
onClick={() => setShowConfirmClear(false)}
>
{t("actions.cancel", "Cancel")}
</button>
<button
className="activity-log-confirm-clear"
onClick={handleClearLog}
>
{t("activityLog.confirmClearButton", "Clear Log")}
</button>
</div>
</div>
</div>
)}
</div>
</div>
);
}