Files
khadhroony-solana-project/crates/ksp-app-config-desk/frontend/ts/splash.ts
2026-08-16 12:21:28 +02:00

17 lines
661 B
TypeScript

// file: crates/ksp-app-config-desk/frontend/ts/splash.ts
// version: 2
import { getCurrentWindow } from "@tauri-apps/api/window";
import { frontendInfo, installFrontendConsoleBridge } from "./frontend_log";
installFrontendConsoleBridge("splash");
document.addEventListener("DOMContentLoaded", () => {
const windowLabel = getCurrentWindow().label;
const status = document.querySelector<HTMLElement>("#splash-status");
if (status) {
status.textContent = `Frontend chargé dans la fenêtre '${windowLabel}'. Lifecycle complet prévu en pre.008.`;
}
frontendInfo("splash", "Config Desk splash frontend loaded", { windowLabel });
});