import React from 'react'; import { cn } from '@/lib/utils'; import JsonTree from './JsonTree'; import type { DiffNode, DiffResult as DiffResultType, DiffType, ViewMode } from '../types'; export interface DiffResultProps extends React.HTMLAttributes { result: DiffResultType; viewMode: ViewMode; activePath?: string; } export default function DiffResult({ result, viewMode, activePath, className, ...props }: DiffResultProps) { if (viewMode === 'sideBySide') { return (
); } return (
); } const SectionLabel = ({ text }: { text: string }) => ( {text} ); const formatPrimitive = (v: unknown): string => { if (v === undefined) return 'undefined'; if (v === null) return 'null'; if (typeof v === 'string') return JSON.stringify(v); if (typeof v === 'number' || typeof v === 'boolean') return String(v); return JSON.stringify(v); }; const isContainerType = (v: unknown): boolean => (typeof v === 'object' && v !== null) || Array.isArray(v); const prefixForType = (type: DiffType): string => { if (type === 'added') return '+'; if (type === 'removed') return '-'; if (type === 'modified') return '~'; return ' '; }; const typeThemeMap = { added: { text: 'text-emerald-600 dark:text-emerald-400', bg: 'bg-emerald-500/5 dark:bg-emerald-500/10', }, removed: { text: 'text-destructive', bg: 'bg-destructive/5 dark:bg-destructive/10', }, modified: { text: 'text-amber-600 dark:text-amber-400', bg: 'bg-amber-500/5 dark:bg-amber-500/10', }, unchanged: { text: 'text-foreground/80', bg: 'bg-transparent', }, }; interface UnifiedViewProps { node: DiffNode; depth: number; activePath?: string; } const UnifiedView = ({ node, depth, activePath }: UnifiedViewProps) => { const isRoot = depth === 0; const hasChildren = Array.isArray(node.children) && node.children.length > 0; const isContainer = hasChildren || isContainerType(node.oldValue) || isContainerType(node.newValue); const keyLabel = isRoot ? '' : `${node.key}: `; if (!isContainer) { if (node.type === 'modified') { return ( <> ); } const value = node.type === 'added' ? node.newValue : node.oldValue; return ( ); } if (node.type === 'added') { return ( ); } if (node.type === 'removed') { return ( ); } const isArr = Array.isArray(node.oldValue) || Array.isArray(node.newValue); const open = isArr ? '[' : '{'; const close = isArr ? ']' : '}'; return ( <> {node.children?.map((child) => ( ))} ); }; interface UnifiedRowProps { depth: number; type: DiffType; text: string; active?: boolean; multiline?: boolean; } const UnifiedRow = ({ depth, type, text, active, multiline }: UnifiedRowProps) => { const currentTheme = typeThemeMap[type] || typeThemeMap.unchanged; return (
{prefixForType(type)} {text}
); }; const stringifyMultiline = (v: unknown, depth: number): string => { try { const json = JSON.stringify(v, null, 2); if (!json) return formatPrimitive(v); const indent = ' '.repeat(depth); return json .split('\n') .map((line, idx) => (idx === 0 ? line : indent + line)) .join('\n'); } catch { return formatPrimitive(v); } };