feat: complete react fiber control loop

This commit is contained in:
SethBurkart123
2025-02-23 20:49:09 +11:00
parent f41da95f7e
commit a51049154b
4 changed files with 136 additions and 115 deletions
+36 -28
View File
@@ -1,8 +1,9 @@
import browser from 'webextension-polyfill';
class ReactFiber {
private selector: string;
private selector: string;
private debug: boolean;
private messageIdCounter: number = 0; // Counter for unique message IDs
constructor(selector: string, options: { debug?: boolean } = {}) {
this.selector = selector;
@@ -14,54 +15,61 @@ private selector: string;
}
private async sendMessage(action: string, payload: any = {}): Promise<any> {
const message = {
type: "reactFiberRequest",
selector: this.selector,
action,
payload,
debug: this.debug
};
return new Promise((resolve, _) => {
const messageId = this.messageIdCounter++;
const message = {
type: "reactFiberRequest",
selector: this.selector,
action,
payload,
debug: this.debug,
messageId, // Include the unique message ID
};
try {
const response = await browser.runtime.sendMessage(message);
if (this.debug) {
console.log("Content Received Response:", response);
}
return response;
} catch (error) {
console.error("Error sending message:", error);
return null; // or throw error, depending on desired behavior
}
}
const listener = (response: any) => {
if (response.data?.type === 'reactFiberResponse' && response.data?.messageId === messageId) {
if (this.debug) {
console.log("Content Received Response:", response.data.response);
}
resolve(response.data.response);
window.removeEventListener("message", listener)
}
};
window.addEventListener('message', listener);
window.postMessage(message, "*");
});
}
async getState(key?: string): Promise<any> {
async getState(key?: string | string[]): Promise<any> { // Type change: allow string or string[]
return this.sendMessage("getState", { key });
}
async setState(updateFn: (prevState: any) => any): Promise<ReactFiber> {
// Serialize the update function to a string. This is the tricky part.
// We can only send strings/JSON-serializable data through messages.
const updateFnString = updateFn.toString();
await this.sendMessage("setState", { updateFn: updateFnString });
async setState(update: any | ((prevState: any) => any)): Promise<ReactFiber> {
// Now async again.
const updateFnString = typeof update === 'function' ? update.toString() : null;
const updateObject = typeof update !== 'function' ? update : null;
await this.sendMessage("setState", { updateFn: updateFnString, updateObject });
return this;
}
async getProp(propName: string): Promise<any> {
return this.sendMessage("getProp", { propName });
}
async setProp(propName: string, value: any): Promise<ReactFiber> {
// Now async again
await this.sendMessage("setProp", { propName, value });
return this;
}
async forceUpdate(): Promise<ReactFiber> {
// Now async again
await this.sendMessage("forceUpdate");
return this;
}
}
export default ReactFiber
export default ReactFiber;