mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Renaming `shell-chrome` to `shell-browser` contains the build that supports both browsers. PR Close #44952
65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {ChromeMessageBus} from './chrome-message-bus';
|
|
import {SamePageMessageBus} from './same-page-message-bus';
|
|
|
|
export const main = () => {
|
|
let backgroundDisconnected = false;
|
|
let backendInitialized = false;
|
|
|
|
// console.log('Content script executing', (window as any));
|
|
|
|
const port = chrome.runtime.connect({
|
|
name: 'content-script',
|
|
});
|
|
|
|
const handleDisconnect = (): void => {
|
|
// console.log('Background disconnected', new Date());
|
|
localMessageBus.emit('shutdown');
|
|
localMessageBus.destroy();
|
|
chromeMessageBus.destroy();
|
|
backgroundDisconnected = true;
|
|
};
|
|
|
|
port.onDisconnect.addListener(handleDisconnect);
|
|
|
|
const localMessageBus =
|
|
new SamePageMessageBus('angular-devtools-content-script', 'angular-devtools-backend');
|
|
const chromeMessageBus = new ChromeMessageBus(port);
|
|
|
|
const handshakeWithBackend = (): void => {
|
|
localMessageBus.emit('handshake');
|
|
};
|
|
|
|
chromeMessageBus.onAny((topic, args) => {
|
|
localMessageBus.emit(topic, args);
|
|
});
|
|
|
|
localMessageBus.onAny((topic, args) => {
|
|
backendInitialized = true;
|
|
chromeMessageBus.emit(topic, args);
|
|
});
|
|
|
|
if (!backendInitialized) {
|
|
// tslint:disable-next-line:no-console
|
|
console.log('Attempting initialization', new Date());
|
|
|
|
const retry = () => {
|
|
if (backendInitialized || backgroundDisconnected) {
|
|
return;
|
|
}
|
|
handshakeWithBackend();
|
|
setTimeout(retry, 500);
|
|
};
|
|
retry();
|
|
}
|
|
};
|
|
|
|
// expose to use as callback for chrome.tabs.executeScript in background.ts
|
|
globalThis.main = main;
|