| 60 | } |
| 61 | |
| 62 | function UnifiedView({ changes }: { changes: Change[] }) { |
| 63 | let oldLine = 1; |
| 64 | let newLine = 1; |
| 65 | |
| 66 | const rows: { oldNum: number | null; newNum: number | null; type: "add" | "remove" | "context"; text: string }[] = []; |
| 67 | |
| 68 | for (const change of changes) { |
| 69 | const lines = change.value.replace(/\n$/, "").split("\n"); |
| 70 | for (const line of lines) { |
| 71 | if (change.added) { |
| 72 | rows.push({ oldNum: null, newNum: newLine++, type: "add", text: line }); |
| 73 | } else if (change.removed) { |
| 74 | rows.push({ oldNum: oldLine++, newNum: null, type: "remove", text: line }); |
| 75 | } else { |
| 76 | rows.push({ oldNum: oldLine++, newNum: newLine++, type: "context", text: line }); |
| 77 | } |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | return ( |
| 82 | <div className="overflow-x-auto rounded-lg border border-zinc-200 dark:border-zinc-700"> |
| 83 | <table className="w-full border-collapse font-mono text-xs leading-5"> |
| 84 | <tbody> |
| 85 | {rows.map((row, i) => ( |
| 86 | <tr |
| 87 | key={i} |
| 88 | className={cn( |
| 89 | row.type === "add" && "bg-green-50 dark:bg-green-950/30", |
| 90 | row.type === "remove" && "bg-red-50 dark:bg-red-950/30" |
| 91 | )} |
| 92 | > |
| 93 | <td className="w-10 select-none border-r border-zinc-200 px-2 text-right text-zinc-400 dark:border-zinc-700 dark:text-zinc-600"> |
| 94 | {row.oldNum ?? ""} |
| 95 | </td> |
| 96 | <td className="w-10 select-none border-r border-zinc-200 px-2 text-right text-zinc-400 dark:border-zinc-700 dark:text-zinc-600"> |
| 97 | {row.newNum ?? ""} |
| 98 | </td> |
| 99 | <td className="w-4 select-none px-1 text-center"> |
| 100 | {row.type === "add" && <span className="text-green-600 dark:text-green-400">+</span>} |
| 101 | {row.type === "remove" && <span className="text-red-600 dark:text-red-400">-</span>} |
| 102 | </td> |
| 103 | <td className="whitespace-pre px-2"> |
| 104 | <span |
| 105 | className={cn( |
| 106 | row.type === "add" && "text-green-800 dark:text-green-300", |
| 107 | row.type === "remove" && "text-red-800 dark:text-red-300", |
| 108 | row.type === "context" && "text-zinc-700 dark:text-zinc-300" |
| 109 | )} |
| 110 | > |
| 111 | {row.text} |
| 112 | </span> |
| 113 | </td> |
| 114 | </tr> |
| 115 | ))} |
| 116 | </tbody> |
| 117 | </table> |
| 118 | </div> |
| 119 | ); |