interface ActiveRequest { room_id: string; admin_secret: string; public_client_id: string; active: boolean; } interface AdminRequest { room_id: string; admin_secret: string; public_client_id: string; } interface AnnounceRequest { room_id: string; client_id: string; admin_secret: string | null; name: string; } interface ControlRequest { room_id: string; client_id: string; control: string; } interface CreateResponse { room_id: string; admin_secret: string; } interface RemoveRequest { room_id: string; client_id: string; } interface ResetRequest { room_id: string; admin_secret: string; } interface Event { standard_event?: StandardEvent; admin_event?: AdminEvent; } interface StandardEvent { timer_start?: string; active?: boolean; admin_secret?: string; } interface AdminEvent { client: Client; remove: boolean; } interface Client { public_client_id: string; name: string; admin: boolean; active: boolean; } function main() { const url = new URL(location.href); if (url.searchParams.has("room")) { renderRoom(url.searchParams.get("room")!); } else { newRoom(); } } function renderRoom(roomId: string) { const clientId = uuid(); const adminSecret = localStorage.getItem(`admin_secret:${roomId}`); const prnt = document.body; const nameLabel = create(prnt, "label", "Name: ") as HTMLLabelElement; const name = create(nameLabel, "input") as HTMLInputElement; name.type = "text"; name.size = 30; name.value = localStorage.getItem("name") || ""; name.addEventListener("change", () => { localStorage.setItem("name", name.value); }); (create(prnt, "a", "[GitHub]", ["github"]) as HTMLAnchorElement).href = "https://github.com/firestuff/slidetogether"; addEventListener("unload", () => remove(roomId, clientId!)); announce(roomId, clientId!, adminSecret, name); watch(roomId, clientId!, adminSecret, prnt); } function newRoom() { fetch("/api/create", {method: "POST"}) .then(resp => resp.json()) .then(data => { const resp = data as CreateResponse; localStorage.setItem(`admin_secret:${resp.room_id}`, resp.admin_secret); const url = new URL(location.href); url.searchParams.set("room", resp.room_id); location.href = url.toString(); }); } function announce(roomId: string, clientId: string, adminSecret: string | null, name: HTMLInputElement) { const req: AnnounceRequest = { room_id: roomId, client_id: clientId, admin_secret: adminSecret, name: name.value, }; fetch("/api/announce", { method: "POST", headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(req), }) .then(() => { setTimeout(() => announce(roomId, clientId, adminSecret, name), 5000); }); } function watch(roomId: string, clientId: string, adminSecret: string | null, prnt: HTMLElement) { const url = new URL("/api/watch", location.href); url.searchParams.set("room_id", roomId); url.searchParams.set("client_id", clientId); if (adminSecret) { url.searchParams.set("admin_secret", adminSecret); } const es = new EventSource(url.toString()); renderControls(roomId, clientId, adminSecret, prnt, es); renderTimers(roomId, adminSecret, prnt, es); if (adminSecret) { renderAdmin(roomId, adminSecret, prnt, es); } } function renderControls(roomId: string, clientId: string, adminSecret: string | null, prnt: HTMLElement, es: EventSource) { const controls = create(prnt, "div", undefined, ["controls"]) as HTMLDivElement; const left = create(controls, "span", "<<<", ["control-button"]) as HTMLDivElement; left.addEventListener("click", () => control(roomId, clientId, controls, "left")); const right = create(controls, "span", ">>>", ["control-button"]) as HTMLDivElement; right.addEventListener("click", () => control(roomId, clientId, controls, "right")); document.addEventListener("keydown", (e) => { switch (e.key) { case "ArrowLeft": control(roomId, clientId, controls, "left"); break; case " ": case "ArrowRight": control(roomId, clientId, controls, "right"); break; } }); es.addEventListener("message", (e) => { const event = JSON.parse(e.data) as Event; if (!event.standard_event) { return; } if (event.standard_event.admin_secret && !adminSecret) { localStorage.setItem(`admin_secret:${roomId}`, event.standard_event.admin_secret); location.reload(); } if (event.standard_event.active) { controls.classList.add("enable"); } else { controls.classList.remove("enable"); } }); } function renderTimers(roomId: string, adminSecret: string | null, prnt: HTMLElement, es: EventSource) { let overallStart: number | null = null; es.addEventListener("message", (e) => { const event = JSON.parse(e.data) as Event; if (!event.standard_event) { return; } overallStart = parseInt(event.standard_event.timer_start || "0", 10) || null; }); const width = 10; const clockDiv = create(prnt, "div", "Clock: ".padStart(width, "\u00a0")); const clock = create(clockDiv, "span"); const overallDiv = create(prnt, "div", "Overall: ".padStart(width, "\u00a0")); const overall = create(overallDiv, "span"); if (adminSecret) { const reset = create(overallDiv, "span", "↺", ["action"]); reset.addEventListener("click", () => { const req: ResetRequest = { room_id: roomId, admin_secret: adminSecret, }; fetch("/api/reset", { method: "POST", headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(req), }); }); } setInterval(() => { const now = new Date(); clock.innerText = `${now.getHours().toString().padStart(2, "0")}h${now.getMinutes().toString().padStart(2, "0")}m${now.getSeconds().toString().padStart(2, "0")}s`; if (overallStart) { const o = Math.trunc(now.getTime() / 1000 - overallStart); overall.innerText = `${Math.trunc(o / 3600).toString().padStart(2, "0")}h${Math.trunc(o % 3600 / 60).toString().padStart(2, "0")}m${Math.trunc(o % 60).toString().padStart(2, "0")}s`; } else { overall.innerText = ""; } }, 250); } function renderAdmin(roomId: string, adminSecret: string, prnt: HTMLElement, es: EventSource) { const table = create(prnt, "table", undefined, ["users"]) as HTMLTableElement; const head = create(table, "thead"); const head1 = create(head, "tr"); create(head1, "th", "Name"); create(head1, "th", "👑"); create(head1, "th", "👆"); const body = create(table, "tbody"); const rows: Map = new Map(); es.addEventListener("message", (e) => { const event = JSON.parse(e.data) as Event; if (!event.admin_event) { return; } const client = event.admin_event.client; let row = rows.get(client.public_client_id); if (row) { row.remove(); rows.delete(client.public_client_id); } if (event.admin_event.remove) { return; } row = document.createElement("tr") as HTMLTableRowElement; row.dataset.name = client.name; let before = null; for (const iter of body.children) { const iterRow = iter as HTMLTableRowElement; if (iterRow.dataset.name!.localeCompare(row.dataset.name) > 0) { before = iter; break; } } body.insertBefore(row, before); create(row, "td", client.name); const adminCell = create(row, "td", "👑", client.admin ? ["admin", "enable"] : ["admin"]) as HTMLTableCellElement; adminCell.addEventListener("click", () => { if (!client.admin) { if (!confirm(`Grant admin access to ${client.name}?`)) { return; } admin(roomId, adminSecret, client.public_client_id); } }); const activeCell = create(row, "td", "👆", client.active ? ["active", "enable"] : ["active"]) as HTMLTableCellElement; activeCell.addEventListener("click", () => { active(roomId, adminSecret, client.public_client_id, !activeCell.classList.contains("enable")); }); rows.set(client.public_client_id, row); }); } function active(roomId: string, adminSecret: string, publicClientId: string, val: boolean) { const req: ActiveRequest = { room_id: roomId, admin_secret: adminSecret, public_client_id: publicClientId, active: val, }; fetch("/api/active", { method: "POST", headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(req), }) } function admin(roomId: string, adminSecret: string, publicClientId: string) { const req: AdminRequest = { room_id: roomId, admin_secret: adminSecret, public_client_id: publicClientId, }; fetch("/api/admin", { method: "POST", headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(req), }) } function control(roomId: string, clientId: string, controls: HTMLElement, ctrl: string) { if (!controls.classList.contains("enable")) { return; } const req: ControlRequest = { room_id: roomId, client_id: clientId, control: ctrl, }; fetch("/api/control", { method: "POST", headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(req), }) } function create(prnt: HTMLElement, tag: string, text?: string, classes?: string[]): HTMLElement { const elem = document.createElement(tag); prnt.appendChild(elem); if (text) { elem.innerText = text; } for (const cls of classes ?? []) { elem.classList.add(cls); } return elem; } function remove(roomId: string, clientId: string) { const req: RemoveRequest = { room_id: roomId, client_id: clientId, } navigator.sendBeacon("/api/remove", JSON.stringify(req)); } function uuid() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => { const r = Math.random() * 16 | 0; const v = c === 'x' ? r : (r & 0x3 | 0x8); return v.toString(16); }); } if (document.readyState === "loading") { addEventListener("DOMContentLoaded", () => main()); } else { main(); }