mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Bridge - Backend functions as global objects
- Making backend functions available under a global object
This commit is contained in:
parent
30a1e49130
commit
87a3a4f4e6
File diff suppressed because it is too large
Load Diff
@ -25,7 +25,7 @@ class WebuiBridge {
|
|||||||
#token: number;
|
#token: number;
|
||||||
#port: number;
|
#port: number;
|
||||||
#winNum: number;
|
#winNum: number;
|
||||||
#bindList: unknown[] = [];
|
#bindList: string[] = [];
|
||||||
#log: boolean;
|
#log: boolean;
|
||||||
#winX: number;
|
#winX: number;
|
||||||
#winY: number;
|
#winY: number;
|
||||||
@ -79,7 +79,7 @@ class WebuiBridge {
|
|||||||
token: number;
|
token: number;
|
||||||
port: number;
|
port: number;
|
||||||
winNum: number;
|
winNum: number;
|
||||||
bindList: unknown[];
|
bindList: string[];
|
||||||
log?: boolean;
|
log?: boolean;
|
||||||
winX: number;
|
winX: number;
|
||||||
winY: number;
|
winY: number;
|
||||||
@ -235,6 +235,7 @@ class WebuiBridge {
|
|||||||
buffer[index + 1] = (value >>> 8) & 0xff; // Most significant byte
|
buffer[index + 1] = (value >>> 8) & 0xff; // Most significant byte
|
||||||
}
|
}
|
||||||
#start() {
|
#start() {
|
||||||
|
this.#generateCallObjects();
|
||||||
this.#keepAlive();
|
this.#keepAlive();
|
||||||
this.#callPromiseID[0] = 0;
|
this.#callPromiseID[0] = 0;
|
||||||
if (this.#bindList.includes(this.#winNum + '/')) {
|
if (this.#bindList.includes(this.#winNum + '/')) {
|
||||||
@ -561,6 +562,15 @@ class WebuiBridge {
|
|||||||
#toUint16(value: number): number {
|
#toUint16(value: number): number {
|
||||||
return value & 0xffff;
|
return value & 0xffff;
|
||||||
}
|
}
|
||||||
|
#generateCallObjects() {
|
||||||
|
for (const bind of this.#bindList) {
|
||||||
|
if (bind.trim()) {
|
||||||
|
const fn = bind.replace(`${this.#winNum}/`, '');
|
||||||
|
if (fn.trim())
|
||||||
|
this[fn] = (...args: DataTypes[]) => this.call(fn, ...args);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
#callPromise(fn: string, ...args: DataTypes[]) {
|
#callPromise(fn: string, ...args: DataTypes[]) {
|
||||||
--this.#callPromiseID[0];
|
--this.#callPromiseID[0];
|
||||||
const callId = this.#toUint16(this.#callPromiseID[0]);
|
const callId = this.#toUint16(this.#callPromiseID[0]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user