modes #23
201
server.tsx
201
server.tsx
@ -8,16 +8,16 @@ import * as Twind from "https://esm.sh/@twind/core@1.1.3";
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import * as Iso from "@eno/iso";
|
import * as Iso from "@eno/iso";
|
||||||
|
|
||||||
let hosted = import.meta.resolve("./");
|
/**
|
||||||
const Path = {
|
* Setup a transpiler.
|
||||||
Hosted:hosted.substring(0, hosted.length-1),
|
* @param inDevMode When true, starts a file-watcher
|
||||||
Active:`file://${Deno.cwd().replaceAll("\\", "/")}`
|
* @returns
|
||||||
};
|
*/
|
||||||
console.log(Path);
|
function Transpiler(inDevMode:boolean)
|
||||||
|
|
||||||
const Transpiled = new Map();
|
|
||||||
const Transpileable =(inFilePath:string):boolean=>
|
|
||||||
{
|
{
|
||||||
|
const Transpiled = new Map();
|
||||||
|
const Transpileable =(inFilePath:string):boolean=>
|
||||||
|
{
|
||||||
let dotIndex = inFilePath.length-4;
|
let dotIndex = inFilePath.length-4;
|
||||||
if(inFilePath[dotIndex] !== ".")
|
if(inFilePath[dotIndex] !== ".")
|
||||||
{
|
{
|
||||||
@ -34,17 +34,17 @@ const Transpileable =(inFilePath:string):boolean=>
|
|||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
const Transpile =async(inCode:string, inKey:string):Promise<string>=>
|
const Transpile =async(inCode:string, inKey:string):Promise<string>=>
|
||||||
{
|
{
|
||||||
const transpile = await ESBuild.transform(inCode, { loader: "tsx", sourcemap:"inline", minify:true, sourcefile:inKey});
|
const transpile = await ESBuild.transform(inCode, inDevMode ? { loader: "tsx", sourcemap:"inline", minify: false, sourcefile:inKey} : {loader:"tsx", minify: true});
|
||||||
|
|
||||||
Transpiled.set(inKey, transpile.code);
|
Transpiled.set(inKey, transpile.code);
|
||||||
return transpile.code;
|
return transpile.code;
|
||||||
};
|
};
|
||||||
type Transpiler = (inPath:string, inKey:string, inCheck?:boolean)=>Promise<string>;
|
type Transpiler = (inPath:string, inKey:string, inCheck?:boolean)=>Promise<string>;
|
||||||
const TranspileURL:Transpiler =async(inPath, inKey, inCheck)=>
|
const TranspileURL:Transpiler =async(inPath, inKey, inCheck)=>
|
||||||
{
|
{
|
||||||
if(inCheck)
|
if(inCheck)
|
||||||
{
|
{
|
||||||
const cached = Transpiled.get(inKey);
|
const cached = Transpiled.get(inKey);
|
||||||
@ -56,12 +56,84 @@ const TranspileURL:Transpiler =async(inPath, inKey, inCheck)=>
|
|||||||
let body = await fetch(inPath);
|
let body = await fetch(inPath);
|
||||||
let text = await body.text();
|
let text = await body.text();
|
||||||
return Transpile(text, inKey);
|
return Transpile(text, inKey);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const Sockets:Set<WebSocket> = new Set();
|
||||||
|
const SocketsBroadcast =(inData:string)=>{ for (const socket of Sockets){ socket.send(inData); } }
|
||||||
|
const SocketsHandler = inDevMode ? (_req:Request)=>
|
||||||
|
{
|
||||||
|
if(_req.headers.get("upgrade") == "websocket")
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
const { response, socket } = Deno.upgradeWebSocket(_req);
|
||||||
|
socket.onopen = () => Sockets.add(socket);
|
||||||
|
socket.onclose = () => Sockets.delete(socket);
|
||||||
|
socket.onmessage = (e) => {};
|
||||||
|
socket.onerror = (e) => console.log("Socket errored:", e);
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
catch(e)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
:
|
||||||
|
()=>false;
|
||||||
|
|
||||||
const LibPath = "lib";
|
const watcher =async()=>
|
||||||
|
{
|
||||||
|
const FilesChanged:Map<string, string> = new Map();
|
||||||
|
const ProcessFiles =debounce(async()=>
|
||||||
|
{
|
||||||
|
for await (const [path, action] of FilesChanged)
|
||||||
|
{
|
||||||
|
const key = path.substring(Deno.cwd().length).replaceAll("\\", "/");
|
||||||
|
if(action != "remove")
|
||||||
|
{
|
||||||
|
await TranspileURL(Path.Active+key, key, false);
|
||||||
|
SocketsBroadcast(key);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Transpiled.delete(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
FilesChanged.clear();
|
||||||
|
}, 1000);
|
||||||
|
for await (const event of Deno.watchFs(Deno.cwd()))
|
||||||
|
{
|
||||||
|
event.paths.forEach( path =>
|
||||||
|
{
|
||||||
|
if(Transpileable(path))
|
||||||
|
{
|
||||||
|
FilesChanged.set(path, event.kind);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if(FilesChanged.size)
|
||||||
|
{
|
||||||
|
ProcessFiles();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(inDevMode)
|
||||||
|
{
|
||||||
|
watcher().then(()=>{console.log("done watching");});
|
||||||
|
}
|
||||||
|
|
||||||
|
return {TranspileURL, Transpileable, SocketsHandler};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extract all configuration info form a project's deno.jsonc file
|
||||||
|
* @param inDevMode When true, proxies react to an HMR-enabled version
|
||||||
|
* @param inLibPath
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
async function Configure(inDevMode:boolean, inLibPath:string)
|
async function Configure(inDevMode:boolean, inLibPath:string)
|
||||||
{
|
{
|
||||||
type ImportMap = {imports?:Record<string, string>, importMap?:string};
|
type ImportMap = {imports?:Record<string, string>, importMap?:string};
|
||||||
@ -194,14 +266,23 @@ async function Configure(inDevMode:boolean, inLibPath:string)
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
const {Imports, App, TwindInst, Error} = await Configure(true, LibPath);
|
let DevMode = true;
|
||||||
|
let hosted = import.meta.resolve("./");
|
||||||
|
const Path = {
|
||||||
|
Hosted: hosted.substring(0, hosted.length-1),
|
||||||
|
Active: `file://${Deno.cwd().replaceAll("\\", "/")}`,
|
||||||
|
LibDir: "lib"
|
||||||
|
};
|
||||||
|
console.log(Path);
|
||||||
|
console.log(`Dev Mode: ${DevMode}`);
|
||||||
|
|
||||||
|
const {Transpileable, TranspileURL, SocketsHandler} = Transpiler(DevMode);
|
||||||
|
const {Imports, App, TwindInst, Error} = await Configure(DevMode, Path.LibDir);
|
||||||
if(Error)
|
if(Error)
|
||||||
{
|
{
|
||||||
console.log(Error);
|
console.log(Error);
|
||||||
}
|
}
|
||||||
|
else if(App && TwindInst)
|
||||||
if(App && TwindInst)
|
|
||||||
{
|
{
|
||||||
Deno.serve({ port: Deno.args[0]||3000 }, async(_req:Request) =>
|
Deno.serve({ port: Deno.args[0]||3000 }, async(_req:Request) =>
|
||||||
{
|
{
|
||||||
@ -210,34 +291,8 @@ if(App && TwindInst)
|
|||||||
const pathLast = pathParts.at(-1);
|
const pathLast = pathParts.at(-1);
|
||||||
const pathExt:string|undefined = pathLast?.split(".")[1];
|
const pathExt:string|undefined = pathLast?.split(".")[1];
|
||||||
|
|
||||||
console.log(pathParts, pathLast, pathExt);
|
const resp = SocketsHandler(_req);
|
||||||
|
if(resp){ return resp; }
|
||||||
console.log(`Request for "${url.pathname}"...`);
|
|
||||||
|
|
||||||
if(_req.headers.get("upgrade") == "websocket")
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
const { response, socket } = Deno.upgradeWebSocket(_req);
|
|
||||||
socket.onopen = () =>
|
|
||||||
{
|
|
||||||
Sockets.add(socket);
|
|
||||||
console.log("Overwatch: Socket created");
|
|
||||||
};
|
|
||||||
socket.onclose = () =>
|
|
||||||
{
|
|
||||||
Sockets.delete(socket);
|
|
||||||
console.log("Overwatch: Socket deleted");
|
|
||||||
};
|
|
||||||
socket.onmessage = (e) => {};
|
|
||||||
socket.onerror = (e) => console.log("Overwatch: Socket errored:", e);
|
|
||||||
return response;
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
//
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -245,7 +300,7 @@ if(App && TwindInst)
|
|||||||
let type = `text/html`;
|
let type = `text/html`;
|
||||||
let body:BodyInit = ``;
|
let body:BodyInit = ``;
|
||||||
|
|
||||||
const isLib = url.pathname.startsWith(`/${LibPath}/`);
|
const isLib = url.pathname.startsWith(`/${Path.LibDir}/`);
|
||||||
|
|
||||||
if(Transpileable(url.pathname))
|
if(Transpileable(url.pathname))
|
||||||
{
|
{
|
||||||
@ -261,7 +316,7 @@ if(App && TwindInst)
|
|||||||
for( const key in imp ) { members.push(key); }
|
for( const key in imp ) { members.push(key); }
|
||||||
body =
|
body =
|
||||||
`
|
`
|
||||||
import {FileListen} from "/${LibPath}/hmr.tsx";
|
import {FileListen} from "/${Path.LibDir}/hmr.tsx";
|
||||||
import * as Import from "${url.pathname}?reload=0";
|
import * as Import from "${url.pathname}?reload=0";
|
||||||
${ members.map(m=>`let proxy_${m} = Import.${m};
|
${ members.map(m=>`let proxy_${m} = Import.${m};
|
||||||
export { proxy_${m} as ${m} };
|
export { proxy_${m} as ${m} };
|
||||||
@ -282,7 +337,7 @@ if(App && TwindInst)
|
|||||||
else if( pathExt )
|
else if( pathExt )
|
||||||
{
|
{
|
||||||
type = MIME.typeByExtension(pathExt) || "text/html";
|
type = MIME.typeByExtension(pathExt) || "text/html";
|
||||||
const _fetch = await fetch((isLib ? Path.Hosted : Path.Active)+url.pathname);
|
const _fetch = await fetch((Path.Active)+url.pathname);
|
||||||
body = await _fetch.text();
|
body = await _fetch.text();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -349,44 +404,4 @@ if(App && TwindInst)
|
|||||||
return new Response(error, {status:404});
|
return new Response(error, {status:404});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const Sockets:Set<WebSocket> = new Set();
|
|
||||||
const SocketsBroadcast =(inData:string)=>{ for (const socket of Sockets){ socket.send(inData); } }
|
|
||||||
|
|
||||||
const FilesChanged:Map<string, string> = new Map();
|
|
||||||
const ProcessFiles =debounce(async()=>
|
|
||||||
{
|
|
||||||
console.log("Processing Files...", FilesChanged);
|
|
||||||
for await (const [path, action] of FilesChanged)
|
|
||||||
{
|
|
||||||
const key = path.substring(Deno.cwd().length).replaceAll("\\", "/");
|
|
||||||
console.log(key, action);
|
|
||||||
|
|
||||||
if(action != "remove")
|
|
||||||
{
|
|
||||||
await TranspileURL(Path.Active+key, key, false);
|
|
||||||
console.log(` ...cached "${key}"`);
|
|
||||||
SocketsBroadcast(key);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Transpiled.delete(key);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
FilesChanged.clear();
|
|
||||||
}, 1000);
|
|
||||||
for await (const event of Deno.watchFs(Deno.cwd()))
|
|
||||||
{
|
|
||||||
event.paths.forEach( path =>
|
|
||||||
{
|
|
||||||
if(Transpileable(path))
|
|
||||||
{
|
|
||||||
FilesChanged.set(path, event.kind);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if(FilesChanged.size)
|
|
||||||
{
|
|
||||||
ProcessFiles();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user