Compare commits
	
		
			No commits in common. "b78699844d6434c2f477a3771fe10b0752c5c237" and "6a5d97677a21cd2454f72efeb1282dfc7a4e8a80" have entirely different histories.
		
	
	
		
			b78699844d
			...
			6a5d97677a
		
	
		
@ -1,4 +1,4 @@
 | 
			
		||||
import "./run-serve.tsx";
 | 
			
		||||
import "../serve.tsx";
 | 
			
		||||
 | 
			
		||||
Deno.args.forEach(arg=>
 | 
			
		||||
{
 | 
			
		||||
@ -11,5 +11,5 @@ Deno.args.forEach(arg=>
 | 
			
		||||
 | 
			
		||||
if(Deno.env.get("dev"))
 | 
			
		||||
{
 | 
			
		||||
  await import("./run-local.tsx");
 | 
			
		||||
  await import("../local.tsx");
 | 
			
		||||
}
 | 
			
		||||
@ -1,4 +1,5 @@
 | 
			
		||||
import { type StateCapture } from "./hmr-react.tsx";
 | 
			
		||||
import { type StateCapture } from "./react.tsx";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const FileListeners = new Map() as Map<string, Array<(module:unknown)=>void>>;
 | 
			
		||||
export const FileListen =(inPath:string, inHandler:()=>void)=>
 | 
			
		||||
@ -20,6 +21,7 @@ Socket.addEventListener('message', async(event:{data:string})=>
 | 
			
		||||
Socket.addEventListener("error", ()=>{clearInterval(SocketTimer); console.log("HMR socket lost")})
 | 
			
		||||
const SocketTimer = setInterval(()=>{Socket.send("ping")}, 5000);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 | 
			
		||||
Each custom component is secretly modified to have an extra state and id.
 | 
			
		||||
@ -44,8 +46,10 @@ When there is an HMR update:
 | 
			
		||||
- statesNew is moved into *statesOld*
 | 
			
		||||
- statesNew is cleared.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const HMR =
 | 
			
		||||
{
 | 
			
		||||
    reloads:1,
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
import React from "react";
 | 
			
		||||
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 TWPreAuto from "https://esm.sh/v126/@twind/preset-autoprefix@1.0.7/es2022/preset-autoprefix.mjs";
 | 
			
		||||
import * as TW from   "https://esm.sh/@twind/core@1.0.1";
 | 
			
		||||
import TWPreTail from "https://esm.sh/@twind/preset-tailwind@1.0.1";
 | 
			
		||||
import TWPreAuto from "https://esm.sh/@twind/preset-autoprefix@1.0.1";
 | 
			
		||||
 | 
			
		||||
const Configure =
 | 
			
		||||
{
 | 
			
		||||
@ -24,6 +24,42 @@ export const Shadow =(inElement:HTMLElement, inConfig?:TW.TwindUserConfig)=>
 | 
			
		||||
    return ShadowDiv;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
let booted = false;
 | 
			
		||||
export const Boot =async(inSettings:{App:()=>React.JSX.Element, CSS?:TW.TwindUserConfig, DOM?:string})=>
 | 
			
		||||
{
 | 
			
		||||
  if(booted){return;}
 | 
			
		||||
  booted = true;
 | 
			
		||||
 | 
			
		||||
  const settings = {CSS:{...Configure, ...inSettings.CSS||{} }, DOM:inSettings.DOM||"#app", App:inSettings.App};
 | 
			
		||||
 | 
			
		||||
  console.log("Clinet boot called")
 | 
			
		||||
 | 
			
		||||
  let dom = document.querySelector(settings.DOM);
 | 
			
		||||
  if(!dom)
 | 
			
		||||
  {
 | 
			
		||||
    console.log(`element "${settings.DOM}" not found.`);
 | 
			
		||||
    return false;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  dom = Shadow(dom as HTMLElement, settings.CSS)
 | 
			
		||||
 | 
			
		||||
  const app = React.createElement(()=> React.createElement(settings.App, null), null);
 | 
			
		||||
  if(React.render)
 | 
			
		||||
  {
 | 
			
		||||
    React.render(app, dom);
 | 
			
		||||
    return ()=>dom && React.unmountComponentAtNode(dom);
 | 
			
		||||
  }
 | 
			
		||||
  else
 | 
			
		||||
  {
 | 
			
		||||
    const reactDom = await import(`https://esm.sh/react-dom@${React.version}/client`);
 | 
			
		||||
    const root = reactDom.createRoot(dom);
 | 
			
		||||
    root.render(app);
 | 
			
		||||
    return root.unmount;        
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
export default async(inSelector:string, inModulePath:string, inMemberApp="default", inMemberCSS="CSS"):Promise<(()=>void)|false>=>
 | 
			
		||||
{
 | 
			
		||||
  let dom = document.querySelector(inSelector);
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
import * as ReactParts from "react-original";
 | 
			
		||||
import { HMR } from "./hmr-listen.tsx";
 | 
			
		||||
import { HMR } from "./hmr.tsx";
 | 
			
		||||
 | 
			
		||||
export type StateType = boolean|number|string|Record<string, string>
 | 
			
		||||
export type StateCapture = {state:StateType, set:ReactParts.StateUpdater<StateType>, reload:number};
 | 
			
		||||
@ -68,6 +68,7 @@ const ProxyState =(argNew:StateType)=>
 | 
			
		||||
                // this is a switch/ui change, not a HMR reload change
 | 
			
		||||
                const oldState = MapIndex(HMR.statesOld, HMR.statesNew.size-1);
 | 
			
		||||
                oldState && HMR.statesOld.set(oldState[0], {...oldState[1], state:argNew});
 | 
			
		||||
                console.log("check: ui-invoked")
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            HMR.statesNew.delete(id);
 | 
			
		||||
@ -111,6 +112,7 @@ const ProxyReducer =(inReducer:(inState:Storelike, inAction:string)=>Storelike,
 | 
			
		||||
        const capture = inReducer(inInterceptState, inInterceptAction);
 | 
			
		||||
        const stateUser = {state:capture, set:()=>{}, reload:HMR.reloads};
 | 
			
		||||
        HMR.statesNew.set(id, stateUser);
 | 
			
		||||
        console.log("interepted reducer", stateUser);
 | 
			
		||||
        return capture;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
@ -7,7 +7,7 @@
 | 
			
		||||
    {
 | 
			
		||||
        "react":"https://esm.sh/preact@10.15.1/compat",
 | 
			
		||||
        "react-original":"https://esm.sh/preact@10.15.1/compat",
 | 
			
		||||
        "@able/": "./"
 | 
			
		||||
        "@able/": "./_lib_/"
 | 
			
		||||
    },
 | 
			
		||||
    "tasks":
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
import "@able/boot-server.tsx";
 | 
			
		||||
import "@able/boot.tsx";
 | 
			
		||||
import React from "react";
 | 
			
		||||
 | 
			
		||||
const CTXString = React.createContext("lol");
 | 
			
		||||
 | 
			
		||||
@ -3,7 +3,7 @@
 | 
			
		||||
    "imports":
 | 
			
		||||
    {
 | 
			
		||||
        "react":"https://esm.sh/preact@10.15.1/compat",
 | 
			
		||||
        "@able/":"http://localhost:4507/"
 | 
			
		||||
        "@able/":"http://localhost:4507/_lib_/"
 | 
			
		||||
    },
 | 
			
		||||
    "tasks":
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
import {Configure, Transpile, Extension} from "./run-serve.tsx";
 | 
			
		||||
import {Configure, Transpile, Extension} from "./serve.tsx";
 | 
			
		||||
 | 
			
		||||
const SocketsLive:Set<WebSocket> = new Set();
 | 
			
		||||
const SocketsSend =(inData:string)=>{ for (const socket of SocketsLive){ socket.send(inData); } }
 | 
			
		||||
const SocketsSend =(inData:string)=>{ console.log(inData); for (const socket of SocketsLive){ socket.send(inData); } }
 | 
			
		||||
 | 
			
		||||
Configure({
 | 
			
		||||
    SWCOp:
 | 
			
		||||
@ -18,22 +18,22 @@ Configure({
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    Remap: (inImports, inConfig)=>
 | 
			
		||||
    Remap: (inImports)=>
 | 
			
		||||
    {
 | 
			
		||||
        inImports["react-original"] = inImports["react"];
 | 
			
		||||
        inImports["react"] = `${inConfig.Spoof}/hmr-react.tsx`;
 | 
			
		||||
        inImports["react"] = "/_lib_/react.tsx";
 | 
			
		||||
        return inImports;
 | 
			
		||||
    },
 | 
			
		||||
    async Serve(inReq, inURL, inExt, inMap, inConfig)
 | 
			
		||||
    async Serve(inReq, inURL, inExt, inMap, inProxy)
 | 
			
		||||
    {
 | 
			
		||||
        if(Transpile.Check(inExt) && !inURL.searchParams.get("reload") && !inURL.pathname.startsWith(inConfig.Spoof+"/"))
 | 
			
		||||
        if(Transpile.Check(inExt) && !inURL.searchParams.get("reload") && !inURL.pathname.startsWith("/_lib_/"))
 | 
			
		||||
        {
 | 
			
		||||
            const imp = await import(inConfig.Proxy+inURL.pathname);
 | 
			
		||||
            const imp = await import(inProxy+inURL.pathname);
 | 
			
		||||
            const members = [];
 | 
			
		||||
            for( const key in imp ) { members.push(key); }
 | 
			
		||||
 | 
			
		||||
            const code =`
 | 
			
		||||
import {FileListen} from "${inConfig.Spoof}/hmr-listen.tsx";
 | 
			
		||||
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("\n") }
 | 
			
		||||
FileListen("${inURL.pathname}", (updatedModule)=>
 | 
			
		||||
@ -97,4 +97,4 @@ const Watcher =async()=>
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
Watcher();
 | 
			
		||||
Watcher().then(()=>console.log("done watching"));
 | 
			
		||||
@ -28,35 +28,32 @@ const ImportMapReload =async()=>
 | 
			
		||||
            json.imports[key] = value.substring(1);
 | 
			
		||||
        }
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    const mapKey = (Configuration.Spoof.startsWith("/") ? Configuration.Spoof.substring(1) : Configuration.Spoof)+"/";
 | 
			
		||||
    if(!json.imports[mapKey])
 | 
			
		||||
    if(!json.imports["@able/"])
 | 
			
		||||
    {
 | 
			
		||||
        console.log(`"${mapKey}" specifier not defined in import map`);
 | 
			
		||||
        console.log(`"@able/" specifier not defined in import map`);
 | 
			
		||||
    }
 | 
			
		||||
    json.imports[mapKey] = Configuration.Spoof+"/";
 | 
			
		||||
    json.imports["@able/"] = "/_lib_/";
 | 
			
		||||
 | 
			
		||||
    if(!json.imports["react"])
 | 
			
		||||
    {
 | 
			
		||||
        console.log(`"react" specifier not defined in import map`);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    ImportMap.imports = Configuration.Remap(json.imports, Configuration);
 | 
			
		||||
    ImportMap.imports = Configuration.Remap(json.imports);
 | 
			
		||||
    console.log(ImportMap.imports);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
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>;
 | 
			
		||||
type Configuration = {Proxy:string, Spoof:string, Allow:string, Reset:string, SWCOp:SWCW.Options, Serve:CustomHTTPHandler, Shell:CustomHTTPHandler, Remap:CustomRemapper};
 | 
			
		||||
type ConfigurationArgs = {Proxy?:string, Spoof?:string, Allow?:string, Reset?:string, SWCOp?:SWCW.Options, Serve?:CustomHTTPHandler, Shell?:CustomHTTPHandler, Remap?:CustomRemapper};
 | 
			
		||||
type CustomHTTPHandler = (inReq:Request, inURL:URL, inExt:string|false, inMap:{imports:Record<string, string>}, inProxy:string)=>void|false|Response|Promise<Response|void|false>;
 | 
			
		||||
type CustomRemapper = (inImports:Record<string, string>)=>Record<string, string>;
 | 
			
		||||
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};
 | 
			
		||||
let Configuration:Configuration =
 | 
			
		||||
{
 | 
			
		||||
    Proxy: new URL(`file://${Deno.cwd().replaceAll("\\", "/")}`).toString(),
 | 
			
		||||
    Allow: "*",
 | 
			
		||||
    Reset: "/clear-cache",
 | 
			
		||||
    Spoof: "/@able",
 | 
			
		||||
    Serve(inReq, inURL, inExt, inMap, inConfig){},
 | 
			
		||||
    Remap: (inImports, inConfig)=>
 | 
			
		||||
    Serve(inReq, inURL, inExt, inMap, inProxy){},
 | 
			
		||||
    Remap: (inImports)=>
 | 
			
		||||
    {
 | 
			
		||||
        const reactURL = inImports["react"];
 | 
			
		||||
        const setting = Configuration.SWCOp?.jsc?.transform?.react;
 | 
			
		||||
@ -66,22 +63,23 @@ let Configuration:Configuration =
 | 
			
		||||
        }
 | 
			
		||||
        return inImports;
 | 
			
		||||
    },
 | 
			
		||||
    Shell(inReq, inURL, inExt, inMap, inConfig)
 | 
			
		||||
    Shell(inReq, inURL, inExt, inMap, inProxy)
 | 
			
		||||
    {
 | 
			
		||||
        const parts = Deno.mainModule.split(inConfig.Proxy);
 | 
			
		||||
        console.log("Start app:", Deno.mainModule, "start dir", inProxy);
 | 
			
		||||
        console.log("Split:", Deno.mainModule.split(inProxy) );
 | 
			
		||||
 | 
			
		||||
        const parts = Deno.mainModule.split(inProxy);
 | 
			
		||||
 | 
			
		||||
        return new Response(
 | 
			
		||||
            `<!doctype html>
 | 
			
		||||
            <html>
 | 
			
		||||
                <head>
 | 
			
		||||
                    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
 | 
			
		||||
                    <meta charset="utf-8"/>
 | 
			
		||||
                </head>
 | 
			
		||||
                <body>
 | 
			
		||||
                    <div id="app"></div>
 | 
			
		||||
                    <script type="importmap">${JSON.stringify(inMap)}</script>
 | 
			
		||||
                    <script type="module">
 | 
			
		||||
                        import Mount from "${inConfig.Spoof}/boot-browser.tsx";
 | 
			
		||||
                        import Mount from "/_lib_/mount.tsx";
 | 
			
		||||
                        Mount("#app", "${parts[1]??"/app.tsx"}");
 | 
			
		||||
                    </script>
 | 
			
		||||
                </body>
 | 
			
		||||
@ -181,7 +179,7 @@ HTTP.serve(async(req: Request)=>
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // allow for custom handler
 | 
			
		||||
    const custom = await Configuration.Serve(req, url, ext, ImportMap, Configuration);
 | 
			
		||||
    const custom = await Configuration.Serve(req, url, ext, ImportMap, Configuration.Proxy);
 | 
			
		||||
    if(custom)
 | 
			
		||||
    {
 | 
			
		||||
        return custom;
 | 
			
		||||
@ -192,17 +190,15 @@ HTTP.serve(async(req: Request)=>
 | 
			
		||||
    {
 | 
			
		||||
        let code;
 | 
			
		||||
        let path;
 | 
			
		||||
        if(url.pathname.startsWith(Configuration.Spoof+"/"))
 | 
			
		||||
        if(url.pathname.startsWith("/_lib_/"))
 | 
			
		||||
        {
 | 
			
		||||
            const clipRoot = import.meta.url.substring(0, import.meta.url.lastIndexOf("/"));
 | 
			
		||||
            const clipPath = url.pathname.substring(url.pathname.indexOf("/", 1));
 | 
			
		||||
            if(clipPath.startsWith("/boot-"))
 | 
			
		||||
            if(url.pathname.endsWith("boot.tsx"))
 | 
			
		||||
            {
 | 
			
		||||
                path = clipRoot+"/boot-browser.tsx";
 | 
			
		||||
                path = import.meta.url+"/../_lib_/mount.tsx";
 | 
			
		||||
            }
 | 
			
		||||
            else
 | 
			
		||||
            {
 | 
			
		||||
                path = clipRoot + clipPath;
 | 
			
		||||
                path = import.meta.url+"/.."+url.pathname;
 | 
			
		||||
            }
 | 
			
		||||
            code = await Transpile.Fetch(path, url.pathname, true);
 | 
			
		||||
        }
 | 
			
		||||
@ -221,7 +217,7 @@ HTTP.serve(async(req: Request)=>
 | 
			
		||||
    // custom page html
 | 
			
		||||
    if(!ext)
 | 
			
		||||
    {
 | 
			
		||||
        const shell = await Configuration.Shell(req, url, ext, ImportMap, Configuration);
 | 
			
		||||
        const shell = await Configuration.Shell(req, url, ext, ImportMap, Configuration.Proxy);
 | 
			
		||||
        if(shell)
 | 
			
		||||
        {
 | 
			
		||||
            return shell;
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user