ghostty/website/components/VTSequence.tsx
Mitchell Hashimoto 1aedcaecc5 website: wip cub
2023-10-06 11:25:00 -07:00

50 lines
1.1 KiB
TypeScript

// Draw a diagram showing the VT sequence.
//
// There are some special sequence elements that can be used:
//
// - CSI will be replaced with ESC [.
// - Pn will be considered a parameter
//
export default function VTSequence({
sequence,
}: {
sequence: string | [string];
}) {
let arr: [string] = typeof sequence === "string" ? [sequence] : sequence;
if (arr[0] === "CSI") {
arr.shift();
arr.unshift("ESC", "[");
}
return (
<div className="flex my-2.5">
{arr.map((elem, i) => (
<div key={`${i}${elem}`} className="shrink">
<VTElem elem={elem} />
</div>
))}
</div>
);
}
function VTElem({ elem }: { elem: string }) {
const param = elem === "Pn";
elem = param ? elem[1] : elem;
const specialChar = special[elem] ?? elem.charCodeAt(0);
const hex = specialChar.toString(16).padStart(2, "0").toUpperCase();
return (
<div className="border px-1 grid grid-rows-2 grid-cols-1 text-center">
<div>0x{hex}</div>
<div>{elem}</div>
</div>
);
}
const special: { [key: string]: number } = {
BEL: 0x07,
BS: 0x08,
ESC: 0x1b,
};