cc-inspector-chrome/source/src/devtools/connectBackground.ts
2021-04-28 13:59:16 +08:00

36 lines
881 B
TypeScript

import {PluginEvent, Page} from "@/core/types";
class ConnectBackground {
connect: chrome.runtime.Port | null = null;
constructor() {
if (chrome && chrome.runtime) {
this.connect = chrome.runtime.connect({name: Page.Devtools});
this.connect.onDisconnect.addListener(() => {
console.log(`%c[Connect-Dis]`, 'color:red;')
this.connect = null;
})
}
}
onBackgroundMessage(cb: Function) {
if (this.connect) {
this.connect.onMessage.addListener((event, sender) => {
console.log(`[Message] ${JSON.stringify(event)}`);
cb && cb(event, sender)
});
}
}
postMessageToBackground(data: PluginEvent) {
if (this.connect) {
this.connect.postMessage(data)
} else {
console.warn('没有和background建立链接')
}
}
}
export const connectBackground = new ConnectBackground();