cohost/html/dialogue.tsx

32 lines
811 B
TypeScript
Raw Normal View History

2023-07-10 14:52:20 -04:00
import { Html } from "./html.ts";
2023-07-09 13:21:24 -04:00
type DOption = [Html, Dialogue];
type Dialogue = Html | [Html, ...DOption[]];
function not_empty<T>(arr: T[]): arr is [T, ...T[]] {
return arr.length > 0;
}
2023-07-10 05:51:25 -04:00
export function reify_dialogue(d: Dialogue): Html {
2023-07-09 13:21:24 -04:00
if (!Array.isArray(d)) return d;
const [r, ...rest] = d;
if (rest.length == 0) {
return r;
} else {
return (
<div class="dialogue">
{r}
{...rest.map(([r, d]) => {
return (
<details>
<summary class="option">{r}</summary>
<div class="response">{reify_dialogue(d)}</div>
</details>
);
})}
</div>
);
}
}