Add sync error logging, extend error flash, fix unload saves

- Log workforce sync errors to backend stdout so they appear in docker logs
- Extend error flash from 5s to 15s so errors are readable
- Replace sendBeacon (POST-only) with keepalive fetch (PUT) on unload —
  sendBeacon was hitting 404s on all three unload saves

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-22 14:19:38 +00:00
parent c7066521ff
commit 18e24efbeb
14485 changed files with 1836116 additions and 33 deletions

View file

@ -0,0 +1,18 @@
import { useEffect } from 'react';
const DESKTOP = 'width=1280';
const RESPONSIVE = 'width=device-width, initial-scale=1.0';
function setMetaViewport(content) {
const meta = document.querySelector('meta[name="viewport"]');
if (meta)
meta.content = content;
}
export function useFrameViewport(mode) {
useEffect(() => {
setMetaViewport(mode === 'desktop' ? DESKTOP : RESPONSIVE);
window.parent.postMessage({ type: 'hnf:viewport', mode }, '*');
return () => {
setMetaViewport(RESPONSIVE);
window.parent.postMessage({ type: 'hnf:viewport', mode: 'responsive' }, '*');
};
}, [mode]);
}

View file

@ -0,0 +1,40 @@
import { useEffect, useState } from 'react';
const POLL_MS = 2 * 60 * 1000;
export function useVersionCheck(healthUrl) {
const [updateAvailable, setUpdateAvailable] = useState(false);
useEffect(() => {
let seenVersion = null;
async function check() {
try {
const res = await fetch(healthUrl, { cache: 'no-store' });
if (!res.ok)
return;
const data = await res.json();
const v = data.version;
if (!v)
return;
if (seenVersion === null) {
seenVersion = v;
}
else if (v !== seenVersion) {
setUpdateAvailable(true);
}
}
catch {
// network error — skip silently
}
}
check();
const interval = setInterval(check, POLL_MS);
function onVisible() {
if (document.visibilityState === 'visible')
check();
}
document.addEventListener('visibilitychange', onVisible);
return () => {
clearInterval(interval);
document.removeEventListener('visibilitychange', onVisible);
};
}, [healthUrl]);
return updateAvailable;
}