107 lines
3.4 KiB
TypeScript
107 lines
3.4 KiB
TypeScript
import {Configure, Transpile, Extension} from "./serve.tsx";
|
|
|
|
const SocketsLive:Set<WebSocket> = new Set();
|
|
const SocketsSend =(inData:string)=>{ console.log(inData); for (const socket of SocketsLive){ socket.send(inData); } }
|
|
const Directory = `file://${Deno.cwd().replaceAll("\\", "/")}`;
|
|
|
|
Configure({
|
|
Proxy:Directory,
|
|
SWCOp:
|
|
{
|
|
sourceMaps: "inline",
|
|
minify: false,
|
|
jsc:
|
|
{
|
|
target:"es2022",
|
|
parser:
|
|
{
|
|
syntax: "typescript",
|
|
tsx: true,
|
|
}
|
|
}
|
|
},
|
|
Remap: (inImports)=>
|
|
{
|
|
console.log("running remapper");
|
|
Object.entries(inImports).forEach(([key, value])=>
|
|
{
|
|
if(value.startsWith("./"))
|
|
{
|
|
inImports[key] = value.substring(1);
|
|
}
|
|
});
|
|
|
|
inImports["react-original"] = inImports["react"];
|
|
inImports["react"] = "/_lib_/react.tsx";
|
|
console.log(inImports);
|
|
return inImports;
|
|
},
|
|
async Serve(inReq, inURL, inExt, inMap)
|
|
{
|
|
if(Transpile.Check(inExt) && !inURL.searchParams.get("reload") && !inURL.pathname.startsWith("/_lib_/"))
|
|
{
|
|
const imp = await import(Directory+inURL.pathname);
|
|
const members = [];
|
|
for( const key in imp ) { members.push(key); }
|
|
return new Response(`import {FileListen} from "/_lib_/hmr.tsx";
|
|
import * as Import from "${inURL.pathname}?reload=0";
|
|
${ members.map(m=>`let proxy_${m} = Import.${m};
|
|
export { proxy_${m} as ${m} };
|
|
`).join(" ") }
|
|
const reloadHandler = (updatedModule)=>
|
|
{
|
|
${ members.map(m=>`proxy_${m} = updatedModule.${m};`).join("\n") }
|
|
};
|
|
FileListen("${inURL.pathname}", reloadHandler);`, {headers:{"content-type":"application/javascript"}}
|
|
);
|
|
}
|
|
|
|
|
|
if(inReq.headers.get("upgrade") == "websocket")
|
|
{
|
|
try
|
|
{
|
|
const { response, socket } = Deno.upgradeWebSocket(inReq);
|
|
socket.onopen = () => SocketsLive.add(socket);
|
|
socket.onclose = () => SocketsLive.delete(socket);
|
|
socket.onmessage = (e) => {};
|
|
socket.onerror = (e) => console.log("Socket errored:", e);
|
|
return response;
|
|
}
|
|
catch(e){ /**/ }
|
|
}
|
|
}
|
|
});
|
|
|
|
let blocking = false;
|
|
const filesChanged:Map<string, string> = new Map();
|
|
for await (const event of Deno.watchFs(Deno.cwd()))
|
|
{
|
|
event.paths.forEach( path => filesChanged.set(path, event.kind) );
|
|
if(!blocking)
|
|
{
|
|
blocking = true;
|
|
setTimeout(async()=>
|
|
{
|
|
for await (const [path, action] of filesChanged)
|
|
{
|
|
if(Transpile.Check(Extension(path)))
|
|
{
|
|
const key = path.substring(Deno.cwd().length).replaceAll("\\", "/");
|
|
if(action != "remove")
|
|
{
|
|
const tsx = await Transpile.Fetch(Directory+key, key, true);
|
|
tsx && SocketsSend(key);
|
|
}
|
|
else
|
|
{
|
|
Transpile.Cache.delete(key);
|
|
}
|
|
}
|
|
}
|
|
filesChanged.clear();
|
|
blocking = false;
|
|
}
|
|
, 1000);
|
|
}
|
|
} |