sl-map-web 0.3.0

Web UI and JSON API for the SL map renderer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
// /library page driver.

const SCOPE_KEY = "sl-map-web.library.scope";

function $(id) {
  return document.getElementById(id);
}

function fmtDate(iso) {
  if (!iso) return "";
  const d = new Date(iso);
  return Number.isNaN(d.getTime()) ? iso : d.toLocaleString();
}

function fmtCoord(x, y) {
  if (x === null || x === undefined || y === null || y === undefined) return "";
  return `${x}, ${y}`;
}

function fmtBytes(n) {
  if (n === null || n === undefined) return "";
  if (n < 1024) return `${n} B`;
  if (n < 1024 * 1024) return `${(n / 1024).toFixed(1)} KiB`;
  return `${(n / (1024 * 1024)).toFixed(1)} MiB`;
}

// Build a `<td>` containing a link to a user's profile, or a `(deleted user)`
// placeholder when the underlying account has been removed (uploader /
// creator FKs are `ON DELETE SET NULL`, so both the id and the display
// name come back as null in that case).
function profileLinkCell(userId, legacyName) {
  const cell = document.createElement("td");
  if (!userId) {
    cell.textContent = "(deleted user)";
    cell.className = "muted";
    return cell;
  }
  const a = document.createElement("a");
  a.href = `/profile/${encodeURIComponent(userId)}`;
  a.textContent = legacyName || "(unknown)";
  cell.appendChild(a);
  return cell;
}

function statusBadge(status, errorMessage) {
  const span = document.createElement("span");
  span.className = `status-pill status-${status}`;
  if (status === "failed" && errorMessage) {
    span.title = errorMessage;
    span.textContent = "failed";
  } else if (status === "in_progress") {
    span.textContent = "in progress";
  } else {
    span.textContent = status;
  }
  return span;
}

async function fetchJSON(url) {
  const resp = await fetch(url);
  if (!resp.ok) throw new Error(await resp.text());
  return resp.json();
}

async function populateScopes() {
  const sel = $("scope-select");
  const groups = await fetchJSON("/api/groups");
  const options = [["personal", "Personal"]];
  for (const g of groups.groups || []) {
    options.push([`group:${g.group_id}`, `Group: ${g.name} (${g.my_role})`]);
  }
  sel.replaceChildren();
  for (const [value, label] of options) {
    const opt = document.createElement("option");
    opt.value = value;
    opt.textContent = label;
    sel.appendChild(opt);
  }
  const saved = sessionStorage.getItem(SCOPE_KEY);
  if (saved && options.some(([v]) => v === saved)) {
    sel.value = saved;
  }
  sel.addEventListener("change", () => {
    sessionStorage.setItem(SCOPE_KEY, sel.value);
    refresh();
  });
}

function notecardRow(n) {
  const tr = document.createElement("tr");
  tr.dataset.notecardId = n.notecard_id;
  tr.appendChild(td(n.name));
  tr.appendChild(
    td(
      n.waypoint_count === null || n.waypoint_count === undefined
        ? ""
        : String(n.waypoint_count),
    ),
  );
  tr.appendChild(td(n.start_region || ""));
  tr.appendChild(td(n.end_region || ""));
  tr.appendChild(td(fmtCoord(n.lower_left_x, n.lower_left_y)));
  tr.appendChild(td(fmtCoord(n.upper_right_x, n.upper_right_y)));
  tr.appendChild(profileLinkCell(n.uploaded_by, n.uploaded_by_legacy_name));
  tr.appendChild(td(fmtDate(n.created_at)));
  const actions = document.createElement("td");
  const dl = document.createElement("a");
  dl.href = `/api/notecards/${n.notecard_id}/text`;
  dl.textContent = "Download";
  dl.className = "row-action";
  actions.appendChild(dl);
  const reuse = document.createElement("a");
  reuse.href = `/?reuse_notecard=${n.notecard_id}`;
  reuse.textContent = "Render";
  reuse.className = "row-action";
  actions.appendChild(reuse);
  const del = document.createElement("button");
  del.type = "button";
  del.textContent = "Delete";
  del.className = "row-action danger";
  del.addEventListener("click", async () => {
    const ok = await confirmModal({
      title: "Delete notecard",
      message: `Delete notecard "${n.name}"?`,
      danger: true,
      okText: "Delete",
    });
    if (!ok) return;
    const resp = await fetch(`/api/notecards/${n.notecard_id}`, {
      method: "DELETE",
    });
    if (!resp.ok) {
      await showError(resp);
      return;
    }
    refresh();
  });
  actions.appendChild(del);
  tr.appendChild(actions);
  return tr;
}

function renderRow(r) {
  const tr = document.createElement("tr");
  tr.dataset.renderId = r.render_id;
  const statusTd = document.createElement("td");
  statusTd.appendChild(statusBadge(r.status, r.error_message));
  tr.appendChild(statusTd);
  tr.appendChild(td(r.kind === "usb_notecard" ? "USB notecard" : "Grid"));
  tr.appendChild(
    r.notecard_id
      ? refCell(r.notecard_name || "(notecard)", () =>
          jumpToRow(
            "notecards",
            `#notecards-tbody tr[data-notecard-id="${r.notecard_id}"]`,
          ),
        )
      : td(r.notecard_name || ""),
  );
  tr.appendChild(
    r.glw_data_id
      ? refCell(r.glw_data_name || "(GLW data)", () =>
          jumpToRow(
            "glw",
            `#glw-tbody tr[data-glw-data-id="${r.glw_data_id}"]`,
          ),
        )
      : td(r.glw_data_name || ""),
  );
  tr.appendChild(td(fmtCoord(r.lower_left_x, r.lower_left_y)));
  tr.appendChild(td(fmtCoord(r.upper_right_x, r.upper_right_y)));
  tr.appendChild(profileLinkCell(r.created_by, r.created_by_legacy_name));
  tr.appendChild(td(fmtDate(r.created_at)));
  const actions = document.createElement("td");
  if (r.status === "done") {
    const view = document.createElement("button");
    view.type = "button";
    view.textContent = "View";
    view.className = "row-action";
    view.addEventListener("click", () =>
      showImageModal(r.render_id, r.has_without_route),
    );
    actions.appendChild(view);
    const dl = document.createElement("a");
    dl.href = `/api/renders/${r.render_id}/download`;
    dl.textContent = "Download";
    dl.className = "row-action";
    actions.appendChild(dl);
    if (r.has_without_route) {
      const dl2 = document.createElement("a");
      dl2.href = `/api/renders/${r.render_id}/download-without-route`;
      dl2.textContent = "Download (no route)";
      dl2.className = "row-action";
      actions.appendChild(dl2);
    }
    const meta = document.createElement("button");
    meta.type = "button";
    meta.textContent = "Metadata";
    meta.className = "row-action";
    meta.addEventListener("click", () => showMetadataModal(r.render_id));
    actions.appendChild(meta);
    const regen = document.createElement("a");
    regen.href = `/?regenerate=${r.render_id}`;
    regen.textContent = "Regenerate";
    regen.className = "row-action";
    actions.appendChild(regen);
  }
  const del = document.createElement("button");
  del.type = "button";
  del.textContent = "Delete";
  del.className = "row-action danger";
  del.addEventListener("click", async () => {
    const ok = await confirmModal({
      title: "Delete render",
      message: "Delete this render?",
      danger: true,
      okText: "Delete",
    });
    if (!ok) return;
    const resp = await fetch(`/api/renders/${r.render_id}`, {
      method: "DELETE",
    });
    if (!resp.ok) {
      await showError(resp);
      return;
    }
    refresh();
  });
  actions.appendChild(del);
  tr.appendChild(actions);
  return tr;
}

function td(text) {
  const el = document.createElement("td");
  el.textContent = text;
  return el;
}

// Switch the library to one of its tabs (notecards | renders | glw | logos).
// Mirrors the tab toggling app.js does on click, but lets us drive it
// programmatically for cross-references between tabs.
function activateLibraryTab(name) {
  document.querySelectorAll(".tab").forEach((t) => {
    t.classList.toggle("active", t.dataset.tab === name);
  });
  document.querySelectorAll(".tab-panel").forEach((p) => {
    p.classList.toggle("active", p.id === `tab-${name}`);
  });
}

// Switch to `tab` and, if a matching row exists there, scroll to it and flash a
// highlight. Used by the render rows to point at the notecard / GLW data they
// reference, which now live behind a different tab. The target row is loaded
// for the same scope (refresh() fills every tab), so it is normally present;
// if not we still open the tab.
function jumpToRow(tab, rowSelector) {
  activateLibraryTab(tab);
  const row = rowSelector && document.querySelector(rowSelector);
  if (!row) return;
  row.scrollIntoView({ behavior: "smooth", block: "center" });
  row.classList.remove("row-highlight");
  // Re-trigger the highlight animation even if the row was just highlighted.
  void row.offsetWidth;
  row.classList.add("row-highlight");
}

// A `<td>` whose text is a button styled as an in-page link, used for the
// render → notecard / render → GLW cross-references.
function refCell(text, onClick) {
  const cell = document.createElement("td");
  const link = document.createElement("button");
  link.type = "button";
  link.className = "linklike";
  link.textContent = text;
  link.addEventListener("click", onClick);
  cell.appendChild(link);
  return cell;
}

// Open the image-viewer modal for a saved render. When `hasWithoutRoute`
// is true, both variants are loaded and a small tab strip switches
// between them. The two `<img>` elements are stacked in the same
// position so the inactive one toggles `display:none` and the visible
// one stays put — handy for eyeball comparison of with-route vs
// without-route. The Download button in the modal footer follows the
// active tab.
async function showImageModal(renderId, hasWithoutRoute) {
  const variants = [
    {
      key: "with",
      label: "With route",
      imageUrl: `/api/renders/${renderId}/image`,
      downloadUrl: `/api/renders/${renderId}/download`,
    },
  ];
  if (hasWithoutRoute) {
    variants.push({
      key: "without",
      label: "Without route",
      imageUrl: `/api/renders/${renderId}/image-without-route`,
      downloadUrl: `/api/renders/${renderId}/download-without-route`,
    });
  }
  const downloadLink = document.createElement("a");
  downloadLink.className = "modal-btn";
  downloadLink.textContent = "Download";
  downloadLink.setAttribute("download", "");
  downloadLink.href = variants[0].downloadUrl;
  await infoModal({
    title: "Render",
    footerExtras: [downloadLink],
    build: (dialog) => {
      const imgWrap = document.createElement("div");
      imgWrap.className = "image-modal-wrap";
      const imgs = variants.map((v, i) => {
        const img = document.createElement("img");
        img.className = "image-modal-img";
        img.src = v.imageUrl;
        img.alt = `Render (${v.label})`;
        if (i !== 0) img.classList.add("hidden");
        return img;
      });
      for (const img of imgs) imgWrap.appendChild(img);

      if (variants.length > 1) {
        const tabs = document.createElement("nav");
        tabs.className = "image-modal-tabs";
        const buttons = variants.map((v, i) => {
          const btn = document.createElement("button");
          btn.type = "button";
          btn.className = i === 0 ? "subtab active" : "subtab";
          btn.textContent = v.label;
          btn.addEventListener("click", () => {
            for (let j = 0; j < variants.length; j++) {
              imgs[j].classList.toggle("hidden", j !== i);
              buttons[j].classList.toggle("active", j === i);
            }
            downloadLink.href = variants[i].downloadUrl;
          });
          return btn;
        });
        for (const btn of buttons) tabs.appendChild(btn);
        dialog.appendChild(tabs);
      }
      dialog.appendChild(imgWrap);
    },
  });
}

async function showMetadataModal(renderId) {
  let meta;
  try {
    meta = await fetchJSON(`/api/renders/${renderId}/metadata`);
  } catch (err) {
    await alertModal({
      title: "Metadata",
      message: `Failed to load metadata: ${err.message}`,
    });
    return;
  }
  // Shared render-metadata modal (defined in modal.js).
  await metadataModal(meta);
}

async function showGlwPayloadModal(glwDataId, name) {
  let raw;
  try {
    const resp = await fetch(`/api/glw/${glwDataId}/payload`);
    if (!resp.ok) {
      await showError(resp);
      return;
    }
    raw = await resp.text();
  } catch (err) {
    await alertModal({
      title: "GLW data",
      message: `Failed to load GLW data: ${err.message}`,
    });
    return;
  }
  // Pretty-print when the payload parses as JSON; otherwise show it raw.
  let pretty = raw;
  try {
    pretty = JSON.stringify(JSON.parse(raw), null, 2);
  } catch (_err) {
    // not JSON — keep the raw text
  }
  await infoModal({
    title: name ? `GLW data — ${name}` : "GLW data",
    build: (dialog) => {
      const box = document.createElement("textarea");
      box.className = "metadata-pps";
      box.readOnly = true;
      box.value = pretty;
      box.rows = 20;
      dialog.appendChild(box);

      const copyRow = document.createElement("div");
      copyRow.className = "metadata-copy-row";
      const copyBtn = document.createElement("button");
      copyBtn.type = "button";
      copyBtn.className = "modal-btn";
      copyBtn.textContent = "Copy JSON";
      const copyStatus = document.createElement("span");
      copyStatus.className = "metadata-copy-status";
      copyBtn.addEventListener("click", async () => {
        try {
          await navigator.clipboard.writeText(box.value);
          copyStatus.textContent = "Copied.";
        } catch (_err) {
          box.select();
          copyStatus.textContent = "Copy failed — selected for manual copy.";
        }
      });
      copyRow.appendChild(copyBtn);
      const dl = document.createElement("a");
      dl.href = `/api/glw/${glwDataId}/payload`;
      dl.textContent = "Download";
      dl.className = "modal-btn";
      copyRow.appendChild(dl);
      copyRow.appendChild(copyStatus);
      dialog.appendChild(copyRow);
    },
  });
}

let pollingTimer = null;

async function refresh() {
  const scope = $("scope-select").value;
  try {
    const ncs = await fetchJSON(
      `/api/notecards?scope=${encodeURIComponent(scope)}`,
    );
    const ncsBody = $("notecards-tbody");
    ncsBody.replaceChildren();
    if ((ncs.notecards || []).length === 0) {
      $("notecards-status").textContent = "No notecards in this scope.";
    } else {
      $("notecards-status").textContent = "";
      for (const n of ncs.notecards) ncsBody.appendChild(notecardRow(n));
    }
  } catch (err) {
    $("notecards-status").textContent =
      `Failed to load notecards: ${err.message}`;
  }

  try {
    const rrs = await fetchJSON(
      `/api/renders?scope=${encodeURIComponent(scope)}`,
    );
    const rrsBody = $("renders-tbody");
    rrsBody.replaceChildren();
    if ((rrs.renders || []).length === 0) {
      $("renders-status").textContent = "No renders in this scope.";
    } else {
      $("renders-status").textContent = "";
      for (const r of rrs.renders) rrsBody.appendChild(renderRow(r));
    }
    // If anything is still in progress, poll again in 5s.
    if (pollingTimer) clearTimeout(pollingTimer);
    if ((rrs.renders || []).some((r) => r.status === "in_progress")) {
      pollingTimer = setTimeout(refresh, 5000);
    }
  } catch (err) {
    $("renders-status").textContent = `Failed to load renders: ${err.message}`;
  }

  try {
    const glws = await fetchJSON(`/api/glw?scope=${encodeURIComponent(scope)}`);
    const glwBody = $("glw-tbody");
    glwBody.replaceChildren();
    if ((glws.glw_data || []).length === 0) {
      $("glw-status").textContent = "No saved GLW data in this scope.";
    } else {
      $("glw-status").textContent = "";
      for (const g of glws.glw_data) glwBody.appendChild(glwRow(g));
    }
  } catch (err) {
    $("glw-status").textContent = `Failed to load GLW data: ${err.message}`;
  }

  try {
    const logos = await fetchJSON(
      `/api/logos?scope=${encodeURIComponent(scope)}`,
    );
    const logosBody = $("logos-tbody");
    logosBody.replaceChildren();
    if ((logos.logos || []).length === 0) {
      $("logos-status").textContent = "No logos in this scope.";
    } else {
      $("logos-status").textContent = "";
      for (const l of logos.logos) logosBody.appendChild(logoRow(l));
    }
  } catch (err) {
    $("logos-status").textContent = `Failed to load logos: ${err.message}`;
  }
}

function glwRow(g) {
  const tr = document.createElement("tr");
  tr.dataset.glwDataId = g.glw_data_id;
  tr.appendChild(td(g.name || ""));
  tr.appendChild(td(prettySource(g.source_kind)));
  tr.appendChild(td(eventIdOrKey(g)));
  tr.appendChild(td(g.event_name || ""));
  tr.appendChild(td(fmtDate(g.fetched_at)));
  tr.appendChild(profileLinkCell(g.created_by, g.created_by_legacy_name));
  tr.appendChild(td(fmtDate(g.created_at)));
  const actions = document.createElement("td");
  const view = document.createElement("button");
  view.type = "button";
  view.textContent = "View JSON";
  view.className = "row-action";
  view.addEventListener("click", () =>
    showGlwPayloadModal(g.glw_data_id, g.name),
  );
  actions.appendChild(view);
  const dl = document.createElement("a");
  dl.href = `/api/glw/${g.glw_data_id}/payload`;
  dl.textContent = "Download";
  dl.className = "row-action";
  actions.appendChild(dl);
  const rename = document.createElement("button");
  rename.type = "button";
  rename.textContent = "Rename";
  rename.className = "row-action";
  rename.addEventListener("click", async () => {
    const next = await promptModal({
      title: "Rename GLW data",
      message: "New name for this GLW data row:",
      default: g.name || "",
      okText: "Rename",
    });
    if (!next || !next.trim()) return;
    const resp = await fetch(`/api/glw/${g.glw_data_id}`, {
      method: "PATCH",
      headers: { "content-type": "application/json" },
      body: JSON.stringify({ name: next.trim() }),
    });
    if (!resp.ok) {
      await showError(resp);
      return;
    }
    refresh();
  });
  actions.appendChild(rename);
  const del = document.createElement("button");
  del.type = "button";
  del.textContent = "Delete";
  del.className = "row-action danger";
  del.addEventListener("click", async () => {
    const ok = await confirmModal({
      title: "Delete GLW data",
      message:
        "Delete this saved GLW data? Any render that still references it must be deleted first.",
      danger: true,
      okText: "Delete",
    });
    if (!ok) return;
    const resp = await fetch(`/api/glw/${g.glw_data_id}`, {
      method: "DELETE",
    });
    if (!resp.ok) {
      await showError(resp);
      return;
    }
    refresh();
  });
  actions.appendChild(del);
  tr.appendChild(actions);
  return tr;
}

function logoRow(l) {
  const tr = document.createElement("tr");
  tr.dataset.logoId = l.logo_id;
  const previewTd = document.createElement("td");
  const img = document.createElement("img");
  img.src = `/api/logos/${l.logo_id}/image`;
  img.alt = l.name || "logo";
  img.className = "logo-thumb";
  previewTd.appendChild(img);
  tr.appendChild(previewTd);
  tr.appendChild(td(l.name || ""));
  tr.appendChild(td(`${l.width}×${l.height}`));
  tr.appendChild(td(fmtBytes(l.byte_size)));
  tr.appendChild(profileLinkCell(l.uploaded_by, l.uploaded_by_legacy_name));
  tr.appendChild(td(fmtDate(l.created_at)));
  const actions = document.createElement("td");
  const dl = document.createElement("a");
  dl.href = `/api/logos/${l.logo_id}/image`;
  dl.textContent = "Download";
  dl.className = "row-action";
  dl.setAttribute("download", "");
  actions.appendChild(dl);
  const rename = document.createElement("button");
  rename.type = "button";
  rename.textContent = "Rename";
  rename.className = "row-action";
  rename.addEventListener("click", async () => {
    const next = await promptModal({
      title: "Rename logo",
      message: "New name for this logo:",
      default: l.name || "",
      okText: "Rename",
    });
    if (!next || !next.trim()) return;
    const resp = await fetch(`/api/logos/${l.logo_id}`, {
      method: "PATCH",
      headers: { "content-type": "application/json" },
      body: JSON.stringify({ name: next.trim() }),
    });
    if (!resp.ok) {
      await showError(resp);
      return;
    }
    refresh();
  });
  actions.appendChild(rename);
  const del = document.createElement("button");
  del.type = "button";
  del.textContent = "Delete";
  del.className = "row-action danger";
  del.addEventListener("click", async () => {
    const ok = await confirmModal({
      title: "Delete logo",
      message:
        "Delete this logo? Any render that still references it must be deleted first.",
      danger: true,
      okText: "Delete",
    });
    if (!ok) return;
    const resp = await fetch(`/api/logos/${l.logo_id}`, {
      method: "DELETE",
    });
    if (!resp.ok) {
      await showError(resp);
      return;
    }
    refresh();
  });
  actions.appendChild(del);
  tr.appendChild(actions);
  return tr;
}

async function uploadLogo(ev) {
  ev.preventDefault();
  const scope = $("scope-select").value;
  const name = $("logo-upload-name").value.trim();
  const fileInput = $("logo-upload-file");
  const file = fileInput.files && fileInput.files[0];
  if (!name) {
    await alertModal({ title: "Upload logo", message: "Please enter a name." });
    return;
  }
  if (!file) {
    await alertModal({
      title: "Upload logo",
      message: "Please choose an image file.",
    });
    return;
  }
  const fd = new FormData();
  fd.append("scope", scope);
  fd.append("name", name);
  fd.append("file", file);
  const resp = await fetch("/api/logos", { method: "POST", body: fd });
  if (!resp.ok) {
    await showError(resp);
    return;
  }
  $("logo-upload-name").value = "";
  fileInput.value = "";
  refresh();
}

function prettySource(kind) {
  switch (kind) {
    case "event_id":
      return "By event id";
    case "event_key":
      return "By event key";
    case "pasted_json":
      return "Pasted JSON";
    default:
      return kind || "";
  }
}

function eventIdOrKey(g) {
  if (g.source_event_id != null) return String(g.source_event_id);
  if (g.source_event_key) return `"${g.source_event_key}"`;
  return "";
}

document.addEventListener("DOMContentLoaded", async () => {
  await populateScopes();
  $("logo-upload-form").addEventListener("submit", uploadLogo);
  refresh();
});