diff --git a/cli.tsx b/cli.tsx index 931c240..d81d589 100644 --- a/cli.tsx +++ b/cli.tsx @@ -127,6 +127,8 @@ if(arg._.length) ...scanProd, ...Deno.args, RootHost+"run.tsx"]); + + break; } case "upgrade" : { diff --git a/deno.jsonc b/deno.jsonc index 8c5bac3..1837ba3 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -15,7 +15,7 @@ "debug": "deno run -A --no-lock http://localhost:4507/cli.tsx debug", "serve": "deno run -A --no-lock http://localhost:4507/cli.tsx serve", "cloud": "deno run -A --no-lock http://localhost:4507/cli.tsx cloud", - "install": "deno install -A -r -f http://localhost:4507/cli.tsx" + "install": "deno install -A -r -f -n able http://localhost:4507/cli.tsx" }, "compilerOptions": { "jsx": "react-jsx", diff --git a/hmr-listen.tsx b/hmr-listen.tsx index 9a444a8..87b326d 100644 --- a/hmr-listen.tsx +++ b/hmr-listen.tsx @@ -1,6 +1,5 @@ -type Processor = (filename:string)=>void; -const Processors:Set = new Set(); -export const Process =(p:Processor)=>Processors.add(p) +import { HMR } from "./hmr-react.tsx"; +import { recordEntrySwap, recordIndexReset } from "./hmr-signal.tsx"; const FileListeners = new Map() as Mapvoid>>; export const FileListen =(inPath:string, inHandler:()=>void)=> @@ -15,9 +14,15 @@ Socket.addEventListener('message', async(event:{data:string})=> { // When a file changes, dynamically re-import it to get the updated members // send the updated members to any listeners for that file + + recordIndexReset(); + const reImport = await import(document.location.origin+event.data+"?reload="+Math.random()); FileListeners.get(event.data)?.forEach(reExport=>reExport(reImport)); - Processors.forEach(p=>p(event.data)) + + recordEntrySwap(); + HMR.update(); + }); Socket.addEventListener("error", ()=>{clearInterval(SocketTimer); console.log("HMR socket lost")}) const SocketTimer = setInterval(()=>{Socket.send("ping")}, 5000); \ No newline at end of file diff --git a/hmr-react.tsx b/hmr-react.tsx index 444bc11..13dae0d 100644 --- a/hmr-react.tsx +++ b/hmr-react.tsx @@ -27,7 +27,7 @@ When there is an HMR update: - statesNew is cleared. */ -const HMR = +export const HMR = { reloads:1, RegisteredComponents: new Map() as Mapvoid>, @@ -47,9 +47,6 @@ const HMR = this.statesNew = new Map(); } }; -Process(()=>HMR.update()) - - export type StateType = boolean|number|string|Record diff --git a/hmr-signal.tsx b/hmr-signal.tsx index 5febad0..7b9a9ca 100644 --- a/hmr-signal.tsx +++ b/hmr-signal.tsx @@ -1,14 +1,35 @@ import * as SignalsParts from "signals-original"; -import { Process } from "./hmr-listen.tsx"; +type Entry = [signal:SignalsParts.Signal, initArg:unknown]; -const s1 = SignalsParts.signal(true); - +let recordEntry:Entry[] = []; +let recordEntryNew:Entry[] = []; +let recordIndex = 0; +export const recordIndexReset =()=> recordIndex = 0; +export const recordEntrySwap =()=> +{ + recordEntry = recordEntryNew; + recordEntryNew = [] as Entry[]; +}; const proxySignal =(arg)=> { - console.log("---hmr---", arg); - return SignalsParts.signal(arg); -} + const lookupOld = recordEntry[recordIndex]; + if(lookupOld && lookupOld[1] === arg) + { + recordEntryNew[recordIndex] = lookupOld; + recordIndex++; + return lookupOld[0]; + } + else + { + const sig = SignalsParts.signal(arg); + recordEntryNew[recordIndex] = [sig, arg]; + recordEntry[recordIndex] = [sig, arg]; + recordIndex++; + return sig; + } +}; + export * from "signals-original"; export { proxySignal as signal };