able-baker/_lib_/react.tsx

100 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-06-06 22:48:45 -04:00
import * as ReactParts from "react-original";
2023-06-15 23:08:24 -04:00
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};
2023-06-16 14:59:27 -04:00
type FuncArgs = [element:keyof ReactParts.JSX.IntrinsicElements, props:Record<string, string>, children:ReactParts.JSX.Element[]];
2023-06-15 23:08:24 -04:00
2023-06-16 14:59:27 -04:00
const H = ReactParts.createElement;
2023-06-15 23:08:24 -04:00
const MapAt =(inMap:Map<string, StateCapture>, inIndex:number)=>
{
let index = 0;
for(const kvp of inMap)
{
if(index == inIndex)
{
return kvp;
}
index++;
}
return false;
};
2023-06-06 22:48:45 -04:00
2023-06-16 14:59:27 -04:00
const ProxyElement = (props:{__args:FuncArgs})=>
2023-06-06 22:48:45 -04:00
{
const id = ReactParts.useId();
const [stateGet, stateSet] = ReactParts.useState(0);
ReactParts.useEffect(()=>HMR.onChange(id, ()=>stateSet(stateGet+1)));
const child = H(...props.__args);
if(HMR.wireframe)
{
return H("div", {style:{padding:"10px", border:"2px solid red"}},
H("p", null, stateGet),
child
);
}
else
{
return child;
}
};
2023-06-16 14:59:27 -04:00
const ProxyCreate =(...args:FuncArgs)=>
2023-06-06 22:48:45 -04:00
{
return typeof args[0] != "string" ? H(ProxyElement, {__args:args, ...args[1]}) : H(...args);
};
2023-06-15 23:08:24 -04:00
const ProxyState =(arg:StateType)=>
2023-06-06 22:48:45 -04:00
{
const id = ReactParts.useId();
const trueArg = arg;
// does statesOld have an entry for this state? use that instead of the passed arg
2023-06-16 14:59:27 -04:00
const check = MapAt(HMR.statesOld, HMR.statesNew.size);
2023-06-06 22:48:45 -04:00
if(check)
{
arg = check[1].state;
console.info(`BOOTING with ${arg}`);
}
const lastKnowReloads = HMR.reloads;
const [stateGet, stateSet] = ReactParts.useState(arg);
ReactParts.useEffect(()=>{
return ()=>{
if(HMR.reloads == lastKnowReloads)
{
// this is a switch/ui change, not a HMR reload change
2023-06-16 14:59:27 -04:00
const oldState = MapAt(HMR.statesOld, HMR.statesNew.size-1);
oldState && HMR.statesOld.set(oldState[0], {...oldState[1], state:trueArg});
console.log("check: ui-invoked")
}
else
{
console.log("check: hmr-invoked")
2023-06-06 22:48:45 -04:00
}
2023-06-16 14:59:27 -04:00
HMR.statesNew.delete(id);
2023-06-06 22:48:45 -04:00
}
}, []);
2023-06-16 14:59:27 -04:00
if(!HMR.statesNew.has(id))
2023-06-06 22:48:45 -04:00
{
2023-06-16 14:59:27 -04:00
HMR.statesNew.set(id, {state:arg, set:stateSet, reload:HMR.reloads});
2023-06-06 22:48:45 -04:00
}
2023-06-16 14:59:27 -04:00
function proxySetter (arg:StateType)
2023-06-06 22:48:45 -04:00
{
//console.log("state spy update", id, arg);
2023-06-16 14:59:27 -04:00
HMR.statesNew.set(id, {state:arg, set:stateSet, reload:HMR.reloads});
2023-06-06 22:48:45 -04:00
return stateSet(arg);
}
return [stateGet, proxySetter];
};
export * from "react-original";
2023-06-16 14:59:27 -04:00
export {ProxyCreate as createElement, ProxyState as useState };
2023-06-06 22:48:45 -04:00
export const isProxy = true;
2023-06-16 14:59:27 -04:00
export default {...ReactParts, createElement:ProxyCreate, useState:ProxyState, isProxy:true};