mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-22 01:48:40 +00:00
38 lines
1.6 KiB
TypeScript
38 lines
1.6 KiB
TypeScript
import { debugLog, Msg, Page, PluginEvent } from "../../core/types";
|
|
import { GA_EventName } from "../../ga/type";
|
|
import { DocumentEvent, GoogleAnalyticsData } from "../const";
|
|
import { Terminal } from "../terminal";
|
|
|
|
export class InjectEvent {
|
|
protected terminal = new Terminal("Inject ");
|
|
constructor() {
|
|
document.addEventListener(DocumentEvent.Content2Inject, (event: CustomEvent) => {
|
|
const pluginEvent: PluginEvent = PluginEvent.create(event.detail);
|
|
debugLog && console.log(...this.terminal.chunkMessage(pluginEvent.toChunk()));
|
|
this.onMessage(pluginEvent);
|
|
});
|
|
}
|
|
onMessage(data: PluginEvent) {}
|
|
sendMsgToContent(msg: Msg, data: any) {
|
|
const detail = new PluginEvent(Page.Inject, Page.Content, msg, data);
|
|
debugLog && console.log(...this.terminal.chunkSend(detail.toChunk()));
|
|
const event = new CustomEvent(DocumentEvent.Inject2Content, { detail });
|
|
document.dispatchEvent(event);
|
|
}
|
|
sendEngineVersion(version: string) {
|
|
const detail = version;
|
|
const event = new CustomEvent(DocumentEvent.EngineVersion, { detail });
|
|
document.dispatchEvent(event);
|
|
}
|
|
sendAppVersion(version: string) {
|
|
const detail = { event: GA_EventName.AppVersion, params: version } as GoogleAnalyticsData;
|
|
const event = new CustomEvent(DocumentEvent.GoogleAnalytics, { detail });
|
|
document.dispatchEvent(event);
|
|
}
|
|
sendUrl(url: string) {
|
|
const detail = { event: GA_EventName.GameUrl, params: url } as GoogleAnalyticsData;
|
|
const event = new CustomEvent(DocumentEvent.GoogleAnalytics, { detail });
|
|
document.dispatchEvent(event);
|
|
}
|
|
}
|