My ComputerSol-37 CommandCommand BlogBlog Star MapStar Map
Command Prompt — C:\\SOL37\\
`; } toggleWindow(win); } // the uploaded JSX source (embedded) const STAR_MAP_APP_SOURCE = `REPLACED_AT_RUNTIME`; // Replace placeholder with fetched local file if available, else keep embedded minimal fallback (async ()=>{ try { const res = await fetch('interactive_star_map_v_2_react_web_app.jsx', {cache:'no-store'}); if (res.ok) { const code = await res.text(); window.__STAR_SRC = code; } else { window.__STAR_SRC = 'export default function App(){return React.createElement(\'div\',null,\'Star Map source not found.\') }'; } } catch (e) { window.__STAR_SRC = 'export default function App(){return React.createElement(\'div\',null,\'Star Map offline.\') }'; } // patch iframe srcdoc with the fetched code const w = document.getElementById('app-starmap'); if (w) { const iframe = w.querySelector('iframe'); if (iframe && iframe.srcdoc.includes('REPLACED_AT_RUNTIME')) { iframe.srcdoc = iframe.srcdoc.replace('REPLACED_AT_RUNTIME', window.__STAR_SRC.replaceAll('`','\\`')); } } })(); })();