Compare commits
No commits in common. "master" and "start-file" have entirely different histories.
master
...
start-file
@ -1,2 +0,0 @@
|
|||||||
deno.lock
|
|
||||||
.env
|
|
8
.vscode/launch.json
vendored
8
.vscode/launch.json
vendored
@ -5,17 +5,13 @@
|
|||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Debug Serve Mode",
|
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
|
"name": "Debug Serve Mode",
|
||||||
"type": "node",
|
"type": "node",
|
||||||
|
"cwd": "${workspaceFolder}/example",
|
||||||
"runtimeExecutable": "deno",
|
"runtimeExecutable": "deno",
|
||||||
"runtimeArgs": ["task", "debug"],
|
"runtimeArgs": ["task", "debug"],
|
||||||
"attachSimplePort": 9229
|
"attachSimplePort": 9229
|
||||||
},
|
|
||||||
{
|
|
||||||
"name":"Attach",
|
|
||||||
"request": "attach",
|
|
||||||
"type": "node"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
4
.vscode/settings.json
vendored
Normal file
4
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"deno.enable": true,
|
||||||
|
"deno.unstable": true
|
||||||
|
}
|
8
app.tsx
8
app.tsx
@ -1,7 +1 @@
|
|||||||
import * as ISO from ">able/iso-elements.tsx";
|
export default ()=>{};
|
||||||
|
|
||||||
console.log(ISO)
|
|
||||||
|
|
||||||
export default ()=><div>
|
|
||||||
<h1 class="p-4 bg-red-500 text-white">App</h1>
|
|
||||||
</div>;
|
|
233
checker.tsx
233
checker.tsx
@ -1,233 +0,0 @@
|
|||||||
import { parse as JSONC } from "https://deno.land/x/jsonct@v0.1.0/mod.ts";
|
|
||||||
|
|
||||||
type ConfigCheck = {path?:string, text?:string, json?:Record<string, string|Record<string, string|string[]>>};
|
|
||||||
type ConfigCheckPair = [config:ConfigCheck, imports:ConfigCheck];
|
|
||||||
|
|
||||||
export const RootHost = import.meta.resolve("./");
|
|
||||||
export const Root = new URL(`file://${Deno.cwd().replaceAll("\\", "/")}`).toString();
|
|
||||||
export async function HuntConfig()
|
|
||||||
{
|
|
||||||
console.log("hunting in", Root);
|
|
||||||
let path:string, resp:Response, text="", json;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
path = "deno.json"
|
|
||||||
resp = await fetch(Root + "/" + path);
|
|
||||||
text = await resp.text();
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
path = "deno.jsonc";
|
|
||||||
resp = await fetch(Root + "/" + path);
|
|
||||||
text = await resp.text();
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
path = ".vscode/settings.json";
|
|
||||||
resp = await fetch(Root + "/" + path);
|
|
||||||
json = await resp.json();
|
|
||||||
|
|
||||||
path = json["deno.config"];
|
|
||||||
json = undefined;
|
|
||||||
if(path)
|
|
||||||
{
|
|
||||||
resp = await fetch(Root + "/" + path);
|
|
||||||
text = await resp.text();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
path = "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if(path)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
json = JSONC(text);
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
json = undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let imports:ConfigCheck = {};
|
|
||||||
if(json && json.imports)
|
|
||||||
{
|
|
||||||
// config.imports
|
|
||||||
imports.json = json;
|
|
||||||
imports.text = JSON.stringify(json);
|
|
||||||
imports.path = path;
|
|
||||||
}
|
|
||||||
else if(json && !json.imports && json.importMap)
|
|
||||||
{
|
|
||||||
// config.importMap
|
|
||||||
try
|
|
||||||
{
|
|
||||||
imports.path = json.importMap;
|
|
||||||
resp = await fetch(Root + "/" + imports.path);
|
|
||||||
imports.text = await resp.text();
|
|
||||||
try
|
|
||||||
{
|
|
||||||
imports.json = JSONC(imports.text);
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
imports.json = undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
// malformed import map
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return [{path, text, json}, imports] as ConfigCheckPair
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function Install(file:string, overrideName?:string, handler?:(content:string)=>string)
|
|
||||||
{
|
|
||||||
const pathFile = RootHost + "install__/" + file;
|
|
||||||
|
|
||||||
try{
|
|
||||||
const check = await Deno.readTextFile(Deno.cwd()+"/"+file);
|
|
||||||
const replace = confirm(`⚠️🚧 The file "${file}" already exists. Replace it?`);
|
|
||||||
if(replace)
|
|
||||||
{
|
|
||||||
throw("")
|
|
||||||
}
|
|
||||||
console.log(`Using pre-existing "${file}" for now.`);
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
const resp = await fetch(pathFile);
|
|
||||||
const text = await resp.text();
|
|
||||||
const name = overrideName || file;
|
|
||||||
await Deno.writeTextFile(Deno.cwd()+"/"+name, handler ? handler(text) : text);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function Check()
|
|
||||||
{
|
|
||||||
let [config, imports] = await HuntConfig();
|
|
||||||
try
|
|
||||||
{
|
|
||||||
|
|
||||||
//console.log(config, imports);
|
|
||||||
if(!config.path)
|
|
||||||
{
|
|
||||||
console.log(`🛠️ No Deno configuration found. Creating "deno.json" now.`);
|
|
||||||
await Deno.writeTextFile(Deno.cwd()+"/deno.json", `{"imports":{}}`);
|
|
||||||
Check();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
else if(!config.json)
|
|
||||||
{
|
|
||||||
if(confirm(`🚧 Deno configuration is malformed. Replace "${config.path}" with a new one?.`))
|
|
||||||
{
|
|
||||||
await Deno.writeTextFile(Deno.cwd()+"/"+config.path, `{"imports":{}}`);
|
|
||||||
Check();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
throw("⛔ Invalid configuration.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if(!imports.json)
|
|
||||||
{
|
|
||||||
if(imports.path != config.path)
|
|
||||||
{
|
|
||||||
if(confirm(`🚧 External import map "${imports.path}" is missing or malformed. Replace it with defaults?.`))
|
|
||||||
{
|
|
||||||
await Deno.writeTextFile(Deno.cwd()+"/"+imports.path, `{"imports":{}}`);
|
|
||||||
Check();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
throw("⛔ Invalid configuration.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if(!imports.json?.imports)
|
|
||||||
{
|
|
||||||
imports.json.imports = {};
|
|
||||||
}
|
|
||||||
|
|
||||||
if(config.json && imports.json?.imports)
|
|
||||||
{
|
|
||||||
const importMap = imports.json.imports as Record<string, string>;
|
|
||||||
const bake =async(obj:ConfigCheck)=> await Deno.writeTextFile(Deno.cwd()+"/"+obj.path, JSON.stringify(obj.json, null, "\t"));
|
|
||||||
|
|
||||||
importMap["react"] = `https://esm.sh/preact@10.20.2/compat`;
|
|
||||||
importMap["react/"] = `https://esm.sh/preact@10.20.2/compat/`;
|
|
||||||
importMap["@preact/signals"] = `https://esm.sh/@preact/signals@1.2.3?deps=preact@10.20.2`;
|
|
||||||
importMap["@twind/core"] = `https://esm.sh/v126/@twind/core@1.1.3/es2022/core.mjs`;
|
|
||||||
importMap[">able/"] = `${RootHost}`;
|
|
||||||
if(!importMap[">able/app.tsx"])
|
|
||||||
{
|
|
||||||
importMap[">able/app.tsx"] = `./app.tsx`;
|
|
||||||
await Install("app.tsx");
|
|
||||||
}
|
|
||||||
if(!importMap[">able/api.tsx"])
|
|
||||||
{
|
|
||||||
if(confirm(`🤔 OPTIONAL: Add backend ">able/api.tsx"?`))
|
|
||||||
{
|
|
||||||
importMap[">able/api.tsx"] = "./api.tsx";
|
|
||||||
await Install("api.tsx");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const tasks:Record<string, string> = {
|
|
||||||
"check": `deno run -A --no-lock ${RootHost}cli.tsx check`,
|
|
||||||
"local": `deno run -A --no-lock ${RootHost}cli.tsx local`,
|
|
||||||
"debug": `deno run -A --no-lock ${RootHost}cli.tsx debug`,
|
|
||||||
"serve": `deno run -A --no-lock ${RootHost}cli.tsx serve`,
|
|
||||||
"cloud": `deno run -A --no-lock ${RootHost}cli.tsx cloud`
|
|
||||||
};
|
|
||||||
const confTasks = (config.json.tasks || {}) as Record<string, string>;
|
|
||||||
config.json.tasks = {...confTasks, ...tasks};
|
|
||||||
|
|
||||||
const optionsRequired =
|
|
||||||
{
|
|
||||||
"lib": ["deno.window", "dom", "dom.iterable", "dom.asynciterable"],
|
|
||||||
"jsx": "react-jsx"
|
|
||||||
}
|
|
||||||
const optionsCurrent = config.json.compilerOptions as Record<string, string|string[]> || {};
|
|
||||||
//const compLib:string[] = compOpts.lib as string[] || [];
|
|
||||||
|
|
||||||
if(!optionsCurrent.lib)
|
|
||||||
{
|
|
||||||
optionsCurrent.lib = [];
|
|
||||||
}
|
|
||||||
optionsRequired.lib.forEach(s=>
|
|
||||||
{
|
|
||||||
if(!optionsCurrent.lib.includes(s))
|
|
||||||
{
|
|
||||||
(optionsCurrent.lib as string[]).push(s);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
optionsCurrent.jsx = optionsRequired.jsx;
|
|
||||||
config.json.compilerOptions = optionsCurrent;
|
|
||||||
|
|
||||||
await bake(imports);
|
|
||||||
await bake(config);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch(e)
|
|
||||||
{
|
|
||||||
console.log(e, "\n (Able Exiting...)");
|
|
||||||
Deno.exit();
|
|
||||||
}
|
|
||||||
console.log(`🚗 Good to go!`);
|
|
||||||
|
|
||||||
}
|
|
140
cli.tsx
140
cli.tsx
@ -1,140 +0,0 @@
|
|||||||
import * as Env from "https://deno.land/std@0.194.0/dotenv/mod.ts";
|
|
||||||
import * as Arg from "https://deno.land/std@0.194.0/flags/mod.ts";
|
|
||||||
import { RootHost, HuntConfig, Install, Check } from "./checker.tsx";
|
|
||||||
|
|
||||||
let arg = await Arg.parse(Deno.args);
|
|
||||||
let env = await Env.load();
|
|
||||||
const collect =async(inKey:string, inArg:Record<string, string>, inEnv:Record<string, string>):Promise<string|undefined>=>
|
|
||||||
{
|
|
||||||
const scanArg = inArg[inKey];
|
|
||||||
const scanEnvFile = inEnv[inKey];
|
|
||||||
const scanEnvDeno = Deno.env.get(inKey);
|
|
||||||
|
|
||||||
if(scanArg)
|
|
||||||
{
|
|
||||||
console.log(`Using "${inKey}" from passed argument.`);
|
|
||||||
return scanArg;
|
|
||||||
}
|
|
||||||
if(scanEnvFile)
|
|
||||||
{
|
|
||||||
console.log(`Using "${inKey}" from .env file.`);
|
|
||||||
return scanEnvFile;
|
|
||||||
}
|
|
||||||
if(scanEnvDeno)
|
|
||||||
{
|
|
||||||
console.log(`Using "${inKey}" from environment variable.`);
|
|
||||||
return scanEnvDeno;
|
|
||||||
}
|
|
||||||
|
|
||||||
const scanUser = prompt(`No "${inKey}" found. Enter one here:`);
|
|
||||||
if(!scanUser || scanUser?.length < 3)
|
|
||||||
{
|
|
||||||
console.log("Exiting...");
|
|
||||||
Deno.exit();
|
|
||||||
}
|
|
||||||
return scanUser;
|
|
||||||
};
|
|
||||||
|
|
||||||
export async function SubProcess(args:string[])
|
|
||||||
{
|
|
||||||
const command = new Deno.Command(
|
|
||||||
`deno`,
|
|
||||||
{
|
|
||||||
args,
|
|
||||||
stdin: "piped",
|
|
||||||
stdout: "piped"
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
const child = command.spawn();
|
|
||||||
|
|
||||||
// open a file and pipe the subprocess output to it.
|
|
||||||
const writableStream = new WritableStream({
|
|
||||||
write(chunk: Uint8Array): Promise<void> {
|
|
||||||
Deno.stdout.write(chunk);
|
|
||||||
return Promise.resolve();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
child.stdout.pipeTo(writableStream);
|
|
||||||
|
|
||||||
// manually close stdin
|
|
||||||
child.stdin.close();
|
|
||||||
const status = await child.status;
|
|
||||||
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(arg._.length)
|
|
||||||
{
|
|
||||||
|
|
||||||
const [config, imports] = await HuntConfig();
|
|
||||||
|
|
||||||
console.log("able subprocesses running with ", config.path);
|
|
||||||
|
|
||||||
switch(arg._[0])
|
|
||||||
{
|
|
||||||
case "check" :
|
|
||||||
case "setup" :
|
|
||||||
{
|
|
||||||
await Check();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
case "local" :
|
|
||||||
{
|
|
||||||
await SubProcess(["run", `-A`, `--no-lock`, `--config=${config.path}`, RootHost+"run.tsx", "--dev", ...Deno.args]);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "debug" :
|
|
||||||
{
|
|
||||||
await SubProcess(["run", `-A`, `--no-lock`, `--config=${config.path}`, `--inspect-brk`, RootHost+"run.tsx", "--dev", ...Deno.args]);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "serve" :
|
|
||||||
{
|
|
||||||
const args = ["run", `-A`, `--no-lock`, `--config=${config.path}`, RootHost+"run.tsx", ...Deno.args];
|
|
||||||
console.log("args are", args);
|
|
||||||
await SubProcess(args);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "cloud" :
|
|
||||||
{
|
|
||||||
const useToken = await collect("DENO_DEPLOY_TOKEN", arg, env);
|
|
||||||
const useProject = await collect("DENO_DEPLOY_PROJECT", arg, env);
|
|
||||||
|
|
||||||
let scanProd:string[]|string|null = prompt(`Do you want to deploy to *production*?`);
|
|
||||||
if(scanProd)
|
|
||||||
{
|
|
||||||
scanProd = prompt(`Are you sure? This will update the live project at "${useProject}"`);
|
|
||||||
scanProd = scanProd ? ["--prod"] : [];
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
scanProd = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
const command = [
|
|
||||||
"run",
|
|
||||||
"-A",
|
|
||||||
"--no-lock",
|
|
||||||
`--config=${config.path}`,
|
|
||||||
"https://deno.land/x/deploy@1.12.0/deployctl.ts",
|
|
||||||
"deploy",
|
|
||||||
`--project=${useProject}`,
|
|
||||||
`--token=${useToken}`,
|
|
||||||
`--import-map=${imports.path}`,
|
|
||||||
`--exclude=.*`,
|
|
||||||
...scanProd,
|
|
||||||
RootHost+"run.tsx"];
|
|
||||||
|
|
||||||
await SubProcess(command);
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "upgrade" :
|
|
||||||
{
|
|
||||||
await SubProcess(["install", `-A`, `-r`, `-f`, `--no-lock`, `--config=${config.path}`, RootHost+"cli.tsx", ...Deno.args]);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
19
deno.json
Normal file
19
deno.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": { "lib": ["deno.window", "dom"],
|
||||||
|
"jsx": "react-jsx",
|
||||||
|
"jsxImportSource": "https://esm.sh/preact@10.15.1/compat"
|
||||||
|
},
|
||||||
|
"imports":
|
||||||
|
{
|
||||||
|
"react":"https://esm.sh/preact@10.15.1/compat",
|
||||||
|
"react-original":"https://esm.sh/preact@10.15.1/compat",
|
||||||
|
"able/": "http://localhost:4507/"
|
||||||
|
},
|
||||||
|
"tasks":
|
||||||
|
{
|
||||||
|
"local": "deno run -A --reload=http://localhost:4507 --no-lock ./run-local.tsx --port=1234",
|
||||||
|
"serve": "deno run -A --reload=http://localhost:4507 --no-lock ./run-serve.tsx --port=1234",
|
||||||
|
"debug": "deno run -A --reload=http://localhost:4507 --inspect-wait --no-lock ./run-serve.tsx --port=1234",
|
||||||
|
"deploy":"deno run -A --no-lock --reload=http://localhost:4507 http://localhost:4507/run-deploy.tsx"
|
||||||
|
}
|
||||||
|
}
|
28
deno.jsonc
28
deno.jsonc
@ -1,28 +0,0 @@
|
|||||||
{
|
|
||||||
"imports": {
|
|
||||||
|
|
||||||
"react": "https://esm.sh/preact@10.20.2/compat",
|
|
||||||
"react-original": "https://esm.sh/preact@10.20.2/compat",
|
|
||||||
"react-original/": "https://esm.sh/preact@10.20.2/compat/",
|
|
||||||
"react/": "https://esm.sh/preact@10.20.2/compat/",
|
|
||||||
"@preact/signals": "https://esm.sh/@preact/signals@1.2.3?deps=preact@10.20.2",
|
|
||||||
"signals-original": "https://esm.sh/@preact/signals@1.2.3?deps=preact@10.20.2",
|
|
||||||
"@twind/core": "https://esm.sh/v126/@twind/core@1.1.3/es2022/core.mjs",
|
|
||||||
|
|
||||||
">other/": "https://esm.sh/",
|
|
||||||
">able/": "./",
|
|
||||||
">able/app.tsx": "./app.tsx"
|
|
||||||
},
|
|
||||||
"tasks": {
|
|
||||||
"check": "deno run -A --no-lock ./cli.tsx check",
|
|
||||||
"local": "deno run -A --no-lock ./cli.tsx local",
|
|
||||||
"debug": "deno run -A --no-lock ./cli.tsx debug",
|
|
||||||
"serve": "deno run -A --no-lock ./cli.tsx serve",
|
|
||||||
"cloud": "deno run -A --no-lock ./cli.tsx cloud",
|
|
||||||
"install": "deno install -A -r -f -n able ./cli.tsx"
|
|
||||||
},
|
|
||||||
"compilerOptions": {
|
|
||||||
"jsx": "react-jsx",
|
|
||||||
"lib": ["deno.window", "dom", "dom.iterable", "dom.asynciterable"]
|
|
||||||
}
|
|
||||||
}
|
|
30
deno.lock
30
deno.lock
@ -1,6 +1,10 @@
|
|||||||
{
|
{
|
||||||
"version": "3",
|
"version": "2",
|
||||||
"remote": {
|
"remote": {
|
||||||
|
"http://localhost:4507/hmr-static.tsx": "b88a33a019b7a6090d05a43d15843b36fe294196c4423c753fe3654ab369f1b1",
|
||||||
|
"http://localhost:4507/run-local.tsx": "2c0bf9b994677f2c0bb6ef26616960f25f61e3f8b4767891a95896fb7752a74e",
|
||||||
|
"http://localhost:4507/run-serve.tsx": "400828ea6457485c3bfcfe3bfdd60b1844e6e66f56a3606d250ce9a7481c6ead",
|
||||||
|
"http://localhost:4507/run.tsx": "f7f2a90d2bda35e5de3b307e36666120439f516d88f44a4388a3251679a99e3e",
|
||||||
"https://deno.land/std@0.180.0/media_types/_db.ts": "7606d83e31f23ce1a7968cbaee852810c2cf477903a095696cdc62eaab7ce570",
|
"https://deno.land/std@0.180.0/media_types/_db.ts": "7606d83e31f23ce1a7968cbaee852810c2cf477903a095696cdc62eaab7ce570",
|
||||||
"https://deno.land/std@0.180.0/media_types/_util.ts": "916efbd30b6148a716f110e67a4db29d6949bf4048997b754415dd7e42c52378",
|
"https://deno.land/std@0.180.0/media_types/_util.ts": "916efbd30b6148a716f110e67a4db29d6949bf4048997b754415dd7e42c52378",
|
||||||
"https://deno.land/std@0.180.0/media_types/content_type.ts": "c682589a0aeb016bfed355cc1ed6fbb3ead2ea48fc0000ac5de6a5730613ad1c",
|
"https://deno.land/std@0.180.0/media_types/content_type.ts": "c682589a0aeb016bfed355cc1ed6fbb3ead2ea48fc0000ac5de6a5730613ad1c",
|
||||||
@ -12,21 +16,13 @@
|
|||||||
"https://deno.land/std@0.180.0/media_types/parse_media_type.ts": "bed260d868ea271445ae41d748e7afed9b5a7f407d2777ead08cecf73e9278de",
|
"https://deno.land/std@0.180.0/media_types/parse_media_type.ts": "bed260d868ea271445ae41d748e7afed9b5a7f407d2777ead08cecf73e9278de",
|
||||||
"https://deno.land/std@0.180.0/media_types/type_by_extension.ts": "6076a7fc63181d70f92ec582fdea2c927eb2cfc7f9c9bee9d6add2aca86f2355",
|
"https://deno.land/std@0.180.0/media_types/type_by_extension.ts": "6076a7fc63181d70f92ec582fdea2c927eb2cfc7f9c9bee9d6add2aca86f2355",
|
||||||
"https://deno.land/std@0.180.0/media_types/vendor/mime-db.v1.52.0.ts": "6925bbcae81ca37241e3f55908d0505724358cda3384eaea707773b2c7e99586",
|
"https://deno.land/std@0.180.0/media_types/vendor/mime-db.v1.52.0.ts": "6925bbcae81ca37241e3f55908d0505724358cda3384eaea707773b2c7e99586",
|
||||||
"https://deno.land/std@0.194.0/_util/asserts.ts": "178dfc49a464aee693a7e285567b3d0b555dc805ff490505a8aae34f9cfb1462",
|
"https://esm.sh/@swc/wasm-web@1.3.62": "e077889c90bd43ad29e9cf086818efc334bdf31b933575e0c27972173053a3c6",
|
||||||
"https://deno.land/std@0.194.0/collections/filter_values.ts": "5b9feaf17b9a6e5ffccdd36cf6f38fa4ffa94cff2602d381c2ad0c2a97929652",
|
"https://esm.sh/preact@10.15.1/compat/jsx-runtime": "3f191e04473646ff8f5f76fb4378fc502a7cc892d9e147584d4f7531981bc86b",
|
||||||
"https://deno.land/std@0.194.0/collections/without_all.ts": "a89f5da0b5830defed4f59666e188df411d8fece35a5f6ca69be6ca71a95c185",
|
"https://esm.sh/stable/preact@10.15.1/denonext/compat.js": "bad6b5b4d4fdfa5975b7a8d30410bd6877247f058e4952799fab39f66a94b8cf",
|
||||||
"https://deno.land/std@0.194.0/dotenv/mod.ts": "39e5d19e077e55d7e01ea600eb1c6d1e18a8dfdfc65d68826257a576788da3a4",
|
"https://esm.sh/stable/preact@10.15.1/denonext/compat/jsx-runtime.js": "e5c016fa258601ca873ba29188e56cede90372a0bdb52e58b0dfb801f2e2f219",
|
||||||
"https://deno.land/std@0.194.0/flags/mod.ts": "17f444ddbee43c5487568de0c6a076c7729cfe90d96d2ffcd2b8f8adadafb6e8",
|
"https://esm.sh/stable/preact@10.15.1/denonext/hooks.js": "5c989ad368cf4f2cb3a5d7d1801843d9348c599fe3e7731d04728f7b845d724e",
|
||||||
"https://deno.land/x/jsonct@v0.1.0/mod.ts": "dba7e7f3529be6369f5c718e3a18b69f15ffa176006d2a7565073ce6c5bd9f3f",
|
"https://esm.sh/stable/preact@10.15.1/denonext/jsx-runtime.js": "52806054f5b3477005ab4bdc17de3d219ccc6c130d0cd803c45667b0cac2f6ed",
|
||||||
"https://deno.land/x/jsonct@v0.1.0/src/_util/asserts.ts": "178dfc49a464aee693a7e285567b3d0b555dc805ff490505a8aae34f9cfb1462",
|
"https://esm.sh/stable/preact@10.15.1/denonext/preact.mjs": "30710ac1d5ff3711ae0c04eddbeb706f34f82d97489f61aaf09897bc75d2a628",
|
||||||
"https://deno.land/x/jsonct@v0.1.0/src/parse.ts": "a3a016822446b0584b40bae9098df480db5590a9915c9e3c623ba2801cf1b8df",
|
"https://esm.sh/v130/@swc/wasm-web@1.3.62/denonext/wasm-web.mjs": "57046d46c9ef1398a294ba7447034f5966e48866a05c309cccec4bb4d6e7c61b"
|
||||||
"https://esm.sh/@swc/wasm-web@1.3.62": "b43fb5cde95beb7736182fa62250235dfa6b71717b9d38aa4e6077f05ec90e5e",
|
|
||||||
"https://esm.sh/preact@10.20.2/compat/jsx-runtime": "e3942a5ffd734d5eaf0790ada3ed4ad81c0c0c2ff56a8e4740247de259f7fb65",
|
|
||||||
"https://esm.sh/stable/preact@10.20.2/denonext/compat.js": "2e0564fd10e09b587503f9ecd4407ac8726c79beae80026ac89034a47b270c68",
|
|
||||||
"https://esm.sh/stable/preact@10.20.2/denonext/compat/jsx-runtime.js": "fbbbceb98af95d1c73181f9e5043fad6cdae30ef9e5fcf90d44ffd6fa6055c02",
|
|
||||||
"https://esm.sh/stable/preact@10.20.2/denonext/hooks.js": "91d64a217b2f2c9f724042d0ed1b87bf3edf721261e86358aa6fd55501ee915f",
|
|
||||||
"https://esm.sh/stable/preact@10.20.2/denonext/jsx-runtime.js": "2a5b981955e92e3ff86906ac0e5955ec0e6e5ca71032f3f063912cb85ae9a7f1",
|
|
||||||
"https://esm.sh/stable/preact@10.20.2/denonext/preact.mjs": "f418bc70c24b785703afb9d4dea8cdc1e315e43c8df620a0c52fd27ad9bd70eb",
|
|
||||||
"https://esm.sh/v135/@swc/wasm-web@1.3.62/denonext/wasm-web.mjs": "57046d46c9ef1398a294ba7447034f5966e48866a05c309cccec4bb4d6e7c61b"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
56
example-config/app.tsx
Normal file
56
example-config/app.tsx
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
import { Router, Switch, Case } from ">able/iso-elements.tsx";
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
const CTXString = React.createContext("lol");
|
||||||
|
|
||||||
|
type StateBinding<T> = [get:T, set:React.StateUpdater<T>];
|
||||||
|
const CTXState = React.createContext(null) as React.Context<StateBinding<number>|null>;
|
||||||
|
const Outer =(props:{children:React.JSX.Element})=>
|
||||||
|
{
|
||||||
|
const binding = React.useState(11);
|
||||||
|
return <CTXState.Provider value={binding}>
|
||||||
|
{props.children}
|
||||||
|
</CTXState.Provider>
|
||||||
|
};
|
||||||
|
const Inner =()=>
|
||||||
|
{
|
||||||
|
const [stateGet, stateSet] = React.useContext(CTXState) || ["default", ()=>{}];
|
||||||
|
return <button onClick={e=>stateSet((old)=>old+1)}>count: {stateGet} :)</button>
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
type Store = {name:string, age:number}
|
||||||
|
const reducer =(inState:Store, inAction:number)=>
|
||||||
|
{
|
||||||
|
return {...inState, age:inState.age+inAction};
|
||||||
|
}
|
||||||
|
|
||||||
|
const builder =(inState:Store):Store=>
|
||||||
|
{
|
||||||
|
inState.age = 100;
|
||||||
|
return inState;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export default ()=>
|
||||||
|
{
|
||||||
|
const [Store, Dispatch] = React.useReducer(reducer, {name:"seth", age:24} as Store, builder)
|
||||||
|
return <CTXString.Provider value="intradestink">
|
||||||
|
<Router.Provider>
|
||||||
|
<div class="my-4 font-sans">
|
||||||
|
<h1 class="font-black text-xl text-red-500">Title</h1>
|
||||||
|
<h2 class="font-black text-blue-500 p-4">subtitle</h2>
|
||||||
|
<p>
|
||||||
|
<button onClick={e=>Dispatch(1)}>{Store.name}|{Store.age}?</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Outer>
|
||||||
|
<Inner/>
|
||||||
|
</Outer>
|
||||||
|
<Outer>
|
||||||
|
<Inner/>
|
||||||
|
</Outer>
|
||||||
|
</Router.Provider>
|
||||||
|
</CTXString.Provider>;
|
||||||
|
}
|
19
example-config/deno.json
Normal file
19
example-config/deno.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"imports":
|
||||||
|
{
|
||||||
|
"react": "https://esm.sh/preact@10.15.1/compat",
|
||||||
|
">able/": "http://localhost:4507/",
|
||||||
|
">able/app.tsx": "./app.tsx"
|
||||||
|
},
|
||||||
|
"tasks":
|
||||||
|
{
|
||||||
|
"serve": "deno run -A --no-lock --config=deno.json --reload=http://localhost:4507 http://localhost:4507/run.tsx",
|
||||||
|
"local": "deno run -A --no-lock --config=deno.json --reload=http://localhost:4507 http://localhost:4507/run.tsx --dev",
|
||||||
|
"debug": "deno run -A --no-lock --config=deno.json --reload=http://localhost:4507 --inspect-wait http://localhost:4507/run.tsx",
|
||||||
|
"cloud": "deno run -A --no-lock --config=deno.json --reload=http://localhost:4507 http://localhost:4507/run.tsx --dep"
|
||||||
|
},
|
||||||
|
"compilerOptions":
|
||||||
|
{
|
||||||
|
"lib": ["deno.window", "dom"]
|
||||||
|
}
|
||||||
|
}
|
56
example-script/app.tsx
Normal file
56
example-script/app.tsx
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
import { Router, Switch, Case } from ">able/iso-elements.tsx";
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
const CTXString = React.createContext("lol");
|
||||||
|
|
||||||
|
type StateBinding<T> = [get:T, set:React.StateUpdater<T>];
|
||||||
|
const CTXState = React.createContext(null) as React.Context<StateBinding<number>|null>;
|
||||||
|
const Outer =(props:{children:React.JSX.Element})=>
|
||||||
|
{
|
||||||
|
const binding = React.useState(11);
|
||||||
|
return <CTXState.Provider value={binding}>
|
||||||
|
{props.children}
|
||||||
|
</CTXState.Provider>
|
||||||
|
};
|
||||||
|
const Inner =()=>
|
||||||
|
{
|
||||||
|
const [stateGet, stateSet] = React.useContext(CTXState) || ["default", ()=>{}];
|
||||||
|
return <button onClick={e=>stateSet((old)=>old+1)}>count: {stateGet} :)</button>
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
type Store = {name:string, age:number}
|
||||||
|
const reducer =(inState:Store, inAction:number)=>
|
||||||
|
{
|
||||||
|
return {...inState, age:inState.age+inAction};
|
||||||
|
}
|
||||||
|
|
||||||
|
const builder =(inState:Store):Store=>
|
||||||
|
{
|
||||||
|
inState.age = 100;
|
||||||
|
return inState;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export default ()=>
|
||||||
|
{
|
||||||
|
const [Store, Dispatch] = React.useReducer(reducer, {name:"seth", age:24} as Store, builder)
|
||||||
|
return <CTXString.Provider value="intradestink">
|
||||||
|
<Router.Provider>
|
||||||
|
<div class="my-4 font-sans">
|
||||||
|
<h1 class="font-black text-xl text-red-500">Title</h1>
|
||||||
|
<h2 class="font-black text-blue-500 p-4">subtitle</h2>
|
||||||
|
<p>
|
||||||
|
<button onClick={e=>Dispatch(1)}>{Store.name}|{Store.age}?</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Outer>
|
||||||
|
<Inner/>
|
||||||
|
</Outer>
|
||||||
|
<Outer>
|
||||||
|
<Inner/>
|
||||||
|
</Outer>
|
||||||
|
</Router.Provider>
|
||||||
|
</CTXString.Provider>;
|
||||||
|
}
|
15
example-script/deno.json
Normal file
15
example-script/deno.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": { "lib": ["deno.window", "dom"] },
|
||||||
|
"imports":
|
||||||
|
{
|
||||||
|
"react": "https://esm.sh/preact@10.15.1/compat",
|
||||||
|
">able/": "http://localhost:4507/"
|
||||||
|
},
|
||||||
|
"tasks":
|
||||||
|
{
|
||||||
|
"local": "deno run -A --no-lock --reload=http://localhost:4507 run__.tsx --dev",
|
||||||
|
"serve": "deno run -A --no-lock --reload=http://localhost:4507 run__.tsx",
|
||||||
|
"debug": "deno run -A --no-lock --reload=http://localhost:4507 --inspect-wait run__.tsx",
|
||||||
|
"cloud": "deno run -A --no-lock --reload=http://localhost:4507 run__.tsx --dep"
|
||||||
|
}
|
||||||
|
}
|
9
example-script/run__.tsx
Normal file
9
example-script/run__.tsx
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import Configure from ">able/run.tsx";
|
||||||
|
|
||||||
|
Configure({
|
||||||
|
Start:"/app.tsx",
|
||||||
|
Serve()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
})
|
@ -1,5 +1,4 @@
|
|||||||
import { HMR } from "./hmr-react.tsx";
|
import { type StateCapture } from "./hmr-react.tsx";
|
||||||
import { GroupSignal, GroupSignalHook } from "./hmr-signal.tsx";
|
|
||||||
|
|
||||||
const FileListeners = new Map() as Map<string, Array<(module:unknown)=>void>>;
|
const FileListeners = new Map() as Map<string, Array<(module:unknown)=>void>>;
|
||||||
export const FileListen =(inPath:string, inHandler:()=>void)=>
|
export const FileListen =(inPath:string, inHandler:()=>void)=>
|
||||||
@ -14,18 +13,58 @@ Socket.addEventListener('message', async(event:{data:string})=>
|
|||||||
{
|
{
|
||||||
// When a file changes, dynamically re-import it to get the updated members
|
// When a file changes, dynamically re-import it to get the updated members
|
||||||
// send the updated members to any listeners for that file
|
// send the updated members to any listeners for that file
|
||||||
|
|
||||||
GroupSignal.reset();
|
|
||||||
|
|
||||||
const reImport = await import(document.location.origin+event.data+"?reload="+Math.random());
|
const reImport = await import(document.location.origin+event.data+"?reload="+Math.random());
|
||||||
FileListeners.get(event.data)?.forEach(reExport=>reExport(reImport));
|
FileListeners.get(event.data)?.forEach(reExport=>reExport(reImport));
|
||||||
|
|
||||||
GroupSignal.swap();
|
|
||||||
|
|
||||||
GroupSignalHook.reset();
|
|
||||||
HMR.update();
|
HMR.update();
|
||||||
GroupSignalHook.reset();
|
|
||||||
|
|
||||||
});
|
});
|
||||||
Socket.addEventListener("error", ()=>{clearInterval(SocketTimer); console.log("HMR socket lost")})
|
Socket.addEventListener("error", ()=>{clearInterval(SocketTimer); console.log("HMR socket lost")})
|
||||||
const SocketTimer = setInterval(()=>{Socket.send("ping")}, 5000);
|
const SocketTimer = setInterval(()=>{Socket.send("ping")}, 5000);
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
Each custom component is secretly modified to have an extra state and id.
|
||||||
|
When there is an HMR update, this state is changed, forcing it to re-render.
|
||||||
|
|
||||||
|
Each *user-created* React.useState is secretly modified and accompanied by an ID.
|
||||||
|
Every time its state is set, the HMR.statesNew map for this ID is set to contain the new state and updater.
|
||||||
|
When a component is removed, any of it's states in HMR.statesNew are also removed.
|
||||||
|
(HMR.statesNew is the "running total" of all states currently at play).
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
When a state is interacted with:
|
||||||
|
- statesNew for this id is set
|
||||||
|
- the internal state is also set in the traditional way
|
||||||
|
|
||||||
|
When there is an HMR update:
|
||||||
|
- All custom components are re-rendered...
|
||||||
|
for each useState(value) call that then happens in the re-render:
|
||||||
|
- if there is a "statesOld" value for this state, use that and ignore the passed value, otherwise use the passed value
|
||||||
|
- if this state has not been interacted with since the last reload (statesNew is empty at this id), set statesNew<id> with whatever is in statesOld<id>
|
||||||
|
- statesNew is moved into *statesOld*
|
||||||
|
- statesNew is cleared.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
const HMR =
|
||||||
|
{
|
||||||
|
reloads:1,
|
||||||
|
RegisteredComponents: new Map() as Map<string, ()=>void>,
|
||||||
|
statesNew: new Map() as Map<string, StateCapture>,
|
||||||
|
statesOld: new Map() as Map<string, StateCapture>,
|
||||||
|
wireframe: false,
|
||||||
|
RegisterComponent(reactID:string, value:()=>void):void
|
||||||
|
{
|
||||||
|
this.RegisteredComponents.set(reactID, value);
|
||||||
|
},
|
||||||
|
update()
|
||||||
|
{
|
||||||
|
this.reloads++;
|
||||||
|
this.RegisteredComponents.forEach(handler=>handler());
|
||||||
|
this.RegisteredComponents.clear();
|
||||||
|
this.statesOld = this.statesNew;
|
||||||
|
this.statesNew = new Map();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export {HMR};
|
@ -1,51 +1,5 @@
|
|||||||
import * as ReactParts from "react-original";
|
import * as ReactParts from "react-original";
|
||||||
|
import { HMR } from "./hmr-listen.tsx";
|
||||||
/*
|
|
||||||
|
|
||||||
Each custom component is secretly modified to have an extra state and id.
|
|
||||||
When there is an HMR update, this state is changed, forcing it to re-render.
|
|
||||||
|
|
||||||
Each *user-created* React.useState is secretly modified and accompanied by an ID.
|
|
||||||
Every time its state is set, the HMR.statesNew map for this ID is set to contain the new state and updater.
|
|
||||||
When a component is removed, any of it's states in HMR.statesNew are also removed.
|
|
||||||
(HMR.statesNew is the "running total" of all states currently at play).
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
When a state is interacted with:
|
|
||||||
- statesNew for this id is set
|
|
||||||
- the internal state is also set in the traditional way
|
|
||||||
|
|
||||||
When there is an HMR update:
|
|
||||||
- All custom components are re-rendered...
|
|
||||||
for each useState(value) call that then happens in the re-render:
|
|
||||||
- if there is a "statesOld" value for this state, use that and ignore the passed value, otherwise use the passed value
|
|
||||||
- if this state has not been interacted with since the last reload (statesNew is empty at this id), set statesNew<id> with whatever is in statesOld<id>
|
|
||||||
- statesNew is moved into *statesOld*
|
|
||||||
- statesNew is cleared.
|
|
||||||
|
|
||||||
*/
|
|
||||||
export const HMR =
|
|
||||||
{
|
|
||||||
reloads:1,
|
|
||||||
RegisteredComponents: new Map() as Map<string, ()=>void>,
|
|
||||||
statesNew: new Map() as Map<string, StateCapture>,
|
|
||||||
statesOld: new Map() as Map<string, StateCapture>,
|
|
||||||
wireframe: false,
|
|
||||||
RegisterComponent(reactID:string, value:()=>void):void
|
|
||||||
{
|
|
||||||
this.RegisteredComponents.set(reactID, value);
|
|
||||||
},
|
|
||||||
update()
|
|
||||||
{
|
|
||||||
this.reloads++;
|
|
||||||
this.RegisteredComponents.forEach(handler=>handler());
|
|
||||||
this.RegisteredComponents.clear();
|
|
||||||
this.statesOld = this.statesNew;
|
|
||||||
this.statesNew = new Map();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
export type StateType = boolean|number|string|Record<string, string>
|
export type StateType = boolean|number|string|Record<string, string>
|
||||||
export type StateCapture = {state:StateType, set:ReactParts.StateUpdater<StateType>, reload:number};
|
export type StateCapture = {state:StateType, set:ReactParts.StateUpdater<StateType>, reload:number};
|
||||||
|
@ -1,47 +0,0 @@
|
|||||||
import * as SignalsParts from "signals-original";
|
|
||||||
import DeepEqual from "https://esm.sh/deep-eql@4.1.3";
|
|
||||||
|
|
||||||
type Entry<T> = [signal:SignalsParts.Signal<T>, initArg:T];
|
|
||||||
|
|
||||||
function ProxyGroup<T>(inFunc:(initArg:T)=>SignalsParts.Signal<T>)
|
|
||||||
{
|
|
||||||
let recordEntry:Entry<T>[] = [];
|
|
||||||
let recordEntryNew:Entry<T>[] = [];
|
|
||||||
let recordIndex = 0;
|
|
||||||
const reset =()=> recordIndex = 0;
|
|
||||||
const swap =()=>
|
|
||||||
{
|
|
||||||
recordEntry = recordEntryNew;
|
|
||||||
recordEntryNew = [] as Entry<T>[];
|
|
||||||
};
|
|
||||||
const proxy =(arg:T)=>
|
|
||||||
{
|
|
||||||
const lookupOld = recordEntry[recordIndex];
|
|
||||||
if(lookupOld && DeepEqual(lookupOld[1], arg))
|
|
||||||
{
|
|
||||||
recordEntryNew[recordIndex] = lookupOld;
|
|
||||||
recordIndex++;
|
|
||||||
return lookupOld[0];
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
const sig = inFunc(arg);
|
|
||||||
recordEntryNew[recordIndex] = [sig, arg];
|
|
||||||
recordEntry[recordIndex] = [sig, arg];
|
|
||||||
recordIndex++;
|
|
||||||
return sig;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
return {reset, swap, proxy};
|
|
||||||
}
|
|
||||||
|
|
||||||
export const GroupSignal = ProxyGroup(SignalsParts.signal);
|
|
||||||
export const GroupSignalHook = ProxyGroup(SignalsParts.useSignal);
|
|
||||||
|
|
||||||
|
|
||||||
const proxySignal = GroupSignal.proxy;
|
|
||||||
const proxySignalHook = GroupSignalHook.proxy;
|
|
||||||
|
|
||||||
export * from "signals-original";
|
|
||||||
export { proxySignal as signal, proxySignalHook as useSignal };
|
|
||||||
export default {...SignalsParts, signal:proxySignal, useSignal:proxySignalHook};
|
|
@ -65,7 +65,7 @@ const findNextExport =(inFile:string, inIndex=0, inLocal:Array<string>, inForeig
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
const members = inFile.substring(nextCharInd+1, endBracketInd).replace(/\s/g, '');
|
const members = inFile.substring(nextCharInd+1, endBracketInd);
|
||||||
members.split(",").forEach(part=>
|
members.split(",").forEach(part=>
|
||||||
{
|
{
|
||||||
const renamed = part.split(" as ");
|
const renamed = part.split(" as ");
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
export default (req:Request):Response|false=>
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
export default ()=><div>
|
|
||||||
<h1>App!</h1>
|
|
||||||
</div>;
|
|
@ -1,5 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import * as TW from "@twind/core";
|
import * as TW from "https://esm.sh/v126/@twind/core@1.1.3/es2022/core.mjs";
|
||||||
import TWPreTail from "https://esm.sh/v126/@twind/preset-tailwind@1.1.3/es2022/preset-tailwind.mjs";
|
import TWPreTail from "https://esm.sh/v126/@twind/preset-tailwind@1.1.3/es2022/preset-tailwind.mjs";
|
||||||
import TWPreAuto from "https://esm.sh/v126/@twind/preset-autoprefix@1.0.7/es2022/preset-autoprefix.mjs";
|
import TWPreAuto from "https://esm.sh/v126/@twind/preset-autoprefix@1.0.7/es2022/preset-autoprefix.mjs";
|
||||||
|
|
||||||
@ -10,25 +10,29 @@ const Configure =
|
|||||||
hash: false
|
hash: false
|
||||||
} as TW.TwindUserConfig;
|
} as TW.TwindUserConfig;
|
||||||
|
|
||||||
export const Shadow =(inElement:HTMLElement, inConfig:TW.TwindUserConfig)=>
|
export const Shadow =(inElement:HTMLElement, inConfig?:TW.TwindUserConfig)=>
|
||||||
{
|
{
|
||||||
|
const merge = inConfig ? {...Configure, ...inConfig} : Configure;
|
||||||
|
|
||||||
const ShadowDOM = inElement.attachShadow({ mode: "open" });
|
const ShadowDOM = inElement.attachShadow({ mode: "open" });
|
||||||
const ShadowDiv = document.createElement("div");
|
const ShadowDiv = document.createElement("div");
|
||||||
const ShadowCSS = document.createElement("style");
|
const ShadowCSS = document.createElement("style");
|
||||||
|
|
||||||
ShadowDOM.append(ShadowCSS);
|
ShadowDOM.append(ShadowCSS);
|
||||||
ShadowDOM.append(ShadowDiv);
|
ShadowDOM.append(ShadowDiv);
|
||||||
TW.observe(TW.twind(inConfig, TW.cssom(ShadowCSS)), ShadowDiv);
|
TW.observe(TW.twind(merge, TW.cssom(ShadowCSS)), ShadowDiv);
|
||||||
return ShadowDiv;
|
return ShadowDiv;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default async(inSelector:string, inModulePath:string, inMemberApp="default", inMemberCSS="CSS", inShadow=false):Promise<(()=>void)|false>=>
|
export default async(inSelector:string, inModulePath:string, inMemberApp="default", inMemberCSS="CSS"):Promise<(()=>void)|false>=>
|
||||||
{
|
{
|
||||||
|
|
||||||
if(!inModulePath)
|
if(!inModulePath)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
let dom = document.querySelector(inSelector);
|
let dom = document.querySelector(inSelector);
|
||||||
if(!dom)
|
if(!dom)
|
||||||
{
|
{
|
||||||
@ -37,17 +41,7 @@ export default async(inSelector:string, inModulePath:string, inMemberApp="defaul
|
|||||||
}
|
}
|
||||||
|
|
||||||
const module = await import(inModulePath);
|
const module = await import(inModulePath);
|
||||||
|
dom = Shadow(dom as HTMLElement, module[inMemberCSS])
|
||||||
const merge = inMemberCSS ? {...Configure, ...module[inMemberCSS]} : Configure;
|
|
||||||
|
|
||||||
if(inShadow)
|
|
||||||
{
|
|
||||||
dom = Shadow(dom as HTMLElement, merge);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
TW.install(merge);
|
|
||||||
}
|
|
||||||
|
|
||||||
const app = React.createElement(()=> React.createElement(module[inMemberApp], null), null);
|
const app = React.createElement(()=> React.createElement(module[inMemberApp], null), null);
|
||||||
if(React.render)
|
if(React.render)
|
||||||
@ -62,4 +56,5 @@ export default async(inSelector:string, inModulePath:string, inMemberApp="defaul
|
|||||||
root.render(app);
|
root.render(app);
|
||||||
return root.unmount;
|
return root.unmount;
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import {Configure, Transpile, Extension} from "./run-serve.tsx";
|
import {Configure, Transpile, Extension, Root} from "./run-serve.tsx";
|
||||||
import { Root } from "./checker.tsx";
|
|
||||||
import * as Collect from "./hmr-static.tsx";
|
import * as Collect from "./hmr-static.tsx";
|
||||||
|
|
||||||
const SocketsLive:Set<WebSocket> = new Set();
|
const SocketsLive:Set<WebSocket> = new Set();
|
||||||
@ -17,10 +16,6 @@ Configure({
|
|||||||
{
|
{
|
||||||
syntax: "typescript",
|
syntax: "typescript",
|
||||||
tsx: true,
|
tsx: true,
|
||||||
},
|
|
||||||
transform:
|
|
||||||
{
|
|
||||||
react: { runtime: "automatic" }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -28,10 +23,6 @@ Configure({
|
|||||||
{
|
{
|
||||||
inImports["react-original"] = inImports["react"];
|
inImports["react-original"] = inImports["react"];
|
||||||
inImports["react"] = `/>able/hmr-react.tsx`;
|
inImports["react"] = `/>able/hmr-react.tsx`;
|
||||||
|
|
||||||
inImports["signals-original"] = inImports["@preact/signals"];
|
|
||||||
inImports["@preact/signals"] = `/>able/hmr-signal.tsx`;
|
|
||||||
|
|
||||||
return inImports;
|
return inImports;
|
||||||
},
|
},
|
||||||
async Extra(inReq, inURL, inExt, inMap, inConfig)
|
async Extra(inReq, inURL, inExt, inMap, inConfig)
|
||||||
|
180
run-serve.tsx
180
run-serve.tsx
@ -1,35 +1,70 @@
|
|||||||
import * as MIME from "https://deno.land/std@0.180.0/media_types/mod.ts";
|
import * as MIME from "https://deno.land/std@0.180.0/media_types/mod.ts";
|
||||||
import * as SWCW from "https://esm.sh/@swc/wasm-web@1.3.62";
|
import * as SWCW from "https://esm.sh/@swc/wasm-web@1.3.62";
|
||||||
import { HuntConfig, Root } from "./checker.tsx";
|
|
||||||
import CustomServe from ">able/api.tsx";
|
import CustomServe from ">able/api.tsx";
|
||||||
|
|
||||||
|
export const Root = new URL(`file://${Deno.cwd().replaceAll("\\", "/")}`).toString();
|
||||||
|
|
||||||
type DenoConfig = {imports:Record<string, string>};
|
type DenoConfig = {imports:Record<string, string>};
|
||||||
const ImportMap:DenoConfig = {imports:{}};
|
const ImportMap:DenoConfig = {imports:{}};
|
||||||
|
let ImportMapOriginal = {};
|
||||||
|
let ImportMapProxies:Record<string, string> = {};
|
||||||
const ImportMapReload =async()=>
|
const ImportMapReload =async()=>
|
||||||
{
|
{
|
||||||
const [, {json}] = await HuntConfig();
|
let json:DenoConfig;
|
||||||
const imports = (json as DenoConfig).imports;
|
const path = Root+"/deno.json";
|
||||||
|
try
|
||||||
if(imports)
|
|
||||||
{
|
{
|
||||||
Object.entries(imports).forEach(([key, value])=>
|
const resp = await fetch(path);
|
||||||
{
|
json = await resp.json();
|
||||||
// re-write deno project-relative paths (e.g. "./app.tsx") to root-relative for the browser ("/app.tsx");
|
if(!json?.imports)
|
||||||
if(value.startsWith("./"))
|
{ throw new Error("imports not specified in deno.json") }
|
||||||
{
|
ImportMapOriginal = json;
|
||||||
imports[key] = value.substring(1);
|
}
|
||||||
}
|
catch(e)
|
||||||
|
{
|
||||||
if(key.startsWith(">") && key.endsWith("/"))
|
console.log(`error reading deno config "${path}" message:"${e}"`);
|
||||||
{
|
return;
|
||||||
imports[key] = "/"+key;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
ImportMap.imports = Configuration.Remap(imports, Configuration);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!json.imports["react"])
|
||||||
|
{
|
||||||
|
console.log(`"react" specifier not defined in import map`);
|
||||||
|
}
|
||||||
|
else if(!json.imports["react/"])
|
||||||
|
{
|
||||||
|
json.imports["react/"] = json.imports["react"]+"/";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!json.imports["able:app"])
|
||||||
|
{
|
||||||
|
console.log(`"able:app" specifier not defined in import map.`);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ImportMapProxies = {};
|
||||||
|
Object.entries(json.imports).forEach(([key, value])=>
|
||||||
|
{
|
||||||
|
if(value.startsWith("./"))
|
||||||
|
{
|
||||||
|
json.imports[key] = value.substring(1);
|
||||||
|
}
|
||||||
|
if(key.startsWith(">"))
|
||||||
|
{
|
||||||
|
if(value.startsWith("./"))
|
||||||
|
{
|
||||||
|
ImportMapProxies[encodeURI(key)] = value.substring(1);
|
||||||
|
json.imports[key] = value.substring(1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ImportMapProxies["/"+encodeURI(key)] = value;
|
||||||
|
json.imports[key] = "/"+key;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
ImportMap.imports = Configuration.Remap(json.imports, Configuration);
|
||||||
};
|
};
|
||||||
|
|
||||||
export type CustomHTTPHandler = (inReq:Request, inURL:URL, inExt:string|false, inMap:{imports:Record<string, string>}, inConfig:Configuration)=>void|false|Response|Promise<Response|void|false>;
|
export type CustomHTTPHandler = (inReq:Request, inURL:URL, inExt:string|false, inMap:{imports:Record<string, string>}, inConfig:Configuration)=>void|false|Response|Promise<Response|void|false>;
|
||||||
@ -58,7 +93,7 @@ let Configuration:Configuration =
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<script type="importmap">${JSON.stringify(inMap, null, " ")}</script>
|
<script type="importmap">${JSON.stringify(inMap)}</script>
|
||||||
<script type="module">
|
<script type="module">
|
||||||
import Mount from ">able/run-browser.tsx";
|
import Mount from ">able/run-browser.tsx";
|
||||||
Mount("#app", "${inConfig.Start}");
|
Mount("#app", "${inConfig.Start}");
|
||||||
@ -106,6 +141,85 @@ export const Transpile =
|
|||||||
ImportMapReload();
|
ImportMapReload();
|
||||||
return size;
|
return size;
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* DONT USE
|
||||||
|
* Converts dynamic module imports in to static, also can resolve paths with an import map
|
||||||
|
*/
|
||||||
|
async Patch(inPath:string, inKey:string, inMap?:DenoConfig)
|
||||||
|
{
|
||||||
|
const check = this.Cache.get(inKey);
|
||||||
|
if(check)
|
||||||
|
{
|
||||||
|
return check;
|
||||||
|
}
|
||||||
|
|
||||||
|
let file, text;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
file = await fetch(inPath);
|
||||||
|
text = await file.text();
|
||||||
|
}
|
||||||
|
catch(e)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
bestLength = key.length;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if(bestKey)
|
||||||
|
{
|
||||||
|
return inMap.imports[bestKey]+inPath.substring(bestKey.length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return inPath;
|
||||||
|
}
|
||||||
|
: (inPath:string)=>inPath;
|
||||||
|
let match, regex;
|
||||||
|
let convertedBody = text;
|
||||||
|
|
||||||
|
// remap static imports
|
||||||
|
regex = /from\s+(['"`])(.*?)\1/g;
|
||||||
|
while ((match = regex.exec(text)))
|
||||||
|
{
|
||||||
|
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;
|
||||||
|
while ((match = regex.exec(text)))
|
||||||
|
{
|
||||||
|
const importStatement = match[0];
|
||||||
|
const importPath = remap(match[1].substring(1, match[1].length-1));
|
||||||
|
const moduleName = `_dyn_${staticImports.length}` as string;
|
||||||
|
|
||||||
|
staticImports.push(`import ${moduleName} from ${importPath};`);
|
||||||
|
convertedBody = convertedBody.replace(importStatement, `Promise.resolve(${moduleName})`);
|
||||||
|
}
|
||||||
|
convertedBody = staticImports.join("\n") + convertedBody;
|
||||||
|
|
||||||
|
inKey && this.Cache.set(inKey, convertedBody);
|
||||||
|
return convertedBody;
|
||||||
|
},
|
||||||
async Fetch(inPath:string, inKey:string, inCheckCache=true)
|
async Fetch(inPath:string, inKey:string, inCheckCache=true)
|
||||||
{
|
{
|
||||||
const check = this.Cache.get(inPath);
|
const check = this.Cache.get(inPath);
|
||||||
@ -152,9 +266,9 @@ export default async()=>
|
|||||||
if(running){return};
|
if(running){return};
|
||||||
running = true;
|
running = true;
|
||||||
|
|
||||||
|
await ImportMapReload();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await ImportMapReload();
|
|
||||||
await SWCW.default();
|
await SWCW.default();
|
||||||
}
|
}
|
||||||
catch(e)
|
catch(e)
|
||||||
@ -162,6 +276,7 @@ export default async()=>
|
|||||||
console.log("swc init error:", e);
|
console.log("swc init error:", e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const server = Deno.serve({port:parseInt(Deno.env.get("port")||"8000")}, async(req: Request)=>
|
const server = Deno.serve({port:parseInt(Deno.env.get("port")||"8000")}, async(req: Request)=>
|
||||||
{
|
{
|
||||||
const url:URL = new URL(req.url);
|
const url:URL = new URL(req.url);
|
||||||
@ -177,9 +292,21 @@ export default async()=>
|
|||||||
// proxy imports
|
// proxy imports
|
||||||
if(url.pathname.startsWith(encodeURI("/>")))
|
if(url.pathname.startsWith(encodeURI("/>")))
|
||||||
{
|
{
|
||||||
/** pathname with no leading slash */
|
let bestMatch="";
|
||||||
const clippedPath = decodeURI(url.pathname.substring(1));
|
for(let key in ImportMapProxies)
|
||||||
proxy = import.meta.resolve(clippedPath);
|
{
|
||||||
|
if(url.pathname.startsWith(key) && key.length > bestMatch.length)
|
||||||
|
{
|
||||||
|
bestMatch = key;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(bestMatch.length)
|
||||||
|
{
|
||||||
|
const match = ImportMapProxies[bestMatch];
|
||||||
|
const path = url.pathname.substring(bestMatch.length);
|
||||||
|
proxy = path ? match + path : Root + match;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// allow for custom handlers
|
// allow for custom handlers
|
||||||
@ -197,6 +324,7 @@ export default async()=>
|
|||||||
// transpileable files
|
// transpileable files
|
||||||
if(Transpile.Check(ext))
|
if(Transpile.Check(ext))
|
||||||
{
|
{
|
||||||
|
console.log("transpiling:", proxy);
|
||||||
const code = await Transpile.Fetch(proxy, url.pathname);
|
const code = await Transpile.Fetch(proxy, url.pathname);
|
||||||
if(code)
|
if(code)
|
||||||
{
|
{
|
||||||
|
56
things.md
Normal file
56
things.md
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
# Outpost
|
||||||
|
|
||||||
|
## Deno Deploy
|
||||||
|
```
|
||||||
|
accept: */*
|
||||||
|
accept-encoding: gzip, br
|
||||||
|
accept-language: *
|
||||||
|
cdn-loop: deno;s=deno;d=ah40t9m8n54g
|
||||||
|
host: bad-goat-66.deno.dev
|
||||||
|
user-agent: Deno/1.34.1
|
||||||
|
```
|
||||||
|
|
||||||
|
## Deno
|
||||||
|
```
|
||||||
|
accept: */*
|
||||||
|
accept-encoding: gzip, br
|
||||||
|
accept-language: *
|
||||||
|
host: bad-goat-66.deno.dev
|
||||||
|
user-agent: Deno/1.34.3
|
||||||
|
```
|
||||||
|
|
||||||
|
## Edge
|
||||||
|
```
|
||||||
|
accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
|
||||||
|
accept-encoding: gzip, deflate, br
|
||||||
|
accept-language: en-US,en;q=0.9
|
||||||
|
host: bad-goat-66.deno.dev
|
||||||
|
referer: https://dash.deno.com/
|
||||||
|
sec-ch-ua: "Microsoft Edge";v="117", "Not;A=Brand";v="8", "Chromium";v="117"
|
||||||
|
sec-ch-ua-mobile: ?0
|
||||||
|
sec-ch-ua-platform: "Windows"
|
||||||
|
sec-fetch-dest: iframe
|
||||||
|
sec-fetch-mode: navigate
|
||||||
|
sec-fetch-site: cross-site
|
||||||
|
upgrade-insecure-requests: 1
|
||||||
|
user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.0.0
|
||||||
|
```
|
||||||
|
|
||||||
|
## Firefox
|
||||||
|
```
|
||||||
|
accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
|
||||||
|
accept-encoding: gzip, deflate, br
|
||||||
|
accept-language: en-US,en;q=0.5
|
||||||
|
host: bad-goat-66.deno.dev
|
||||||
|
sec-fetch-dest: document
|
||||||
|
sec-fetch-mode: navigate
|
||||||
|
sec-fetch-site: cross-site
|
||||||
|
te: trailers
|
||||||
|
upgrade-insecure-requests: 1
|
||||||
|
user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0
|
||||||
|
```
|
||||||
|
|
||||||
|
When a requet comes in:
|
||||||
|
- if its for a transpile-able document:
|
||||||
|
- if its a request from deno:
|
||||||
|
-
|
Loading…
Reference in New Issue
Block a user