Files
bun.sh/src/fallback.ts
Jarred Sumner 4f7ff6db2c Fixed memory leaks, but SSR is slower. Should move cleanup & restart steps to a real idle timeout
Former-commit-id: 9499ee3109cb336deb9380f0190631a30c9da51c
2021-09-04 04:50:47 -07:00

30 lines
908 B
TypeScript

import { ByteBuffer } from "peechy";
import { FallbackStep } from "./api/schema";
import {
decodeFallbackMessageContainer,
FallbackMessageContainer,
} from "./api/schema";
function getFallbackInfo(): FallbackMessageContainer {
const binary_string = globalThis.atob(
document.getElementById("__bunfallback").textContent.trim()
);
var len = binary_string.length;
var bytes = new Uint8Array(len);
for (var i = 0; i < len; i++) {
bytes[i] = binary_string.charCodeAt(i);
}
return decodeFallbackMessageContainer(new ByteBuffer(bytes));
}
globalThis.__BUN_DATA__ = getFallbackInfo();
// It's probably better to remove potentially large content from the DOM when not in use
if ("requestIdleCallback" in globalThis) {
globalThis.requestIdleCallback(() => {
document.getElementById("__bunfallback")?.remove();
document.getElementById("__bun_fallback_script")?.remove();
});
}