2023-06-06 12:50:50 -04:00
|
|
|
import * as MIME from "https://deno.land/std@0.180.0/media_types/mod.ts";
|
2023-06-06 22:24:43 -04:00
|
|
|
import * as SWCW from "https://esm.sh/@swc/wasm-web@1.3.62";
|
2023-06-06 12:50:50 -04:00
|
|
|
|
2023-07-08 12:21:58 -04:00
|
|
|
|
|
|
|
Deno.args.forEach(arg=>
|
|
|
|
{
|
|
|
|
if(arg.startsWith("--"))
|
|
|
|
{
|
|
|
|
const kvp = arg.substring(2).split("=");
|
|
|
|
Deno.env.set(kvp[0], kvp[1] || "true");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-06-07 23:35:00 -04:00
|
|
|
type DenoConfig = {imports:Record<string, string>};
|
|
|
|
const ImportMap:DenoConfig = {imports:{}};
|
2023-07-03 22:27:35 -04:00
|
|
|
let ImportMapOriginal = {};
|
2023-06-07 14:15:57 -04:00
|
|
|
const ImportMapReload =async()=>
|
|
|
|
{
|
2023-06-07 23:35:00 -04:00
|
|
|
let json:DenoConfig;
|
|
|
|
const path = Configuration.Proxy+"/deno.json";
|
2023-06-07 14:15:57 -04:00
|
|
|
try
|
|
|
|
{
|
2023-06-07 23:35:00 -04:00
|
|
|
const resp = await fetch(path);
|
|
|
|
json = await resp.json();
|
|
|
|
if(!json?.imports)
|
|
|
|
{ throw new Error("imports not specified in deno.json") }
|
2023-07-03 22:27:35 -04:00
|
|
|
ImportMapOriginal = json;
|
2023-06-07 14:15:57 -04:00
|
|
|
}
|
|
|
|
catch(e)
|
|
|
|
{
|
2023-06-07 23:35:00 -04:00
|
|
|
console.log(`error reading deno config "${path}" message:"${e}"`);
|
|
|
|
return;
|
2023-06-07 14:15:57 -04:00
|
|
|
}
|
2023-06-20 22:56:20 -04:00
|
|
|
|
|
|
|
if(!json.imports["react"])
|
|
|
|
{
|
|
|
|
console.log(`"react" specifier not defined in import map`);
|
|
|
|
}
|
2023-07-17 09:26:41 -04:00
|
|
|
else if(!json.imports["react/"])
|
|
|
|
{
|
|
|
|
json.imports["react/"] = json.imports["react"]+"/";
|
|
|
|
}
|
2023-06-20 22:56:20 -04:00
|
|
|
|
2023-07-17 22:41:22 -04:00
|
|
|
if(!json.imports["entry"])
|
|
|
|
{
|
|
|
|
console.log(`"entry" specifier not defined in import map.`);
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.entries(json.imports).forEach(([key, value])=>
|
|
|
|
{
|
|
|
|
if(value.startsWith("./"))
|
|
|
|
{
|
|
|
|
json.imports[key] = value.substring(1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-06-21 21:20:24 -04:00
|
|
|
ImportMap.imports = Configuration.Remap(json.imports, Configuration);
|
2023-06-07 14:15:57 -04:00
|
|
|
};
|
|
|
|
|
2023-06-21 21:20:24 -04:00
|
|
|
type CustomHTTPHandler = (inReq:Request, inURL:URL, inExt:string|false, inMap:{imports:Record<string, string>}, inConfig:Configuration)=>void|false|Response|Promise<Response|void|false>;
|
|
|
|
type CustomRemapper = (inImports:Record<string, string>, inConfig:Configuration)=>Record<string, string>;
|
2023-07-08 15:25:09 -04:00
|
|
|
type Configuration = {Proxy:string, Allow:string, Reset:string, SWCOp:SWCW.Options, Serve:CustomHTTPHandler, Shell:CustomHTTPHandler, Remap:CustomRemapper};
|
|
|
|
type ConfigurationArgs = {Proxy?:string, Allow?:string, Reset?:string, SWCOp?:SWCW.Options, Serve?:CustomHTTPHandler, Shell?:CustomHTTPHandler, Remap?:CustomRemapper};
|
2023-06-07 17:09:40 -04:00
|
|
|
let Configuration:Configuration =
|
2023-06-06 12:50:50 -04:00
|
|
|
{
|
2023-06-20 21:40:49 -04:00
|
|
|
Proxy: new URL(`file://${Deno.cwd().replaceAll("\\", "/")}`).toString(),
|
2023-06-06 12:50:50 -04:00
|
|
|
Allow: "*",
|
2023-06-06 17:22:14 -04:00
|
|
|
Reset: "/clear-cache",
|
2023-07-08 12:21:58 -04:00
|
|
|
async Serve(inReq, inURL, inExt, inMap, inConfig){},
|
2023-06-21 21:20:24 -04:00
|
|
|
Remap: (inImports, inConfig)=>
|
2023-06-07 14:15:57 -04:00
|
|
|
{
|
|
|
|
return inImports;
|
|
|
|
},
|
2023-06-21 21:20:24 -04:00
|
|
|
Shell(inReq, inURL, inExt, inMap, inConfig)
|
2023-06-07 17:09:40 -04:00
|
|
|
{
|
2023-06-21 21:20:24 -04:00
|
|
|
const parts = Deno.mainModule.split(inConfig.Proxy);
|
2023-06-20 21:40:49 -04:00
|
|
|
|
2023-06-07 17:09:40 -04:00
|
|
|
return new Response(
|
|
|
|
`<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-06-21 17:21:36 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
|
|
<meta charset="utf-8"/>
|
2023-06-07 17:09:40 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
|
|
|
<script type="importmap">${JSON.stringify(inMap)}</script>
|
|
|
|
<script type="module">
|
2023-07-17 22:41:22 -04:00
|
|
|
import Mount from "${import.meta.resolve("./run-browser.tsx")}";
|
2023-07-16 22:23:10 -04:00
|
|
|
Mount("#app", "entry");
|
2023-06-07 17:09:40 -04:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>`, {status:200, headers:{"content-type":"text/html"}});
|
|
|
|
},
|
2023-06-07 11:22:49 -04:00
|
|
|
SWCOp:
|
2023-06-06 22:24:43 -04:00
|
|
|
{
|
|
|
|
sourceMaps: false,
|
|
|
|
minify: true,
|
|
|
|
jsc:
|
|
|
|
{
|
2023-06-20 09:50:14 -04:00
|
|
|
target:"es2022",
|
2023-06-06 22:24:43 -04:00
|
|
|
minify:
|
|
|
|
{
|
|
|
|
compress: { unused: true },
|
|
|
|
mangle: true
|
|
|
|
},
|
|
|
|
parser:
|
|
|
|
{
|
|
|
|
syntax: "typescript",
|
|
|
|
tsx: true,
|
|
|
|
},
|
|
|
|
transform:
|
|
|
|
{
|
|
|
|
react: { runtime: "automatic" }
|
|
|
|
}
|
2023-06-07 11:22:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Transpile =
|
|
|
|
{
|
2023-06-06 22:24:43 -04:00
|
|
|
Cache: new Map() as Map<string, string>,
|
2023-06-07 11:22:49 -04:00
|
|
|
Files: ["tsx", "jsx", "ts", "js", "mjs"],
|
|
|
|
Check(inExtension:string|false)
|
|
|
|
{
|
|
|
|
return inExtension ? this.Files.includes(inExtension) : false;
|
|
|
|
},
|
2023-06-06 22:24:43 -04:00
|
|
|
Clear()
|
|
|
|
{
|
|
|
|
const size = this.Cache.size;
|
|
|
|
this.Cache.clear();
|
2023-06-07 14:15:57 -04:00
|
|
|
ImportMapReload();
|
2023-06-06 22:24:43 -04:00
|
|
|
return size;
|
|
|
|
},
|
2023-07-01 10:43:29 -04:00
|
|
|
/**
|
|
|
|
* Converts dynamic module imports in to static, also can resolve paths with an import map
|
|
|
|
*/
|
2023-07-03 22:27:35 -04:00
|
|
|
async Patch(inPath:string, inKey:string, inMap?:DenoConfig)
|
2023-06-27 21:54:39 -04:00
|
|
|
{
|
2023-07-03 22:27:35 -04:00
|
|
|
const check = this.Cache.get(inKey);
|
|
|
|
if(check)
|
2023-07-01 10:53:10 -04:00
|
|
|
{
|
2023-07-03 22:27:35 -04:00
|
|
|
return check;
|
2023-07-01 10:53:10 -04:00
|
|
|
}
|
|
|
|
|
2023-07-08 12:21:58 -04:00
|
|
|
let file, text;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
file = await fetch(inPath);
|
|
|
|
text = await file.text();
|
|
|
|
}
|
|
|
|
catch(e)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-07-01 10:43:29 -04:00
|
|
|
const remap = inMap ? (inPath:string)=>
|
|
|
|
{
|
|
|
|
const match = inMap.imports[inPath];
|
|
|
|
if(match)
|
|
|
|
{
|
|
|
|
return match;
|
|
|
|
}
|
|
|
|
else if(inPath.includes("/"))
|
|
|
|
{
|
|
|
|
let bestKey = "";
|
|
|
|
let bestLength = 0;
|
|
|
|
Object.keys(inMap.imports).forEach((key, i, arr)=>
|
|
|
|
{
|
|
|
|
if(key.endsWith("/") && inPath.startsWith(key) && key.length > bestLength)
|
|
|
|
{
|
|
|
|
bestKey = key;
|
2023-07-11 07:57:24 -04:00
|
|
|
bestLength = key.length;
|
2023-07-01 10:43:29 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
if(bestKey)
|
|
|
|
{
|
|
|
|
return inMap.imports[bestKey]+inPath.substring(bestKey.length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return inPath;
|
|
|
|
}
|
|
|
|
: (inPath:string)=>inPath;
|
|
|
|
let match, regex;
|
2023-07-03 22:27:35 -04:00
|
|
|
let convertedBody = text;
|
2023-07-01 10:43:29 -04:00
|
|
|
|
|
|
|
// remap static imports
|
|
|
|
regex = /from\s+(['"`])(.*?)\1/g;
|
2023-07-03 22:27:35 -04:00
|
|
|
while ((match = regex.exec(text)))
|
2023-07-01 10:43:29 -04:00
|
|
|
{
|
|
|
|
const importStatement = match[0];
|
|
|
|
const importPath = match[2];
|
|
|
|
convertedBody = convertedBody.replace(importStatement, `from "${remap(importPath)}"`);
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert dynamic imports into static (to work around deno deploy)
|
|
|
|
const staticImports = [];
|
|
|
|
regex = /(?<![\w.])import\(([^)]+)(?!import\b)\)/g;
|
2023-07-03 22:27:35 -04:00
|
|
|
while ((match = regex.exec(text)))
|
2023-06-27 21:54:39 -04:00
|
|
|
{
|
|
|
|
const importStatement = match[0];
|
2023-07-01 10:43:29 -04:00
|
|
|
const importPath = remap(match[1].substring(1, match[1].length-1));
|
2023-07-11 07:57:24 -04:00
|
|
|
const moduleName = `_dyn_${staticImports.length}` as string;
|
2023-06-27 21:54:39 -04:00
|
|
|
|
2023-07-01 10:43:29 -04:00
|
|
|
staticImports.push(`import ${moduleName} from ${importPath};`);
|
2023-06-27 21:54:39 -04:00
|
|
|
convertedBody = convertedBody.replace(importStatement, `Promise.resolve(${moduleName})`);
|
|
|
|
}
|
2023-07-01 10:53:10 -04:00
|
|
|
convertedBody = staticImports.join("\n") + convertedBody;
|
|
|
|
|
|
|
|
inKey && this.Cache.set(inKey, convertedBody);
|
|
|
|
return convertedBody;
|
2023-06-27 21:54:39 -04:00
|
|
|
},
|
2023-07-03 22:27:35 -04:00
|
|
|
async Fetch(inPath:string, inKey:string, inCheckCache=true)
|
2023-06-06 22:24:43 -04:00
|
|
|
{
|
2023-06-07 11:22:49 -04:00
|
|
|
const check = this.Cache.get(inPath);
|
|
|
|
if(check && inCheckCache)
|
2023-06-06 22:24:43 -04:00
|
|
|
{
|
2023-06-07 11:22:49 -04:00
|
|
|
return check;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
2023-06-06 22:24:43 -04:00
|
|
|
{
|
2023-06-07 11:22:49 -04:00
|
|
|
const resp = await fetch(inPath);
|
|
|
|
const text = await resp.text();
|
2023-06-07 17:09:40 -04:00
|
|
|
const {code} = await SWCW.transform(text, { ...Configuration.SWCOp, filename:inKey});
|
2023-06-07 11:22:49 -04:00
|
|
|
this.Cache.set(inKey, code);
|
|
|
|
return code;
|
2023-06-06 22:24:43 -04:00
|
|
|
}
|
2023-06-07 11:22:49 -04:00
|
|
|
catch(e)
|
2023-06-06 22:24:43 -04:00
|
|
|
{
|
2023-06-07 23:35:00 -04:00
|
|
|
console.log(`Transpile.Fetch error. Key:"${inKey}" Path:"${inPath}" Error:"${e}"`);
|
2023-06-07 11:22:49 -04:00
|
|
|
return null;
|
2023-06-06 22:24:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2023-06-06 12:50:50 -04:00
|
|
|
|
2023-07-08 12:21:58 -04:00
|
|
|
|
|
|
|
export const ExtensionPrefix =(string:string, suffix:string)=>
|
|
|
|
{
|
|
|
|
const lastDotIndex = string.lastIndexOf(".");
|
|
|
|
if (lastDotIndex === -1) {
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const prefix = string.substring(0, lastDotIndex);
|
|
|
|
const suffixString = string.substring(lastDotIndex + 1);
|
|
|
|
return prefix + "." + suffix + "." + suffixString;
|
|
|
|
};
|
|
|
|
|
2023-06-07 11:22:49 -04:00
|
|
|
export const Extension =(inPath:string)=>
|
|
|
|
{
|
|
|
|
const posSlash = inPath.lastIndexOf("/");
|
|
|
|
const posDot = inPath.lastIndexOf(".");
|
|
|
|
return posDot > posSlash ? inPath.substring(posDot+1).toLowerCase() : false;
|
|
|
|
};
|
|
|
|
|
2023-06-15 17:13:51 -04:00
|
|
|
export const Configure =(config:ConfigurationArgs)=>
|
|
|
|
{
|
|
|
|
Configuration = {...Configuration, ...config};
|
|
|
|
ImportMapReload();
|
|
|
|
}
|
2023-06-07 14:15:57 -04:00
|
|
|
|
|
|
|
await ImportMapReload();
|
|
|
|
await SWCW.default();
|
2023-07-08 12:21:58 -04:00
|
|
|
const server = Deno.serve({port:parseInt(Deno.env.get("port")||"8000")}, async(req: Request)=>
|
2023-06-06 12:50:50 -04:00
|
|
|
{
|
|
|
|
const url:URL = new URL(req.url);
|
2023-06-07 11:22:49 -04:00
|
|
|
const ext = Extension(url.pathname);
|
2023-06-07 17:09:40 -04:00
|
|
|
const headers = {"content-type":"application/json", "Access-Control-Allow-Origin": Configuration.Allow, "charset":"UTF-8"};
|
2023-06-07 11:22:49 -04:00
|
|
|
|
|
|
|
// cache-reset route
|
2023-06-07 17:09:40 -04:00
|
|
|
if(url.pathname === Configuration.Reset)
|
2023-06-06 12:50:50 -04:00
|
|
|
{
|
2023-06-07 11:22:49 -04:00
|
|
|
return new Response(`{"cleared":${Transpile.Clear()}}`, {headers});
|
2023-06-06 12:50:50 -04:00
|
|
|
}
|
|
|
|
|
2023-06-07 14:15:57 -04:00
|
|
|
// allow for custom handler
|
2023-06-21 21:20:24 -04:00
|
|
|
const custom = await Configuration.Serve(req, url, ext, ImportMap, Configuration);
|
2023-06-07 14:15:57 -04:00
|
|
|
if(custom)
|
|
|
|
{
|
|
|
|
return custom;
|
|
|
|
}
|
|
|
|
|
2023-06-07 11:22:49 -04:00
|
|
|
// transpileable files
|
|
|
|
if(Transpile.Check(ext))
|
2023-06-06 12:50:50 -04:00
|
|
|
{
|
2023-06-20 21:40:49 -04:00
|
|
|
let code;
|
|
|
|
let path;
|
2023-07-08 12:21:58 -04:00
|
|
|
let file;
|
|
|
|
if( req.headers.get("user-agent")?.startsWith("Deno") || url.searchParams.has("deno") )
|
2023-06-08 16:59:56 -04:00
|
|
|
{
|
2023-07-08 12:21:58 -04:00
|
|
|
try
|
2023-06-20 21:40:49 -04:00
|
|
|
{
|
2023-07-08 12:21:58 -04:00
|
|
|
path = Configuration.Proxy + ExtensionPrefix(url.pathname, "deno");
|
|
|
|
console.log("looking for", path);
|
|
|
|
file = await fetch(path) as Response;
|
|
|
|
if(file.ok)
|
|
|
|
{
|
|
|
|
code = await file.text();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-07-17 22:41:22 -04:00
|
|
|
throw new Error("404");
|
2023-07-08 12:21:58 -04:00
|
|
|
}
|
2023-06-20 21:40:49 -04:00
|
|
|
}
|
2023-07-08 12:21:58 -04:00
|
|
|
catch(e)
|
2023-06-08 16:59:56 -04:00
|
|
|
{
|
2023-07-08 12:21:58 -04:00
|
|
|
path = Configuration.Proxy + url.pathname;
|
|
|
|
console.log("falling back to", path);
|
|
|
|
file = await fetch(path);
|
|
|
|
code = await file.text();
|
2023-06-08 16:59:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-06-20 21:40:49 -04:00
|
|
|
path = Configuration.Proxy + url.pathname;
|
|
|
|
code = await Transpile.Fetch(path, url.pathname);
|
2023-06-08 16:59:56 -04:00
|
|
|
}
|
2023-06-20 21:40:49 -04:00
|
|
|
|
|
|
|
if(code)
|
|
|
|
{
|
|
|
|
return new Response(code, {headers:{...headers, "content-type":"application/javascript"}} );
|
|
|
|
}
|
2023-06-06 12:50:50 -04:00
|
|
|
}
|
2023-06-07 11:22:49 -04:00
|
|
|
|
2023-06-08 23:19:03 -04:00
|
|
|
// custom page html
|
|
|
|
if(!ext)
|
|
|
|
{
|
2023-06-21 21:20:24 -04:00
|
|
|
const shell = await Configuration.Shell(req, url, ext, ImportMap, Configuration);
|
2023-06-08 23:19:03 -04:00
|
|
|
if(shell)
|
|
|
|
{
|
|
|
|
return shell;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-07 11:22:49 -04:00
|
|
|
// all other static files
|
2023-06-07 14:15:57 -04:00
|
|
|
if(ext)
|
2023-06-06 12:50:50 -04:00
|
|
|
{
|
2023-06-07 14:15:57 -04:00
|
|
|
try
|
|
|
|
{
|
|
|
|
const type = MIME.typeByExtension(ext);
|
2023-06-07 17:09:40 -04:00
|
|
|
const file = await fetch(Configuration.Proxy + url.pathname);
|
2023-07-11 07:57:24 -04:00
|
|
|
return new Response(file.body, {headers:{...headers, "content-type":type||""}});
|
2023-06-07 14:15:57 -04:00
|
|
|
}
|
|
|
|
catch(e)
|
|
|
|
{
|
|
|
|
return new Response(`{"error":"${e}", "path":"${url.pathname}"}`, {status:404, headers});
|
|
|
|
}
|
2023-06-06 12:50:50 -04:00
|
|
|
}
|
2023-06-07 11:22:49 -04:00
|
|
|
|
2023-06-07 14:15:57 -04:00
|
|
|
return new Response(`{"error":"unmatched route", "path":"${url.pathname}"}`, {status:404, headers});
|
|
|
|
|
2023-06-06 12:50:50 -04:00
|
|
|
});
|