aprs.me/assets/js/app.ts

341 lines
9.3 KiB
TypeScript

// Include phoenix_html to handle method=PUT/DELETE in forms and buttons.
import "phoenix_html";
// Establish Phoenix Socket and LiveView configuration.
import { Socket } from "phoenix";
import { LiveSocket } from "phoenix_live_view";
declare global {
interface Window {
topbar?: {
config: (opts: { barColors: Record<number, string>; shadowColor: string }) => void;
show: (delay?: number) => void;
hide: () => void;
};
mapBundleLoaded?: boolean;
chartBundleLoaded?: boolean;
Chart?: unknown;
VendorLoader?: {
mapBundleUrl: string;
loadCharts: () => void;
};
liveSocket: any;
Hooks: Record<string, any>;
}
}
// topbar is loaded globally from vendor bundle
const topbar = window.topbar;
const csrfToken =
document
.querySelector("meta[name='csrf-token']")
?.getAttribute("content") || "";
if (!csrfToken) {
console.error("CSRF token not found in meta tags");
}
// Import hooks
import MapAPRSMap from "./map";
import ErrorBoundary from "./hooks/error_boundary";
import { InfoMap } from "./hooks/info_map";
import TimeAgoHook from "./hooks/time_ago_hook";
interface HookDef {
mounted?: () => void;
updated?: () => void;
destroyed?: () => void;
[key: string]: unknown;
}
interface DeferredHookContext {
el?: HTMLElement;
__appDestroyed?: boolean;
__chartBundleCheckCount?: number;
}
const Hooks: Record<string, HookDef> = {};
// Singleton map bundle loader — ensures the script is only appended once
let mapBundleCallbacks: Array<() => void> = [];
let mapBundleLoading = false;
function loadMapBundle(callback: () => void) {
if (window.mapBundleLoaded) {
callback();
return;
}
mapBundleCallbacks.push(callback);
if (mapBundleLoading) {
return;
}
if (window.VendorLoader) {
mapBundleLoading = true;
const script = document.createElement("script");
script.src = window.VendorLoader.mapBundleUrl;
script.onload = () => {
window.mapBundleLoaded = true;
mapBundleLoading = false;
const cbs = mapBundleCallbacks;
mapBundleCallbacks = [];
cbs.forEach((cb) => cb());
};
script.onerror = () => {
console.error("Failed to load map bundle");
mapBundleLoading = false;
const cbs = mapBundleCallbacks;
mapBundleCallbacks = [];
cbs.forEach((cb) => cb());
};
document.head.appendChild(script);
} else {
callback();
}
}
function isHookActive(context: DeferredHookContext): boolean {
return !context.__appDestroyed && !!context.el?.isConnected;
}
// Map hooks - load map bundle when needed
const originalMapMounted = MapAPRSMap.mounted;
const originalMapDestroyed = MapAPRSMap.destroyed;
Hooks.APRSMap = {
...MapAPRSMap,
mounted() {
const self = this as DeferredHookContext;
self.__appDestroyed = false;
loadMapBundle(() => {
if (originalMapMounted && isHookActive(self)) {
originalMapMounted.call(self);
}
});
},
destroyed() {
const self = this as DeferredHookContext;
self.__appDestroyed = true;
if (originalMapDestroyed) {
originalMapDestroyed.call(self);
}
},
};
const originalInfoMapDestroyed = InfoMap.destroyed;
Hooks.InfoMap = {
...InfoMap,
mounted() {
const self = this as DeferredHookContext;
self.__appDestroyed = false;
loadMapBundle(() => {
if (InfoMap.mounted && isHookActive(self)) {
InfoMap.mounted.call(self);
}
});
},
destroyed() {
const self = this as DeferredHookContext;
self.__appDestroyed = true;
if (originalInfoMapDestroyed) {
originalInfoMapDestroyed.call(self);
}
},
};
// Chart hooks - load chart bundle when needed
import { WeatherChartHooks } from "./features/weather_charts";
Object.keys(WeatherChartHooks).forEach((hookName) => {
const originalHook = (WeatherChartHooks as Record<string, HookDef>)[hookName];
Hooks[hookName] = {
...originalHook,
mounted() {
const self = this as DeferredHookContext;
self.__appDestroyed = false;
self.__chartBundleCheckCount = 0;
if (window.VendorLoader && !window.chartBundleLoaded) {
window.VendorLoader.loadCharts();
const checkChartLoaded = () => {
if (!isHookActive(self)) {
return;
}
if ((self.__chartBundleCheckCount || 0) >= 100) {
console.error(`Timed out waiting for chart bundle for ${hookName}`);
return;
}
if (window.Chart) {
if (originalHook.mounted) {
originalHook.mounted.call(self);
}
} else {
self.__chartBundleCheckCount = (self.__chartBundleCheckCount || 0) + 1;
setTimeout(checkChartLoaded, 50);
}
};
setTimeout(checkChartLoaded, 100);
} else {
if (originalHook.mounted) {
originalHook.mounted.call(this);
}
}
},
destroyed() {
const self = this as DeferredHookContext;
self.__appDestroyed = true;
if (originalHook.destroyed) {
originalHook.destroyed.call(self);
}
},
};
});
// Core hooks - no bundle loading needed
Hooks.ErrorBoundary = ErrorBoundary;
Hooks.TimeAgoHook = TimeAgoHook;
// Theme management
const applyTheme = (theme: string | null) => {
const element = document.documentElement;
if (!element) return;
if (theme === "auto" || !theme) {
if (
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches
) {
element.setAttribute("data-theme", "dark");
} else {
element.setAttribute("data-theme", "light");
}
} else {
element.setAttribute("data-theme", theme);
}
};
const getStoredTheme = (): string => {
try {
return localStorage.getItem("theme") || "auto";
} catch (_error) {
return "auto";
}
};
const setStoredTheme = (theme: string) => {
try {
localStorage.setItem("theme", theme);
} catch (_error) {
// Ignore storage failures in restricted/private browsing contexts.
}
};
// Apply initial theme from localStorage
applyTheme(getStoredTheme());
const colorSchemeQuery = window.matchMedia
? window.matchMedia("(prefers-color-scheme: dark)")
: null;
// Handle theme changes dispatched from LiveView via JS.dispatch
window.addEventListener("phx:set-theme", ((e: CustomEvent<{ theme: string }>) => {
const theme = e.detail.theme;
applyTheme(theme);
setStoredTheme(theme);
window.dispatchEvent(new CustomEvent("themeChanged"));
}) as EventListener);
// Listen for system theme changes when auto is selected
const handleSystemThemeChange = () => {
if (getStoredTheme() === "auto") {
applyTheme("auto");
window.dispatchEvent(new CustomEvent("themeChanged"));
}
};
if (colorSchemeQuery) {
if (typeof colorSchemeQuery.addEventListener === "function") {
colorSchemeQuery.addEventListener("change", handleSystemThemeChange);
} else if (typeof (colorSchemeQuery as MediaQueryList).addListener === "function") {
(colorSchemeQuery as MediaQueryList).addListener(handleSystemThemeChange);
}
}
const liveSocket = new LiveSocket("/live", Socket, {
longPollFallbackMs: 5000,
params: { _csrf_token: csrfToken, viewport_width: window.innerWidth },
hooks: Hooks,
timeout: 60000,
});
// Show progress bar on live navigation and form submits
if (topbar) {
topbar.config({
barColors: { 0: "#29d" },
shadowColor: "rgba(0, 0, 0, .3)",
});
window.addEventListener("phx:page-loading-start", (_info) => topbar.show(100));
window.addEventListener("phx:page-loading-stop", (_info) => topbar.hide());
}
// Handle connection draining reconnect events
window.addEventListener("phx:reconnect", ((e: CustomEvent<{ delay?: number }>) => {
const delay = e.detail?.delay || 1000;
setTimeout(() => {
liveSocket.disconnect();
setTimeout(() => {
liveSocket.connect();
}, 100);
}, delay);
}) as EventListener);
// connect if there are any LiveViews on the page
liveSocket.connect();
// Handle visibility change to ensure reconnection when page becomes visible
// This helps with iOS Safari background/foreground transitions
document.addEventListener("visibilitychange", () => {
if (document.visibilityState === "visible") {
const socket = (liveSocket as any).socket;
if (
socket &&
typeof socket.connectionState === "function" &&
socket.connectionState() !== "open"
) {
socket.disconnect(() => socket.connect());
}
}
});
// Workaround for Phoenix LiveView bug where fallback timer isn't cleared
// after successful WebSocket connection
window.addEventListener("phx:live_socket:connect", (_info) => {
const socket = (liveSocket as any).socket;
if (socket && socket.fallbackTimer) {
clearTimeout(socket.fallbackTimer);
socket.fallbackTimer = null;
}
});
// Also check periodically in case the event doesn't fire
setTimeout(() => {
const socket = (liveSocket as any).socket;
if (
socket &&
typeof socket.isConnected === "function" &&
socket.isConnected() &&
socket.fallbackTimer
) {
clearTimeout(socket.fallbackTimer);
socket.fallbackTimer = null;
}
}, 5000);
// expose liveSocket on window for web console debug logs and latency simulation:
// >> liveSocket.enableDebug()
// >> liveSocket.enableLatencySim(1000) // enabled for duration of browser session
// >> liveSocket.disableLatencySim()
window.liveSocket = liveSocket;
window.Hooks = Hooks;
export default Hooks;